summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-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 @@
+2002-07-31 John Paul Wallington <jpw@shootybangbang.com>
+
+ * ibuffer.el (ibuffer-fontification-alist): Use
+ `font-lock-constant-face' instead of `font-lock-reference-face'.
+
2002-07-31 John Wiegley <johnw@gnu.org>
* 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."
:group 'ibuffer)
(defcustom ibuffer-fontification-alist
- `((10 buffer-read-only font-lock-reference-face)
+ `((10 buffer-read-only font-lock-constant-face)
(15 (string-match "^*" (buffer-name)) font-lock-keyword-face)
(20 (string-match "^ " (buffer-name)) font-lock-warning-face)
(25 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face)