diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/help-mode.el | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0570703b11d..72192bc79e5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-11-17 Chong Yidong <cyd@gnu.org> | 1 | 2012-11-17 Chong Yidong <cyd@gnu.org> |
| 2 | 2 | ||
| 3 | * help-mode.el (help-xref-interned): End on point-min (Bug#12737). | ||
| 4 | |||
| 3 | * filecache.el (file-cache-add-file): Handle relative file name in | 5 | * filecache.el (file-cache-add-file): Handle relative file name in |
| 4 | the argument (Bug#12694). | 6 | the argument (Bug#12694). |
| 5 | 7 | ||
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 |