aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-11-14 15:44:43 +0000
committerChong Yidong2009-11-14 15:44:43 +0000
commitaec5395b0c5a295dc42d6eb83bfe4e89234bd738 (patch)
treea4459537c99b5d7f7656dbe155c9869a94c9968c
parenta53cfbe58781e8f967d298d937e34efa3db93c1d (diff)
downloademacs-aec5395b0c5a295dc42d6eb83bfe4e89234bd738.tar.gz
emacs-aec5395b0c5a295dc42d6eb83bfe4e89234bd738.zip
* help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/help-mode.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fcaa469bf87..f8e2bb0a1dd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-11-14 Chong Yidong <cyd@stupidchicken.com>
2
3 * help-mode.el (help-make-xrefs): Revert 2009-11-13 change.
4
12009-11-14 Glenn Morris <rgm@gnu.org> 52009-11-14 Glenn Morris <rgm@gnu.org>
2 6
3 * emulation/viper.el (viper-set-hooks): Remove duplicate advice 7 * emulation/viper.el (viper-set-hooks): Remove duplicate advice
diff --git a/lisp/help-mode.el b/lisp/help-mode.el
index 641738770a2..7c032b81cf2 100644
--- a/lisp/help-mode.el
+++ b/lisp/help-mode.el
@@ -413,7 +413,8 @@ A special reference `back' is made to return back through a stack of
413help buffers. Variable `help-back-label' specifies the text for 413help buffers. Variable `help-back-label' specifies the text for
414that." 414that."
415 (interactive "b") 415 (interactive "b")
416 (with-current-buffer (or buffer (current-buffer)) 416 (save-excursion
417 (set-buffer (or buffer (current-buffer)))
417 (goto-char (point-min)) 418 (goto-char (point-min))
418 ;; Skip the header-type info, though it might be useful to parse 419 ;; Skip the header-type info, though it might be useful to parse
419 ;; it at some stage (e.g. "function in `library'"). 420 ;; it at some stage (e.g. "function in `library'").