diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2011-01-09 16:07:30 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2011-01-09 16:07:30 -0500 |
commit | 732eb50a1daa31d6d86190815e7e0833a2a78c27 (patch) | |
tree | 577e8eed6d360d52e1e915414f8081d6f43b46cf /lisp/comint.el | |
parent | 895123f56682ed3fa9d210b1e6cfed0b3857b3e2 (diff) | |
download | emacs-732eb50a1daa31d6d86190815e7e0833a2a78c27.tar.gz |
* lisp/comint.el (comint-highlight-prompt): Inherit from minibuffer-prompt.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index bd563ee4592..bfee8e35c9c 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -227,9 +227,7 @@ This variable is buffer-local." :group 'comint) (defface comint-highlight-prompt - '((((min-colors 88) (background dark)) (:foreground "cyan1")) - (((background dark)) (:foreground "cyan")) - (t (:foreground "dark blue"))) + '((t :inherit minibuffer-prompt)) "Face to use to highlight prompts." :group 'comint) |