diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-01 04:16:51 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-01 04:16:51 +0100 |
commit | 567fa8d7c04ec22a5ff54229c16f370b95a89ff0 (patch) | |
tree | 902cf72d73739509d2dff5b99b7448de416c815f /lisp | |
parent | eeb09ff41ba2f6b9a199ddd9de58191583eecd98 (diff) | |
download | emacs-567fa8d7c04ec22a5ff54229c16f370b95a89ff0.tar.gz emacs-567fa8d7c04ec22a5ff54229c16f370b95a89ff0.tar.bz2 emacs-567fa8d7c04ec22a5ff54229c16f370b95a89ff0.zip |
Further xref fix-ups after keymap help changes
* lisp/help-mode.el (help-make-xrefs): Get continuation lines right.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/help-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 67453453d3b..ebb14cb474e 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -659,6 +659,7 @@ that." (when (and (fboundp symbol) (kbd-valid-p key)) (help-xref-button 3 'help-function symbol)) + (goto-char (match-end 0)) (forward-line) ;; Skip empty line. (while (and (not (eobp)) |