mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
(define-ibuffer-filter filename): Expand dired-directory since
buffer-file-name is absolute. From Romain Francoise <romain@orebokech.com>.
This commit is contained in:
parent
66507a7a3e
commit
dc711054e2
@ -1,3 +1,8 @@
|
||||
2004-09-17 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* ibuf-ext.el (define-ibuffer-filter filename): Expand
|
||||
dired-directory since buffer-file-name is absolute.
|
||||
|
||||
2004-09-17 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* ediff-init.el (ediff-current-diff-face-A)
|
||||
|
@ -1018,7 +1018,8 @@ currently used by buffers."
|
||||
(ibuffer-awhen (with-current-buffer buf
|
||||
(or buffer-file-name
|
||||
(and (boundp 'dired-directory)
|
||||
dired-directory)))
|
||||
dired-directory
|
||||
(expand-file-name dired-directory))))
|
||||
(string-match qualifier it)))
|
||||
|
||||
;;;###autoload (autoload 'ibuffer-filter-by-size-gt "ibuf-ext.el")
|
||||
|
Loading…
Reference in New Issue
Block a user