diff options
| author | John Paul Wallington | 2005-05-14 12:56:18 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2005-05-14 12:56:18 +0000 |
| commit | 39c7eb8a6c37fa587b1ad72b79298109647246ef (patch) | |
| tree | e78f1375308c42341c92b4aa28c25ca7e0e36d18 | |
| parent | 2baf64db72fc81205da4f097d3905b02510a8375 (diff) | |
| download | emacs-39c7eb8a6c37fa587b1ad72b79298109647246ef.tar.gz emacs-39c7eb8a6c37fa587b1ad72b79298109647246ef.zip | |
(define-ibuffer-filter filename): If `dired-directory' is a list, use its car.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/ibuf-ext.el | 4 |
2 files changed, 13 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 12c1da63322..d27b098c0ed 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2005-05-14 John Paul Wallington <jpw@pobox.com> | ||
| 2 | |||
| 3 | * ibuf-ext.el (define-ibuffer-filter filename): | ||
| 4 | If `dired-directory' is a list, use its car. | ||
| 5 | |||
| 6 | 2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change) | ||
| 7 | |||
| 8 | * ibuffer.el (define-ibuffer-column filename): | ||
| 9 | If `dired-directory' is a list, use its car. | ||
| 10 | |||
| 1 | 2005-05-14 Richard M. Stallman <rms@gnu.org> | 11 | 2005-05-14 Richard M. Stallman <rms@gnu.org> |
| 2 | 12 | ||
| 3 | * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function. | 13 | * emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function. |
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index e2e5d251371..87d9eb707eb 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el | |||
| @@ -1024,7 +1024,9 @@ currently used by buffers." | |||
| 1024 | (ibuffer-awhen (with-current-buffer buf | 1024 | (ibuffer-awhen (with-current-buffer buf |
| 1025 | (or buffer-file-name | 1025 | (or buffer-file-name |
| 1026 | (and (boundp 'dired-directory) | 1026 | (and (boundp 'dired-directory) |
| 1027 | dired-directory | 1027 | (if (stringp dired-directory) |
| 1028 | dired-directory | ||
| 1029 | (car dired-directory)) | ||
| 1028 | (expand-file-name dired-directory)))) | 1030 | (expand-file-name dired-directory)))) |
| 1029 | (string-match qualifier it))) | 1031 | (string-match qualifier it))) |
| 1030 | 1032 | ||