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
6e7f5182
Commit
6e7f5182
authored
Apr 13, 1995
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print-help-return-message): Check same-window-buffer-names
and same-window-regexps.
parent
73dc5198
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
lisp/help.el
lisp/help.el
+9
-2
No files found.
lisp/help.el
View file @
6e7f5182
...
...
@@ -190,8 +190,15 @@ If FUNCTION is nil, applies `message' to it, thus printing it."
(
substitute-command-keys
first-message
)
""
)
(
if
first-message
" "
""
)
(
substitute-command-keys
"\\[scroll-other-window] to scroll the help."
))))))
(
if
(
or
(
member
(
buffer-name
standard-output
)
same-window-buffer-names
)
(
memq
t
(
mapcar
'
(
lambda
(
elt
)
(
string-match
elt
(
buffer-name
standard-output
)))
same-window-regexps
)))
(
substitute-command-keys
"\\[scroll-up] to scroll the help."
)
(
substitute-command-keys
"\\[scroll-other-window] to scroll the help."
)))))))
(
defun
describe-key
(
key
)
"Display documentation of the function invoked by KEY. KEY is a string."
...
...
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