aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-07 09:49:47 +0000
committerRichard M. Stallman1994-10-07 09:49:47 +0000
commit36668a5dff3885d3d04170eb19570ba6e133a9da (patch)
tree935c145543c91bc6251b1a1b58d89d4fd63f287e
parentfcd2fe416ab9d2ee657bd88a6b1fcc74e7134987 (diff)
downloademacs-36668a5dff3885d3d04170eb19570ba6e133a9da.tar.gz
emacs-36668a5dff3885d3d04170eb19570ba6e133a9da.zip
(sh-font-lock-keywords): Default to nil.
-rw-r--r--lisp/progmodes/sh-script.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index ce1e53b2fb4..a010f293459 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -287,9 +287,10 @@ Variables only understood by some shells are associated to a list of those.")
287 287
288 288
289 289
290(defvar sh-font-lock-keywords 290(defvar sh-font-lock-keywords nil
291 '(("[ \t]\\(#.*\\)" 1 font-lock-comment-face) 291 ;; This is done syntactically:
292 ("\"[^`]*\"\\|'.*'\\|\\\\[^\nntc]" . font-lock-string-face)) 292 ;'(("[ \t]\\(#.*\\)" 1 font-lock-comment-face)
293 ; ("\"[^`]*\"\\|'.*'\\|\\\\[^\nntc]" . font-lock-string-face))
293 "*Rules for highlighting shell scripts. 294 "*Rules for highlighting shell scripts.
294This variable is included into the various variables 295This variable is included into the various variables
295`sh-SHELL-font-lock-keywords'. If no such variable exists for some shell, 296`sh-SHELL-font-lock-keywords'. If no such variable exists for some shell,