diff options
author | Daniel MartÃn <mardani29@yahoo.es> | 2021-05-30 06:41:24 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-05-30 06:41:24 +0200 |
commit | 1230651ffdf7c271db4bb2901ea23298fcd9ecf3 (patch) | |
tree | 5e9ad570d38335b6dd42d753d21970d7d3c97252 /lisp/emacs-lisp | |
parent | b0d01982e2d5732390806ec5bbec6ebc01172601 (diff) | |
download | emacs-1230651ffdf7c271db4bb2901ea23298fcd9ecf3.tar.gz emacs-1230651ffdf7c271db4bb2901ea23298fcd9ecf3.tar.bz2 emacs-1230651ffdf7c271db4bb2901ea23298fcd9ecf3.zip |
Improve the documentation of documentation groups
* doc/lispref/help.texi (Documentation Groups): Fix typos and add an
example.
* lisp/emacs-lisp/shortdoc.el (define-short-documentation-group): Add
:no-eval* and :result-string keywords to the docstring. (Bug#48730)
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index 38d8ad6cc12..c9484dcb686 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -60,8 +60,10 @@ FUNCTIONS is a list of elements on the form: :args ARGS :eval EXAMPLE-FORM :no-eval EXAMPLE-FORM + :no-eval* EXAMPLE-FORM :no-value EXAMPLE-FORM :result RESULT-FORM + :result-string RESULT-FORM :eg-result RESULT-FORM :eg-result-string RESULT-FORM) |