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

From: Daniel Brockman  <daniel@brockman.se>  (tiny change)
This commit is contained in:
John Paul Wallington 2005-05-14 12:53:34 +00:00
parent 11efeb9b26
commit 2baf64db72

View file

@ -1688,7 +1688,9 @@ If point is on a group name, this function operates on that group."
(abbreviate-file-name
(or buffer-file-name
(and (boundp 'dired-directory)
dired-directory)
(if (stringp dired-directory)
dired-directory
(car dired-directory)))
""))))
(define-ibuffer-column filename-and-process