aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/font-lock.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el
index 0882eb7436f..4db863c2af0 100644
--- a/lisp/font-lock.el
+++ b/lisp/font-lock.el
@@ -1913,7 +1913,7 @@ This function could be MATCHER in a MATCH-ANCHORED `font-lock-keywords' item."
1913 ;; Variable declarations. 1913 ;; Variable declarations.
1914 "\\(const\\|custom\\|face\\|var\\)\\|" 1914 "\\(const\\|custom\\|face\\|var\\)\\|"
1915 ;; Structure declarations. 1915 ;; Structure declarations.
1916 "\\(class\\|group\\|struct\\|type\\)" 1916 "\\(class\\|group\\|package\\|struct\\|type\\)"
1917 "\\)\\)\\>" 1917 "\\)\\)\\>"
1918 ;; Any whitespace and defined object. 1918 ;; Any whitespace and defined object.
1919 "[ \t'\(]*" 1919 "[ \t'\(]*"
@@ -1957,7 +1957,7 @@ This function could be MATCHER in a MATCH-ANCHORED `font-lock-keywords' item."
1957 "(" (regexp-opt 1957 "(" (regexp-opt
1958 '("when" "unless" "case" "ecase" "typecase" "etypecase" 1958 '("when" "unless" "case" "ecase" "typecase" "etypecase"
1959 "loop" "do" "do*" "dotimes" "dolist" 1959 "loop" "do" "do*" "dotimes" "dolist"
1960 "proclaim" "declaim" "declare" "defpackage" 1960 "proclaim" "declaim" "declare"
1961 "lexical-let" "lexical-let*" "flet" "labels" 1961 "lexical-let" "lexical-let*" "flet" "labels"
1962 "return" "return-from") t) 1962 "return" "return-from") t)
1963 "\\>") 1963 "\\>")