Emacs mode: fix bug introduced in bf60795e8

time-shift
Sébastien Villemot 2019-03-18 13:00:26 +01:00
parent f59e458ffe
commit afde90a4a2
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@
("^[ \t]*#" . font-lock-warning-face) ; For model-local variables
(,(regexp-opt (append dynare-statements dynare-statements-like dynare-blocks) 'symbols) . font-lock-keyword-face)
(,(regexp-opt dynare-functions 'symbols) . font-lock-builtin-face)
(,(regexp-opt dynare-constants 'symbols) . font-lock-constant-face))
(,(regexp-opt dynare-constants 'symbols) . font-lock-constant-face)
(,(concat (regexp-opt dynare-type-attributes) "\\_>") . font-lock-type-face))
"Keyword highlighting specification for `dynare-mode'.")