From: Chong Yidong Date: Sun, 9 Jan 2011 21:07:30 +0000 (-0500) Subject: * lisp/comint.el (comint-highlight-prompt): Inherit from minibuffer-prompt. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~239^2~18 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=732eb50a1daa31d6d86190815e7e0833a2a78c27;p=emacs.git * lisp/comint.el (comint-highlight-prompt): Inherit from minibuffer-prompt. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 743aa573957..d359fa927bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2011-01-09 Chong Yidong + * comint.el (comint-highlight-prompt): Inherit minibuffer-prompt. + * wid-edit.el (visibility): Replace :on-image and :off-image widget properties with :on-glyph and :off-glyph, for consistency with the `visibility' widget. 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)