From 25ffd84734f9028f90f7b31719bf13cc01d0d669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 16 Apr 2024 12:30:55 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Emacs=20mode:=20fix=20colorizati?= =?UTF-8?q?on=20of=20math=20functions=20that=20appear=20just=20after=20an?= =?UTF-8?q?=20equal=20sign?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/dynare.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dynare.el b/scripts/dynare.el index 88a8b59d33..e723bf6b78 100644 --- a/scripts/dynare.el +++ b/scripts/dynare.el @@ -1,7 +1,7 @@ ;;; dynare.el --- major mode for editing Dynare mod files ;; Copyright © 2010 Yannick Kalantzis -;; Copyright © 2019-2023 Dynare Team +;; Copyright © 2019-2024 Dynare Team ;; ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -165,6 +165,7 @@ (modify-syntax-entry ?- "." st) (modify-syntax-entry ?/ "." st) (modify-syntax-entry ?^ "." st) + (modify-syntax-entry ?= "." st) ;; symbols for the macrolanguage (modify-syntax-entry ?@ "." st) -- GitLab