Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
400c12fd
Commit
400c12fd
authored
Oct 28, 1999
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(help-follow): Make arg optional again and really default to point.
parent
42f6a24a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/help.el
lisp/help.el
+3
-1
No files found.
lisp/help.el
View file @
400c12fd
...
...
@@ -1165,11 +1165,13 @@ help buffer."
(
interactive
)
(
help-follow
(
1-
(
point-max
))))
(
defun
help-follow
(
pos
)
(
defun
help-follow
(
&optional
pos
)
"Follow cross-reference at POS, defaulting to point.
For the cross-reference format, see `help-make-xrefs'."
(
interactive
"d"
)
(
unless
pos
(
setq
pos
(
point
)))
(
let*
((
help-data
(
or
(
and
(
not
(
=
pos
(
point-max
)))
(
get-text-property
pos
'help-xref
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment