* ibuffer.el (ibuffer-redisplay): Remove gratuitous error.
Fixes: debbugs:10987
This commit is contained in:
parent
413df97302
commit
de5939bafc
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-03-11 Christopher Schmidt <christopher@ch.ristopher.com>
|
||||
|
||||
* ibuffer.el (ibuffer-redisplay): Remove gratuitous error
|
||||
(Bug#10987).
|
||||
|
||||
2012-03-11 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* simple.el (goto-line): Doc fix (Bug#9938).
|
||||
|
|
|
@ -2140,11 +2140,10 @@ If optional arg SILENT is non-nil, do not display progress messages."
|
|||
(unless silent
|
||||
(message "Redisplaying current buffer list..."))
|
||||
(let ((blist (ibuffer-current-state-list)))
|
||||
(when (null blist)
|
||||
(if (and (featurep 'ibuf-ext)
|
||||
(when (and (null blist)
|
||||
(featurep 'ibuf-ext)
|
||||
(or ibuffer-filtering-qualifiers ibuffer-hidden-filter-groups))
|
||||
(message "No buffers! (note: filtering in effect)")
|
||||
(error "No buffers!")))
|
||||
(message "No buffers! (note: filtering in effect)"))
|
||||
(ibuffer-redisplay-engine blist t)
|
||||
(unless silent
|
||||
(message "Redisplaying current buffer list...done"))
|
||||
|
|
Loading…
Add table
Reference in a new issue