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

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

bug#1121: 23.0.60; `buffer-list' returns buffers in wrong order


From: martin rudalics
Subject: bug#1121: 23.0.60; `buffer-list' returns buffers in wrong order
Date: Tue, 04 Nov 2008 08:49:16 +0100
User-agent: Thunderbird 2.0.0.16 (Windows/20080708)

I suppose this issue has been fixed with the recent changes to
`save-selected-window' and friends.  Could someone please confirm with
Drew's original recipe (he doesn't build Emacs, so we would have to wait
till he gets Lennart's next release) given below.

Evaluate the forms following "emacs -Q" in *scratch*.  Note the use of
"M-x M-:".

Thanks, martin


Create two files /dir/buf001.txt and /dir/buf002.txt.

emacs -Q
(setq enable-recursive-minibuffers t)
(find-file "/dir/buf001.txt")
(find-file-other-frame "/dir/buf002.txt")
(switch-to-buffer-other-frame "buf001.txt")

M-x M-: (buffer-list)

This returns:
(#<buffer  *Minibuf-1*> #<buffer  *Minibuf-2*>
 #<buffer buf002.txt> #<buffer buf001.txt>...)

In previous Emacs releases (e.g. 22.3) it returns this:
(#<buffer  *Minibuf-1*> #<buffer buf001.txt>
 #<buffer buf002.txt> ... #<buffer  *Minibuf-0*>...)








reply via email to

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