diff options
| author | Simon Marshall | 1995-04-24 11:51:28 +0000 |
|---|---|---|
| committer | Simon Marshall | 1995-04-24 11:51:28 +0000 |
| commit | 86a21134a5d7a6dcf3c54a24ea1341784772b9bd (patch) | |
| tree | 6cb2272954d67f3bbea4cae28bafea2be53c7fff | |
| parent | 9322d1c6334700473c9654dab9695f5fa3259e0d (diff) | |
| download | emacs-86a21134a5d7a6dcf3c54a24ea1341784772b9bd.tar.gz emacs-86a21134a5d7a6dcf3c54a24ea1341784772b9bd.zip | |
shell-font-lock-keywords efficiency fix.
| -rw-r--r-- | lisp/shell.el | 2 |
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 | ||