]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve doc strings of some new faces
authorEli Zaretskii <eliz@gnu.org>
Tue, 27 Dec 2022 16:59:59 +0000 (18:59 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 27 Dec 2022 16:59:59 +0000 (18:59 +0200)
* lisp/font-lock.el (font-lock-punctuation-face)
(font-lock-delimiter-face): Doc fix.

lisp/font-lock.el

index 2dfbe3ad232661911c63cd6ce1b4965ea2ccbe76..831e603239bfae876e92534b6752ba9634c04d7a 100644 (file)
@@ -2110,7 +2110,7 @@ For example, the declaration and use of fields in a struct."
 
 (defface font-lock-punctuation-face
   '((t nil))
-  "Font Lock mode face used to highlight punctuation."
+  "Font Lock mode face used to highlight punctuation characters."
   :group 'font-lock-faces
   :version "29.1")
 
@@ -2122,7 +2122,9 @@ For example, the declaration and use of fields in a struct."
 
 (defface font-lock-delimiter-face
   '((t :inherit font-lock-punctuation-face))
-  "Font Lock mode face used to highlight delimiters."
+  "Font Lock mode face used to highlight delimiters.
+What exactly is a delimiter depends on the major mode, but usually
+these are characters like comma, colon, and semi-colon."
   :group 'font-lock-faces
   :version "29.1")