emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/dockerfile-mode 89dba6d115 051/104: Treat = as punctuation


From: ELPA Syncer
Subject: [nongnu] elpa/dockerfile-mode 89dba6d115 051/104: Treat = as punctuation.
Date: Sat, 29 Jan 2022 07:58:33 -0500 (EST)

branch: elpa/dockerfile-mode
commit 89dba6d115848c5eb112c26550946150fe597806
Author: Wilfred Hughes <whughes@ahl.com>
Commit: Wilfred Hughes <whughes@ahl.com>

    Treat = as punctuation.
    
    Previously, = was treated as a symbol character. This prevented things
    like highlight-symbol-mode and isearch-forward-symbol being able to
    find variables defined with `ENV FOO=1`.
---
 dockerfile-mode.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dockerfile-mode.el b/dockerfile-mode.el
index c4e4b91217..793de05c8d 100644
--- a/dockerfile-mode.el
+++ b/dockerfile-mode.el
@@ -81,6 +81,7 @@ Each element of the list will be passed as a separate
     (modify-syntax-entry ?# "<" table)
     (modify-syntax-entry ?\n ">" table)
     (modify-syntax-entry ?' "\"" table)
+    (modify-syntax-entry ?= "." table)
     table)
   "Syntax table for `dockerfile-mode'.")
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]