]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix 'add-face-text-property' shortdoc
authorEshel Yaron <me@eshelyaron.com>
Sun, 12 Nov 2023 20:42:25 +0000 (21:42 +0100)
committerEli Zaretskii <eliz@gnu.org>
Tue, 14 Nov 2023 14:10:37 +0000 (16:10 +0200)
* lisp/emacs-lisp/shortdoc.el (text-properties): Add missing
':no-eval' keyword.  (Bug#67138)

lisp/emacs-lisp/shortdoc.el

index f5cbb2e645f1a6107866e38190572447b58ba9b8..e7c38d996b9e3691875e8be06261979d4bf18aff 100644 (file)
@@ -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"