* lisp/help.el (help-print-return-message):
(help-window-display-message): Recommend 'scroll-up-command' instead
of 'scroll-up' when 'help-window-select' is non-nil. (Bug#43122)
(if (same-window-p (buffer-name standard-output))
;; Say how to scroll this window.
(substitute-command-keys
- "\\[scroll-up] to scroll the help.")
+ "\\[scroll-up-command] to scroll the help.")
;; Say how to scroll some other window.
(substitute-command-keys
"\\[scroll-other-window] to scroll the help."))))))))
".")
((eq scroll 'other)
", \\[scroll-other-window] to scroll help.")
- (scroll ", \\[scroll-up] to scroll help."))))
+ (scroll ", \\[scroll-up-command] to scroll help."))))
(message "%s"
(substitute-command-keys (concat quit-part scroll-part)))))