comparison lisp/comint.el @ 61396:a2c0a72230cf

* cus-edit.el (custom-modified-face): * comint.el (comint-highlight-input): Fix previous changes. * term.el (term-handle-ansi-escape): Add a comment.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 08 Apr 2005 20:55:09 +0000
parents 31aa9a390538
children f6ddc48bc826
comparison
equal deleted inserted replaced
61395:21f8452c722e 61396:a2c0a72230cf
226 (defface comint-highlight-input '((t (:weight bold))) 226 (defface comint-highlight-input '((t (:weight bold)))
227 "Face to use to highlight user input." 227 "Face to use to highlight user input."
228 :group 'comint) 228 :group 'comint)
229 229
230 (defface comint-highlight-prompt 230 (defface comint-highlight-prompt
231 '(((min-colors 88) ((background dark)) (:foreground "cyan1")) 231 '((((min-colors 88) ((background dark))) (:foreground "cyan1"))
232 (((background dark)) (:foreground "cyan")) 232 (((background dark)) (:foreground "cyan"))
233 (t (:foreground "dark blue"))) 233 (t (:foreground "dark blue")))
234 "Face to use to highlight prompts." 234 "Face to use to highlight prompts."
235 :group 'comint) 235 :group 'comint)
236 236