diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-02-26 14:13:35 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-02-26 14:13:35 +0000 |
commit | 38790755118ec9206667ff633c6402abb41863a4 (patch) | |
tree | 5273c65ea78b241e797692bf754cedb3136bd3f1 /lisp/help.el | |
parent | e3ba6456dfaca4f9aca013ab988c7d7d3f361f75 (diff) | |
download | emacs-38790755118ec9206667ff633c6402abb41863a4.tar.gz |
(view-order-manuals): Use goto-address.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index a0d69bbd80b..320563f14c2 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -453,7 +453,8 @@ With numeric argument, display information on correspondingly older changes." (defun view-order-manuals () "Display the Emacs ORDERS file." (interactive) - (find-file-read-only (expand-file-name "ORDERS" data-directory))) + (find-file-read-only (expand-file-name "ORDERS" data-directory)) + (goto-address)) (defun view-emacs-FAQ () "Display the Emacs Frequently Asked Questions (FAQ) file." |