diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ibuf-ext.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ce81cb422fd..999fda0a02b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-09-17 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * ibuf-ext.el (define-ibuffer-filter filename): Expand | ||
| 4 | dired-directory since buffer-file-name is absolute. | ||
| 5 | |||
| 1 | 2004-09-17 Dan Nicolaescu <dann@ics.uci.edu> | 6 | 2004-09-17 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 7 | ||
| 3 | * ediff-init.el (ediff-current-diff-face-A) | 8 | * ediff-init.el (ediff-current-diff-face-A) |
diff --git a/lisp/ibuf-ext.el b/lisp/ibuf-ext.el index b7e6741e9d4..5d24964362a 100644 --- a/lisp/ibuf-ext.el +++ b/lisp/ibuf-ext.el | |||
| @@ -1018,7 +1018,8 @@ currently used by buffers." | |||
| 1018 | (ibuffer-awhen (with-current-buffer buf | 1018 | (ibuffer-awhen (with-current-buffer buf |
| 1019 | (or buffer-file-name | 1019 | (or buffer-file-name |
| 1020 | (and (boundp 'dired-directory) | 1020 | (and (boundp 'dired-directory) |
| 1021 | dired-directory))) | 1021 | dired-directory |
| 1022 | (expand-file-name dired-directory)))) | ||
| 1022 | (string-match qualifier it))) | 1023 | (string-match qualifier it))) |
| 1023 | 1024 | ||
| 1024 | ;;;###autoload (autoload 'ibuffer-filter-by-size-gt "ibuf-ext.el") | 1025 | ;;;###autoload (autoload 'ibuffer-filter-by-size-gt "ibuf-ext.el") |