]> git.eshelyaron.com Git - emacs.git/commitdiff
font-lock \ #foo in shell mode more correctly
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 30 Oct 2019 14:39:15 +0000 (15:39 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 30 Oct 2019 14:39:15 +0000 (15:39 +0100)
* lisp/progmodes/sh-script.el (sh-syntax-propertize-function):
\ #foo isn't a comment -- it's a symbol that starts with a space
character (bug#17538).

lisp/progmodes/sh-script.el

index 8177329f32b09891f232b058f42620d6f13a7e7d..62e4e5c49e0aedb2f8bcda6361b18a61a3d1094b 100644 (file)
@@ -1141,7 +1141,7 @@ subshells can nest."
     ;; metacharacters.  The list of special chars is taken from
     ;; the single-unix spec of the shell command language (under
     ;; `quoting') but with `$' removed.
-    ("\\(?:[^|&;<>(`\\\"' \t\n]\\|\\${\\)\\(#+\\)" (1 "_"))
+    ("\\(?:[^|&;<>(`\\\"' \t\n]\\|\\${\\|\\ \\)\\(#+\\)" (1 "_"))
     ;; In addition, `#' at the beginning of closed parentheses
     ;; does not start a comment if the parentheses are not isolated
     ;; by metacharacters, excluding [()].