aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Walters2002-08-01 01:21:18 +0000
committerColin Walters2002-08-01 01:21:18 +0000
commit40c104655cb6ad99121db58811d090ca5f49eb34 (patch)
tree3f43cb727df1e8c491eeb27f01335b50730d71b4
parent22eb1d41ef2a3b4975f3d1cc56864cf778ff2435 (diff)
downloademacs-40c104655cb6ad99121db58811d090ca5f49eb34.tar.gz
emacs-40c104655cb6ad99121db58811d090ca5f49eb34.zip
(ibuffer-fontification-alist): Use `font-lock-constant-face' instead
of `font-lock-reference-face'.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/ibuffer.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c34a888c582..cdffffbae26 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-07-31 John Paul Wallington <jpw@shootybangbang.com>
2
3 * ibuffer.el (ibuffer-fontification-alist): Use
4 `font-lock-constant-face' instead of `font-lock-reference-face'.
5
12002-07-31 John Wiegley <johnw@gnu.org> 62002-07-31 John Wiegley <johnw@gnu.org>
2 7
3 * pcomplete.el (pcomplete-comint-setup): Use `add-to-list', to 8 * pcomplete.el (pcomplete-comint-setup): Use `add-to-list', to
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el
index 058a85ce82d..eb85fdc064c 100644
--- a/lisp/ibuffer.el
+++ b/lisp/ibuffer.el
@@ -133,7 +133,7 @@ elisp byte-compiler."
133 :group 'ibuffer) 133 :group 'ibuffer)
134 134
135(defcustom ibuffer-fontification-alist 135(defcustom ibuffer-fontification-alist
136 `((10 buffer-read-only font-lock-reference-face) 136 `((10 buffer-read-only font-lock-constant-face)
137 (15 (string-match "^*" (buffer-name)) font-lock-keyword-face) 137 (15 (string-match "^*" (buffer-name)) font-lock-keyword-face)
138 (20 (string-match "^ " (buffer-name)) font-lock-warning-face) 138 (20 (string-match "^ " (buffer-name)) font-lock-warning-face)
139 (25 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face) 139 (25 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face)