From afde90a4a22608c5dd626ad70db99d2c0219190b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Mon, 18 Mar 2019 13:00:26 +0100 Subject: [PATCH] Emacs mode: fix bug introduced in bf60795e8 --- scripts/dynare.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dynare.el b/scripts/dynare.el index 387ea6ffd..9ae456fec 100644 --- a/scripts/dynare.el +++ b/scripts/dynare.el @@ -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'.")