summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2000-08-22 10:06:55 +0000
committerMiles Bader <miles@gnu.org>2000-08-22 10:06:55 +0000
commitcb6e07b14f390dc6cbc89b37a35a0cb665f79ece (patch)
treef5e354fd04fa5c2d00fb9778a174cec705863a49 /lisp
parentd80061fab2bf2345fbb2b5a8fe8b837dc40a1acb (diff)
downloademacs-cb6e07b14f390dc6cbc89b37a35a0cb665f79ece.tar.gz
(shell-font-lock-keywords): Remove prompt highlighting, since this is
now done independently of font-lock mode.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/shell.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/shell.el b/lisp/shell.el
index b93fe57402f..ea0251bb1da 100644
--- a/lisp/shell.el
+++ b/lisp/shell.el
@@ -321,8 +321,7 @@ Thus, this does not include the shell's current directory.")
:group 'shell)
(defvar shell-font-lock-keywords
- '((eval . (cons shell-prompt-pattern 'font-lock-warning-face))
- ("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face)
+ '(("[ \t]\\([+-][^ \t\n]+\\)" 1 font-lock-comment-face)
("^[^ \t\n]+:.*" . font-lock-string-face)
("^\\[[1-9][0-9]*\\]" . font-lock-string-face))
"Additional expressions to highlight in Shell mode.")