Mercurial > emacs
diff lisp/help.el @ 67281:409eae14f7d9
(print-help-return-message): If pop-up-frames is non-nil, don't display
message about scrolling the help window.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Sat, 03 Dec 2005 12:07:03 +0000 |
| parents | 8cf27ba1d450 |
| children | c91001adb561 |
line wrap: on
line diff
--- a/lisp/help.el Sat Dec 03 11:52:23 2005 +0000 +++ b/lisp/help.el Sat Dec 03 12:07:03 2005 +0000 @@ -159,7 +159,8 @@ (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.
