aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii <[email protected]>2005-12-03 12:07:03 +0000
committerEli Zaretskii <[email protected]>2005-12-03 12:07:03 +0000
commit7b057a3d5755259dd96c02d5f3dfe4e98e00c0bc (patch)
treec1fb28370ef65f6025c422623abef96e7426a5a3 /lisp
parenta8e7142cdde1f3b596681c6e28bd9fcd6726dea3 (diff)
(print-help-return-message): If pop-up-frames is non-nil, don't display
message about scrolling the help window.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/help.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 067e02d5ce..9a779f14d0 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -159,7 +159,8 @@ specifies what to do when the user exits the help buffer."
(if first-message " ")
;; If the help buffer will go in a separate frame,
;; it's no use mentioning a command to scroll, so don't.
- (if (special-display-p (buffer-name standard-output))
+ (if (or pop-up-windows
+ (special-display-p (buffer-name standard-output)))
nil
(if (same-window-p (buffer-name standard-output))
;; Say how to scroll this window.