diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/ibuffer.el | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 76dffe0b4e3..70c97fa9d5b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-08-30 John Paul Wallington <jpw@shootybangbang.com> | ||
| 2 | |||
| 3 | * ibuffer.el (ibuffer-update): Revert expansion of `caddr'. | ||
| 4 | (ibuffer-fontification-alist): Check hidden buffer case isn't | ||
| 5 | visiting a file and change its face to italic. | ||
| 6 | |||
| 1 | 2002-08-30 Juanma Barranquero <lektu@terra.es> | 7 | 2002-08-30 Juanma Barranquero <lektu@terra.es> |
| 2 | 8 | ||
| 3 | * replace.el (occur-mode): Add interactive declaration. | 9 | * replace.el (occur-mode): Add interactive declaration. |
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 3e471498096..0f6497c4105 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -135,7 +135,9 @@ elisp byte-compiler." | |||
| 135 | (defcustom ibuffer-fontification-alist | 135 | (defcustom ibuffer-fontification-alist |
| 136 | `((10 buffer-read-only font-lock-constant-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 (and (string-match "^ " (buffer-name)) |
| 139 | (null buffer-file-name)) | ||
| 140 | italic) | ||
| 139 | (25 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face) | 141 | (25 (memq major-mode ibuffer-help-buffer-modes) font-lock-comment-face) |
| 140 | (30 (eq major-mode 'dired-mode) font-lock-function-name-face)) | 142 | (30 (eq major-mode 'dired-mode) font-lock-function-name-face)) |
| 141 | "An alist describing how to fontify buffers. | 143 | "An alist describing how to fontify buffers. |
| @@ -2014,7 +2016,7 @@ Do not display messages if SILENT is non-nil." | |||
| 2014 | :nomini) | 2016 | :nomini) |
| 2015 | (with-current-buffer (cadr bufs) | 2017 | (with-current-buffer (cadr bufs) |
| 2016 | (minibufferp))) | 2018 | (minibufferp))) |
| 2017 | (car (cddr bufs)) | 2019 | (caddr bufs) |
| 2018 | (cadr bufs)) | 2020 | (cadr bufs)) |
| 2019 | (ibuffer-current-buffers-with-marks bufs) | 2021 | (ibuffer-current-buffers-with-marks bufs) |
| 2020 | arg))) | 2022 | arg))) |