[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: display-buffer-other-frame - useful? doc string?
From: |
Stefan Monnier |
Subject: |
Re: display-buffer-other-frame - useful? doc string? |
Date: |
Mon, 10 Mar 2008 14:01:42 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) |
>> The intention of this function seems to be (compared to C-x 5 b) that
>> the focus should stay in the original frame rather than go to the
>> new frame.
> Except that the current frame is unmapped, and thus made completely
> invisible (not even iconified). IMHO that the worst feature of that
> function.
Hmm.. the code does:
(make-frame-invisible (window-frame old-window))
(make-frame-visible (window-frame old-window))
so it *shouldn't* stay invisible. Then again, given the way interaction
with window-managers is always unreliable and messed up, I wouldn't be
surprised to hear that the second call can occasionally get lost.
Stefan