1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

(define-ibuffer-filter filename): If `dired-directory' is a list, use its car.

This commit is contained in:
John Paul Wallington 2005-05-14 12:56:18 +00:00
parent 2baf64db72
commit 39c7eb8a6c
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,13 @@
2005-05-14 John Paul Wallington <jpw@pobox.com>
* ibuf-ext.el (define-ibuffer-filter filename):
If `dired-directory' is a list, use its car.
2005-05-14 Daniel Brockman <daniel@brockman.se> (tiny change)
* ibuffer.el (define-ibuffer-column filename):
If `dired-directory' is a list, use its car.
2005-05-14 Richard M. Stallman <rms@gnu.org>
* emacs-lisp/bytecomp.el (byte-compile-nogroup-warn): New function.

View file

@ -1024,7 +1024,9 @@ currently used by buffers."
(ibuffer-awhen (with-current-buffer buf
(or buffer-file-name
(and (boundp 'dired-directory)
dired-directory
(if (stringp dired-directory)
dired-directory
(car dired-directory))
(expand-file-name dired-directory))))
(string-match qualifier it)))