bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#7645: 23.2; ido commands failed to execute if there is some killed b


From: martin rudalics
Subject: bug#7645: 23.2; ido commands failed to execute if there is some killed buffer
Date: Wed, 27 Apr 2011 15:35:04 +0200
User-agent: Thunderbird 2.0.0.21 (Windows/20090302)

> I have seen this bug too due to (buffer-list t) returning killed
> buffers. Unfortunately this isn't easy to reproduce.

Calling `buffer-list' with argument t is like calling it with no
argument at all ;-)

BTW, I'm running all my Emacsen for more than a month with

(defun check-buffer-list ()
  (dolist (buffer (buffer-list))
    (unless (buffer-live-p buffer)
      (message "Dead buffer %s" buffer))))

(add-hook 'post-command-hook 'check-buffer-list t)

and didn't find anything so far.  So please check whether the behavior
you observe might be caused by some other function.

martin





reply via email to

[Prev in Thread] Current Thread [Next in Thread]