diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-09-25 13:54:37 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-09-25 14:27:44 +0200 |
commit | 971566e88a9fdb414b3c821cb55a7fc0e903eeba (patch) | |
tree | 62ceb14dd97d6c05d3a8cdbf6955a3615ea4831d /lisp/emacs-lisp/shortdoc.el | |
parent | e5896907813a9540d0a6b3e60f682afd273fc8e9 (diff) | |
download | emacs-971566e88a9fdb414b3c821cb55a7fc0e903eeba.tar.gz emacs-971566e88a9fdb414b3c821cb55a7fc0e903eeba.tar.bz2 emacs-971566e88a9fdb414b3c821cb55a7fc0e903eeba.zip |
Fix shortdoc movement commands
* lisp/emacs-lisp/shortdoc.el (shortdoc--goto-section): Don't skip
over current function or section when searching.
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 33106808d28..b5c99cf2c9a 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -1529,7 +1529,7 @@ Example: (funcall (if reverse 'text-property-search-backward 'text-property-search-forward) - sym nil t t) + sym nil t) (setq arg (1- arg)))) (defun shortdoc-next (&optional arg) |