diff options
| author | Christopher Schmidt | 2012-03-12 01:31:44 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-03-12 01:31:44 +0800 |
| commit | de5939bafc0d06ad65bfc13498b14a2dd1c82db4 (patch) | |
| tree | 6267632dbf1ce2a03f995c03d2f8ab6815135c91 | |
| parent | 413df973020798154647c0de054cb6a423d2f656 (diff) | |
| download | emacs-de5939bafc0d06ad65bfc13498b14a2dd1c82db4.tar.gz emacs-de5939bafc0d06ad65bfc13498b14a2dd1c82db4.zip | |
* ibuffer.el (ibuffer-redisplay): Remove gratuitous error.
Fixes: debbugs:10987
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ibuffer.el | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 55e6dfb0f50..0db75714768 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com> | ||
| 2 | |||
| 3 | * ibuffer.el (ibuffer-redisplay): Remove gratuitous error | ||
| 4 | (Bug#10987). | ||
| 5 | |||
| 1 | 2012-03-11 Chong Yidong <cyd@gnu.org> | 6 | 2012-03-11 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * simple.el (goto-line): Doc fix (Bug#9938). | 8 | * simple.el (goto-line): Doc fix (Bug#9938). |
diff --git a/lisp/ibuffer.el b/lisp/ibuffer.el index 17be5534138..7db4cc49ed7 100644 --- a/lisp/ibuffer.el +++ b/lisp/ibuffer.el | |||
| @@ -2140,11 +2140,10 @@ If optional arg SILENT is non-nil, do not display progress messages." | |||
| 2140 | (unless silent | 2140 | (unless silent |
| 2141 | (message "Redisplaying current buffer list...")) | 2141 | (message "Redisplaying current buffer list...")) |
| 2142 | (let ((blist (ibuffer-current-state-list))) | 2142 | (let ((blist (ibuffer-current-state-list))) |
| 2143 | (when (null blist) | 2143 | (when (and (null blist) |
| 2144 | (if (and (featurep 'ibuf-ext) | 2144 | (featurep 'ibuf-ext) |
| 2145 | (or ibuffer-filtering-qualifiers ibuffer-hidden-filter-groups)) | 2145 | (or ibuffer-filtering-qualifiers ibuffer-hidden-filter-groups)) |
| 2146 | (message "No buffers! (note: filtering in effect)") | 2146 | (message "No buffers! (note: filtering in effect)")) |
| 2147 | (error "No buffers!"))) | ||
| 2148 | (ibuffer-redisplay-engine blist t) | 2147 | (ibuffer-redisplay-engine blist t) |
| 2149 | (unless silent | 2148 | (unless silent |
| 2150 | (message "Redisplaying current buffer list...done")) | 2149 | (message "Redisplaying current buffer list...done")) |