diff options
| author | Chong Yidong | 2012-11-17 14:48:10 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-11-17 14:48:10 +0800 |
| commit | 8e7696a18bbfbd9cf2b158b7a633f274fbb2b706 (patch) | |
| tree | a5543ecc5fb326d766f3a16ae3bfa9fa2996cc55 /lisp/help-mode.el | |
| parent | ec15e0ff0be9c3ab23d6df93953fc351fb4eb40e (diff) | |
| download | emacs-8e7696a18bbfbd9cf2b158b7a633f274fbb2b706.tar.gz emacs-8e7696a18bbfbd9cf2b158b7a633f274fbb2b706.zip | |
* help-mode.el (help-xref-interned): End on point-min.
Fixes: debbugs:12737
Diffstat (limited to 'lisp/help-mode.el')
| -rw-r--r-- | lisp/help-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index c1ce5a521be..48c5849d301 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el | |||
| @@ -677,7 +677,8 @@ help buffer." | |||
| 677 | " is also a " "face." "\n\n" facedoc)) | 677 | " is also a " "face." "\n\n" facedoc)) |
| 678 | ;; Don't record the `describe-function' item in the stack. | 678 | ;; Don't record the `describe-function' item in the stack. |
| 679 | (setq help-xref-stack-item nil) | 679 | (setq help-xref-stack-item nil) |
| 680 | (help-setup-xref (list #'help-xref-interned symbol) nil))))))) | 680 | (help-setup-xref (list #'help-xref-interned symbol) nil)))) |
| 681 | (goto-char (point-min))))) | ||
| 681 | 682 | ||
| 682 | 683 | ||
| 683 | ;; Navigation/hyperlinking with xrefs | 684 | ;; Navigation/hyperlinking with xrefs |