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

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

bug#1415: marked as done (23.0.60; display-buffer doesn't honor NOT-THI


From: Emacs bug Tracking System
Subject: bug#1415: marked as done (23.0.60; display-buffer doesn't honor NOT-THIS-WINDOW argument)
Date: Thu, 27 Nov 2008 05:55:05 -0800

Your message dated Thu, 27 Nov 2008 14:41:11 +0100
with message-id <492EA377.40504@gmx.at>
and subject line Re: bug#1415: 23.0.60; display-buffer doesn't honor 
NOT-THIS-WINDOW argument
has caused the Emacs bug report #1415,
regarding 23.0.60; display-buffer doesn't honor NOT-THIS-WINDOW argument
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.)


-- 
1415: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1415
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems
--- Begin Message --- Subject: 23.0.60; display-buffer doesn't honor NOT-THIS-WINDOW argument Date: Sat, 22 Nov 2008 18:01:37 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux)
I think that display-buffer returns sometimes the selected window even
if the NOT-THIS-WINDOW argument is true.  Here is a test case:

(progn
  (defun display-buffer-checked (buffer)
    (let ((selected (selected-window))
          (window (display-buffer buffer t)))
      (when (eq selected window)
        (error "display-buffer returned selected window"))
      window))
  
  (let ((foo (get-buffer-create "foo"))
        (bar (get-buffer-create "bar")))
    (select-window (get-buffer-window "*scratch*"))
    (save-selected-window 
      (select-window (display-buffer-checked foo)))
    (save-selected-window 
      (select-window (display-buffer-checked bar)))))


display-buffer-checked just calls display-buffer and checks that the
returned window isn't the selected window.  From looking at the code of
display-buffer, I would say that display-buffer returns the lru window
even if that's the selected window.

Helmut.


In GNU Emacs 23.0.60.10 (i686-pc-linux-gnu, GTK+ Version 2.8.20)
 of 2008-11-22 on xaital
Windowing system distributor `The X.Org Foundation', version 11.0.70101000
configured using `configure  '--without-sound' '--without-pop' '--without-gif' 
'--without-tiff''



--- End Message ---
--- Begin Message --- Subject: Re: bug#1415: 23.0.60; display-buffer doesn't honor NOT-THIS-WINDOW argument Date: Thu, 27 Nov 2008 14:41:11 +0100 User-agent: Thunderbird 2.0.0.16 (Windows/20080708)
I've used the patch now for two days and it seems to work well.

I've checked in a slightly more restrictive version.
Please try again and keep an eye on this.

Thanks again for reporting, martin.




--- End Message ---

reply via email to

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