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
7dcf1127
Commit
7dcf1127
authored
May 07, 1998
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(describe-function-1): Use find-function-noselect instead of find-function.
parent
9e832d81
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lisp/help.el
lisp/help.el
+6
-1
No files found.
lisp/help.el
View file @
7dcf1127
...
...
@@ -628,7 +628,12 @@ C-w Display information on absence of warranty for GNU Emacs."
(
with-current-buffer
"*Help*"
(
save-excursion
(
re-search-backward
"`\\([^`']+\\)'"
nil
t
)
(
help-xref-button
1
#'
find-function
function
)))))
(
help-xref-button
1
#'
(
lambda
(
arg
)
(
let
((
location
(
find-function-noselect
arg
)))
(
display-buffer
(
nth
0
location
))
(
goto-char
(
nth
1
location
))))
function
)))))
(
if
need-close
(
princ
")"
))
(
princ
"."
)
(
terpri
)
...
...
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