diff options
author | Alan Mackenzie <acm@muc.de> | 2022-01-14 19:28:07 +0000 |
---|---|---|
committer | Alan Mackenzie <acm@muc.de> | 2022-01-14 19:28:07 +0000 |
commit | d87a34597c9f0be967f75ff8cfd0ace4392da63f (patch) | |
tree | c9474eb0156af143ce61a0c5bcec659546b56300 /lisp/emacs-lisp/shortdoc.el | |
parent | 57b698f15913385aec7bc9745016b961c0aa5c55 (diff) | |
parent | d29291d665e808307126bf52c3e748fef78f0f9c (diff) | |
download | emacs-d87a34597c9f0be967f75ff8cfd0ace4392da63f.tar.gz emacs-d87a34597c9f0be967f75ff8cfd0ace4392da63f.tar.bz2 emacs-d87a34597c9f0be967f75ff8cfd0ace4392da63f.zip |
Merge branch 'master' into scratch/correct-warning-pos
Merge branch:
commit d29291d665e808307126bf52c3e748fef78f0f9c (HEAD -> master,
origin/master, origin/HEAD)
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Date: Fri Jan 14 12:26:30 2022 -0500
(macroexp--expand-all): Fix bug#53227 and bug#46636
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 870d34527b0..658edd67527 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -1299,6 +1299,9 @@ If FUNCTION is non-nil, place point on the entry for FUNCTION (if any)." (text-property-search-forward 'shortdoc-function function t) (beginning-of-line))) +;;;###autoload +(defalias 'shortdoc #'shortdoc-display-group) + (defun shortdoc--display-function (data) (let ((function (pop data)) (start-section (point)) |