diff options
author | Dave Love <fx@gnu.org> | 1998-09-21 17:39:54 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1998-09-21 17:39:54 +0000 |
commit | 91fd6b858cb6b2e75d992ce0b6adfa1afc26bb01 (patch) | |
tree | 61ec02cda191f60086cf95f9600dae0f085165d7 /lisp/help.el | |
parent | 9b956af2644a24265efed8af3fc51852d418389b (diff) | |
download | emacs-91fd6b858cb6b2e75d992ce0b6adfa1afc26bb01.tar.gz emacs-91fd6b858cb6b2e75d992ce0b6adfa1afc26bb01.tar.bz2 emacs-91fd6b858cb6b2e75d992ce0b6adfa1afc26bb01.zip |
(help-make-xrefs): Fix typo affecting Info references.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 7c59a96ef43..c2b1a4f061d 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -949,7 +949,7 @@ that." ;; Info references (save-excursion (while (re-search-forward help-xref-info-regexp nil t) - (help-xref-button 1 #'Info-goto-node (list (match-data 1))))) + (help-xref-button 1 #'Info-goto-node (match-string 1)))) ;; An obvious case of a key substitution: (save-excursion (while (re-search-forward |