all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: don@donarmstrong.com (Emacs bug Tracking System)
To: martin rudalics <rudalics@gmx.at>
Subject: bug#1121: marked as done (23.0.60; `buffer-list' returns buffers  in wrong order)
Date: Mon, 17 Nov 2008 02:30:02 -0800	[thread overview]
Message-ID: <handler.1121.D1121.12269172475054.ackdone@emacsbugs.donarmstrong.com> (raw)
In-Reply-To: 005a01c92978$28f92240$c2b22382@us.oracle.com

[-- Attachment #1: Type: text/plain, Size: 875 bytes --]


Your message dated Mon, 17 Nov 2008 11:19:01 +0100
with message-id <49214515.6090300@gmx.at>
and subject line Re: bug#1121: 23.0.60; `buffer-list' returns buffers in wrong order
has caused the Emacs bug report #1121,
regarding 23.0.60; `buffer-list' returns buffers in wrong order
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
1121: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1121
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 5495 bytes --]

From: "Drew Adams" <drew.adams@oracle.com>
To: <emacs-pretest-bug@gnu.org>
Subject: 23.0.60; `buffer-list' returns buffers in wrong order
Date: Wed, 8 Oct 2008 12:00:41 -0700
Message-ID: <005a01c92978$28f92240$c2b22382@us.oracle.com>

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*>...)
 
The problems are that in Emacs 23 the last sentence in this section of
the Elisp manual is not respected:
 
  Function: buffer-list &optional frame
     This function returns the buffer list, including all buffers, even
     those whose names begin with a space.  The elements are actual
     buffers, not their names.
 
     If FRAME is a frame, this returns FRAME's buffer list.  If FRAME
     is `nil', the fundamental Emacs buffer list is used: all the
     buffers appear in order of most recent selection, regardless of
     which frames they were selected in.
 
That is, the buffers are not in order of most recent selection. The
minibuffer of the current frame should be first, followed by the
buffer that was selected before entering the minibuffer. Instead,
buffers on another frame come before these buffers.
 

In GNU Emacs 23.0.60.1 (i386-mingw-nt5.1.2600)
 of 2008-10-03 on LENNART-69DE564
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (3.4) --no-opt --cflags -Ic:/g/include
-fno-crossjumping'
 
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: ENU
  value of $XMODIFIERS: nil
  locale-coding-system: cp1252
  default-enable-multibyte-characters: t
 
Major mode: Fundamental
 
Minor modes in effect:
  tooltip-mode: t
  tool-bar-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  blink-cursor-mode: t
  global-auto-composition-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t
 
Recent input:
C-x C-f t e s t c <tab> <return> <down-mouse-1> <mouse-1> 
<down-mouse-3> <mouse-3> M-x e v a l - r e g <return> 
<switch-frame> <switch-frame> M-x M-: ( b u f f e r 
- l i s t ) <return> <help-echo> <help-echo> <help-echo> 
<help-echo> <help-echo> <help-echo> <help-echo> <menu-bar> 
<help-menu> <send-emacs-bug-report>
 
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
(#<buffer  *Minibuf-1*> #<buffer  *Minibuf-2*> #<buffer buf002.txt> #<buffer
buf001.txt> #<buffer testcase.el> #<buffer drews-lisp-20> #<buffer *scratch*>
#<buffer  *Minibuf-0*> #<buffer *Messages*> #<buffer  *code-conversion-work*>
#<buffer  *Echo Area 0*> #<buffer  *Echo Area 1*>)





[-- Attachment #3: Type: message/rfc822, Size: 1910 bytes --]

From: martin rudalics <rudalics@gmx.at>
To: 1121-done@emacsbugs.donarmstrong.com
Subject: Re: bug#1121: 23.0.60; `buffer-list' returns buffers in wrong order
Date: Mon, 17 Nov 2008 11:19:01 +0100
Message-ID: <49214515.6090300@gmx.at>

Seems to have been fixed as a side-effect of the changes to
`save-selected-window' from 2008-11-02 and 2008-11-04.

Thanks for the report, martin.



      parent reply	other threads:[~2008-11-17 10:30 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <49214515.6090300@gmx.at>
2008-10-08 19:00 ` bug#1121: 23.0.60; `buffer-list' returns buffers in wrong order Drew Adams
2008-10-09  7:55   ` Juanma Barranquero
2008-10-09 16:10     ` Drew Adams
2008-10-09 18:23       ` Juanma Barranquero
2008-10-10 15:08         ` martin rudalics
2008-10-10 15:36           ` Drew Adams
2008-10-10 15:42             ` martin rudalics
2008-10-10 16:03               ` Drew Adams
2008-10-10 18:22                 ` martin rudalics
2008-11-04  7:49                   ` martin rudalics
2008-11-04  9:16                     ` Juanma Barranquero
2008-11-04  9:56                       ` martin rudalics
2008-11-04 14:32                         ` Drew Adams
2008-11-17 10:30   ` Emacs bug Tracking System [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=handler.1121.D1121.12269172475054.ackdone@emacsbugs.donarmstrong.com \
    --to=don@donarmstrong.com \
    --cc=rudalics@gmx.at \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.