diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-21 22:08:56 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-12-21 22:08:56 +0100 |
commit | c9a95237a8e5d2c2e8ca3d6c97de8c7b5c1daaac (patch) | |
tree | 663076c6870c4294971a7ddea13a4bd3407ff553 /lisp/emacs-lisp | |
parent | f329a3180ead740bb85e1edfc48ae360a56f7ffd (diff) | |
download | emacs-c9a95237a8e5d2c2e8ca3d6c97de8c7b5c1daaac.tar.gz emacs-c9a95237a8e5d2c2e8ca3d6c97de8c7b5c1daaac.tar.bz2 emacs-c9a95237a8e5d2c2e8ca3d6c97de8c7b5c1daaac.zip |
Add try-completion to the string shortdoc
* lisp/emacs-lisp/shortdoc.el (string): Mention try-completion here.
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 9bd06636f4d..7bb7d233b47 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -192,6 +192,8 @@ There can be any number of :example/:result elements." :eval (reverse "foo")) (substring-no-properties :eval (substring-no-properties (propertize "foobar" 'face 'bold) 0 3)) + (try-completion + :eval (try-completion "foo" '("foobar" "foozot" "gazonk"))) "Predicates for Strings" (string-equal :eval (string-equal "foo" "foo")) |