diff options
| author | Juri Linkov | 2006-01-16 23:55:25 +0000 |
|---|---|---|
| committer | Juri Linkov | 2006-01-16 23:55:25 +0000 |
| commit | 83033a3a5bc68dda512ea3e4a05a922ea14ca506 (patch) | |
| tree | a4a7551afcaed993537d1b1132ad385ede5701bc | |
| parent | 8eafa1659b4a28d2b4176fa8462815d525d24724 (diff) | |
| download | emacs-83033a3a5bc68dda512ea3e4a05a922ea14ca506.tar.gz emacs-83033a3a5bc68dda512ea3e4a05a922ea14ca506.zip | |
(display-time-mail-face): Replace :group `faces' with `mode-line-faces'.
| -rw-r--r-- | lisp/ChangeLog | 26 | ||||
| -rw-r--r-- | lisp/time.el | 2 |
2 files changed, 27 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7759b6276a7..a9dd5493959 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2006-01-17 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * faces.el (mode-line-faces): New defgroup. | ||
| 4 | (mode-line-highlight): Move definition after new defgroup. | ||
| 5 | (mode-line, mode-line-inactive, mode-line-highlight): | ||
| 6 | Replace :group `modeline' with `mode-line-faces'. | ||
| 7 | (mode-line-buffer-id): New face. | ||
| 8 | (modeline-buffer-id): New face alias. | ||
| 9 | (vertical-border): Remove :group `modeline'. | ||
| 10 | |||
| 11 | * bindings.el (propertized-buffer-identification): Use face | ||
| 12 | `mode-line-buffer-id' instead of `Buffer-menu-buffer'. | ||
| 13 | (mode-line-next-buffer, mode-line-previous-buffer): New functions. | ||
| 14 | (mode-line-buffer-identification-keymap): For mouse-1 replace | ||
| 15 | `mode-line-unbury-buffer' with `mode-line-previous-buffer'. | ||
| 16 | Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for | ||
| 17 | mouse-3. | ||
| 18 | |||
| 19 | * info.el (Info-mode-line-node-keymap): New defvar. | ||
| 20 | (Info-set-mode-line): Use `stringp' to check Info-current-file. | ||
| 21 | Propertize Info-current-node with `mode-line-buffer-id' and | ||
| 22 | `mode-line-highlight' faces and `Info-mode-line-node-keymap'. | ||
| 23 | |||
| 24 | * time.el (display-time-mail-face): Replace :group `faces' with | ||
| 25 | `mode-line-faces'. | ||
| 26 | |||
| 1 | 2006-01-16 Kenichi Handa <handa@m17n.org> | 27 | 2006-01-16 Kenichi Handa <handa@m17n.org> |
| 2 | 28 | ||
| 3 | * international/code-pages.el: Add autoload cookies for | 29 | * international/code-pages.el: Add autoload cookies for |
diff --git a/lisp/time.el b/lisp/time.el index b70e7f7b00e..614bb055b25 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -129,7 +129,7 @@ This runs the normal hook `display-time-hook' after each update." | |||
| 129 | If `display-time-use-mail-icon' is non-nil, the image's | 129 | If `display-time-use-mail-icon' is non-nil, the image's |
| 130 | background color is the background of this face. Set this to | 130 | background color is the background of this face. Set this to |
| 131 | make the mail indicator stand out on a color display." | 131 | make the mail indicator stand out on a color display." |
| 132 | :group 'faces | 132 | :group 'mode-line-faces |
| 133 | :group 'display-time | 133 | :group 'display-time |
| 134 | :version "22.1" | 134 | :version "22.1" |
| 135 | :type '(choice (const :tag "None" nil) face)) | 135 | :type '(choice (const :tag "None" nil) face)) |