diff options
author | Eshel Yaron <me@eshelyaron.com> | 2023-11-12 21:42:25 +0100 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2023-11-14 16:10:37 +0200 |
commit | f98637b51b5b938c894cb77a5d5aa6a86b2a727d (patch) | |
tree | 29a58df5ba0791fa80b44a22280dafd889f9150f /lisp | |
parent | 3fff22eb20cc59c730c7ec4560c8663dfd55147b (diff) | |
download | emacs-f98637b51b5b938c894cb77a5d5aa6a86b2a727d.tar.gz emacs-f98637b51b5b938c894cb77a5d5aa6a86b2a727d.tar.bz2 emacs-f98637b51b5b938c894cb77a5d5aa6a86b2a727d.zip |
; Fix 'add-face-text-property' shortdoc
* lisp/emacs-lisp/shortdoc.el (text-properties): Add missing
':no-eval' keyword. (Bug#67138)
Diffstat (limited to 'lisp')
-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 f5cbb2e645f..e7c38d996b9 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el @@ -1384,7 +1384,7 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'), (set-text-properties :no-eval (set-text-properties (point) (1+ (point)) '(face error))) (add-face-text-property - (add-face-text-property START END '(:foreground "green"))) + :no-eval (add-face-text-property START END '(:foreground "green"))) (propertize :eval (propertize "foo" 'face 'italic 'mouse-face 'bold-italic)) "Searching for Text Properties" |