aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marshall1995-04-24 11:51:28 +0000
committerSimon Marshall1995-04-24 11:51:28 +0000
commit86a21134a5d7a6dcf3c54a24ea1341784772b9bd (patch)
tree6cb2272954d67f3bbea4cae28bafea2be53c7fff
parent9322d1c6334700473c9654dab9695f5fa3259e0d (diff)
downloademacs-86a21134a5d7a6dcf3c54a24ea1341784772b9bd.tar.gz
emacs-86a21134a5d7a6dcf3c54a24ea1341784772b9bd.zip
shell-font-lock-keywords efficiency fix.
-rw-r--r--lisp/shell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index e75878deb26..02d00fd72e2 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -249,7 +249,7 @@ Thus, this does not include the shell's current directory.")
249(defvar shell-font-lock-keywords 249(defvar shell-font-lock-keywords
250 (list (cons shell-prompt-pattern 'font-lock-keyword-face) 250 (list (cons shell-prompt-pattern 'font-lock-keyword-face)
251 '("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face) 251 '("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face)
252 '("^[^ \t\n]+:.*$" . font-lock-string-face) 252 '("^[^ \t\n]+:.*" . font-lock-string-face)
253 '("^\\[[1-9][0-9]*\\]" . font-lock-string-face)) 253 '("^\\[[1-9][0-9]*\\]" . font-lock-string-face))
254 "Additional expressions to highlight in Shell mode.") 254 "Additional expressions to highlight in Shell mode.")
255 255