diff options
author | John Paul Wallington <jpw@pobox.com> | 2004-10-23 19:52:52 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2004-10-23 19:52:52 +0000 |
commit | fe78af29dea983ce8828bc5d2ef63dd28becdde3 (patch) | |
tree | 80ec5e0cfc064db57dbd6b26e0ae30e303439f42 /lisp/ibuffer.el | |
parent | 0457dd55384ea10734a4a888c28bf842bdf6938d (diff) | |
download | emacs-fe78af29dea983ce8828bc5d2ef63dd28becdde3.tar.gz |
(ibuffer-find-file): Remove `interactive-p' call; `wildcards' set to t
in interactive spec.
Diffstat (limited to 'lisp/ibuffer.el')
-rw-r--r-- | lisp/ibuffer.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 12f29bdac63..30c97a383d3 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el @@ -873,8 +873,8 @@ width and the longest string in LIST." default-directory) default-directory)))) (list (read-file-name "Find file: " default-directory) - current-prefix-arg))) - (find-file file (or wildcards (interactive-p)))) + t))) + (find-file file wildcards)) (defun ibuffer-mouse-visit-buffer (event) "Visit the buffer chosen with the mouse." |