diff options
| -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 | ||