diff options
| author | Dan Nicolaescu | 2005-04-08 20:55:09 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2005-04-08 20:55:09 +0000 |
| commit | 099dcdcf27772074faad8096e71a28294c14687f (patch) | |
| tree | c3b93e1084f7a11f0c315e70e9af3ae3976939a1 | |
| parent | c22c3db00e9345869817da8ebf441647c1ae35f3 (diff) | |
| download | emacs-099dcdcf27772074faad8096e71a28294c14687f.tar.gz emacs-099dcdcf27772074faad8096e71a28294c14687f.zip | |
* cus-edit.el (custom-modified-face):
* comint.el (comint-highlight-input): Fix previous changes.
* term.el (term-handle-ansi-escape): Add a comment.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/comint.el | 2 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 2 | ||||
| -rw-r--r-- | lisp/term.el | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4d94a867bbb..ad66fecaf36 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-04-08 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * cus-edit.el (custom-modified-face): | ||
| 4 | * comint.el (comint-highlight-input): Fix previous changes. | ||
| 5 | * term.el (term-handle-ansi-escape): Add a comment. | ||
| 6 | |||
| 1 | 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2005-04-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * whitespace.el (whitespace-highlight-the-space): Put the same overlay | 9 | * whitespace.el (whitespace-highlight-the-space): Put the same overlay |
diff --git a/lisp/comint.el b/lisp/comint.el index 520641aca8d..5f038dcd3d9 100644 --- a/lisp/comint.el +++ b/lisp/comint.el | |||
| @@ -228,7 +228,7 @@ This variable is buffer-local." | |||
| 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." |
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 5be34dd4adb..8d440be9b39 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -1646,7 +1646,7 @@ item in another window.\n\n")) | |||
| 1646 | "Face used when the customize item is not defined for customization." | 1646 | "Face used when the customize item is not defined for customization." |
| 1647 | :group 'custom-magic-faces) | 1647 | :group 'custom-magic-faces) |
| 1648 | 1648 | ||
| 1649 | (defface custom-modified-face '(((min-colors 88) ((class color)) | 1649 | (defface custom-modified-face '((((min-colors 88) (class color)) |
| 1650 | (:foreground "white" :background "blue1")) | 1650 | (:foreground "white" :background "blue1")) |
| 1651 | (((class color)) | 1651 | (((class color)) |
| 1652 | (:foreground "white" :background "blue")) | 1652 | (:foreground "white" :background "blue")) |
diff --git a/lisp/term.el b/lisp/term.el index 02841db9502..8643ea69fc0 100644 --- a/lisp/term.el +++ b/lisp/term.el | |||
| @@ -3233,7 +3233,7 @@ See `term-prompt-regexp'." | |||
| 3233 | ((eq char ?P) | 3233 | ((eq char ?P) |
| 3234 | (term-delete-chars (max 1 term-terminal-parameter))) | 3234 | (term-delete-chars (max 1 term-terminal-parameter))) |
| 3235 | ;; \E[@ - insert spaces | 3235 | ;; \E[@ - insert spaces |
| 3236 | ((eq char ?@) | 3236 | ((eq char ?@) ;; (terminfo: ich) |
| 3237 | (term-insert-spaces (max 1 term-terminal-parameter))) | 3237 | (term-insert-spaces (max 1 term-terminal-parameter))) |
| 3238 | ;; \E[?h - DEC Private Mode Set | 3238 | ;; \E[?h - DEC Private Mode Set |
| 3239 | ((eq char ?h) | 3239 | ((eq char ?h) |