diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-10-10 14:31:03 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-10-10 15:15:49 +0200 |
commit | b8772e8b08fd269681f449fbe81172e2a2dad19f (patch) | |
tree | 62fe51b36ce3a0e296bbd246c3272c780a38ec7d /lisp/emacs-lisp/comp.el | |
parent | 51f5e487b2840be8c4aa19c4b06973ee7eef5085 (diff) | |
download | emacs-b8772e8b08fd269681f449fbe81172e2a2dad19f.tar.gz emacs-b8772e8b08fd269681f449fbe81172e2a2dad19f.tar.bz2 emacs-b8772e8b08fd269681f449fbe81172e2a2dad19f.zip |
* Fix LIMPLE latch block name coloring in "*Native-compile-Log*"
* lisp/emacs-lisp/comp.el (comp-limple-lock-keywords): Fix
latch block name coloring.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 1c5a4975f24..a7da7d42e9c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -493,7 +493,7 @@ Assume allocation class 'd-default as default." (1 font-lock-variable-name-face)) (,(rx (group-n 1 (or "entry" (seq (or "entry_" "entry_fallback_" "bb_") - (1+ num))))) + (1+ num) (? "_latch"))))) (1 font-lock-constant-face)) (,(rx "(" (group-n 1 (1+ (or word "-")))) (1 font-lock-keyword-face))) |