aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2009-01-14 23:10:54 +0000
committerJuri Linkov2009-01-14 23:10:54 +0000
commit3ffb948c26eb11cfb4fa90e3d73dfee37c37a532 (patch)
tree5569875ef8135901c3c9ffdf81bd1af6c96f9c34
parent28e271f0369f3848fc64b286a48b1899dbcdfcc8 (diff)
downloademacs-3ffb948c26eb11cfb4fa90e3d73dfee37c37a532.tar.gz
emacs-3ffb948c26eb11cfb4fa90e3d73dfee37c37a532.zip
(view-help-file): Use goto-address-mode instead of goto-address.
-rw-r--r--lisp/help.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 54b62b01c5a..b5c778b1df4 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -294,7 +294,7 @@ If that doesn't give a function, return nil."
294 294
295(defun view-help-file (file &optional dir) 295(defun view-help-file (file &optional dir)
296 (view-file (expand-file-name file (or dir data-directory))) 296 (view-file (expand-file-name file (or dir data-directory)))
297 (goto-address) 297 (goto-address-mode 1)
298 (goto-char (point-min))) 298 (goto-char (point-min)))
299 299
300(defun describe-distribution () 300(defun describe-distribution ()