diff options
| author | Juri Linkov | 2007-01-09 21:22:28 +0000 |
|---|---|---|
| committer | Juri Linkov | 2007-01-09 21:22:28 +0000 |
| commit | e992d405a3afee2562f4f326cce44782266d7bc3 (patch) | |
| tree | 26636ec0dafdd27bb813e6ac215e9118b8e02e5d | |
| parent | 0f2181700933c3b9c6cd23cafaea3d991a9a2b9f (diff) | |
| download | emacs-e992d405a3afee2562f4f326cce44782266d7bc3.tar.gz emacs-e992d405a3afee2562f4f326cce44782266d7bc3.zip | |
(momentary): Change :group to basic-faces where all
basic faces belong to. Add :version.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/faces.el | 11 |
2 files changed, 13 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dbe362dbcee..d33c4a23c08 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2007-01-09 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * info.el (Info-fontify-node): Don't hide node names of index entries. | ||
| 4 | |||
| 5 | * faces.el (momentary): Change :group to basic-faces where all | ||
| 6 | basic faces belong to. Add :version. | ||
| 7 | |||
| 1 | 2007-01-09 Lennart Borgman <lennart.borgman.073@student.lu.se> | 8 | 2007-01-09 Lennart Borgman <lennart.borgman.073@student.lu.se> |
| 2 | 9 | ||
| 3 | * tutorial.el (tutorial--display-changes): Show M-x sequence if no | 10 | * tutorial.el (tutorial--display-changes): Show M-x sequence if no |
diff --git a/lisp/faces.el b/lisp/faces.el index c0cccb480d5..d532d807cd8 100644 --- a/lisp/faces.el +++ b/lisp/faces.el | |||
| @@ -2112,17 +2112,18 @@ created." | |||
| 2112 | :version "21.1" | 2112 | :version "21.1" |
| 2113 | :group 'basic-faces) | 2113 | :group 'basic-faces) |
| 2114 | 2114 | ||
| 2115 | (defface momentary | ||
| 2116 | '((t (:inherit mode-line))) | ||
| 2117 | "Face for momentarily displaying text in the current buffer." | ||
| 2118 | :group 'display) | ||
| 2119 | |||
| 2120 | (defface vertical-border | 2115 | (defface vertical-border |
| 2121 | '((((type tty)) :inherit mode-line-inactive)) | 2116 | '((((type tty)) :inherit mode-line-inactive)) |
| 2122 | "Face used for vertical window dividers on ttys." | 2117 | "Face used for vertical window dividers on ttys." |
| 2123 | :version "22.1" | 2118 | :version "22.1" |
| 2124 | :group 'basic-faces) | 2119 | :group 'basic-faces) |
| 2125 | 2120 | ||
| 2121 | (defface momentary | ||
| 2122 | '((t (:inherit mode-line))) | ||
| 2123 | "Face for momentarily displaying text in the current buffer." | ||
| 2124 | :version "22.1" | ||
| 2125 | :group 'basic-faces) | ||
| 2126 | |||
| 2126 | (defface minibuffer-prompt | 2127 | (defface minibuffer-prompt |
| 2127 | '((((background dark)) :foreground "cyan") | 2128 | '((((background dark)) :foreground "cyan") |
| 2128 | ;; Don't use blue because many users of the MS-DOS port customize | 2129 | ;; Don't use blue because many users of the MS-DOS port customize |