aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/help.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 4219dd86986..25bc9c4b7c6 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -412,7 +412,9 @@ With argument, display info only for the selected version."
412The number of messages retained in that buffer 412The number of messages retained in that buffer
413is specified by the variable `message-log-max'." 413is specified by the variable `message-log-max'."
414 (interactive) 414 (interactive)
415 (switch-to-buffer (get-buffer-create "*Messages*"))) 415 (with-current-buffer (get-buffer-create "*Messages*")
416 (goto-char (point-max))
417 (display-buffer (current-buffer))))
416 418
417(defun view-order-manuals () 419(defun view-order-manuals ()
418 "Display the Emacs ORDERS file." 420 "Display the Emacs ORDERS file."