all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Juri Linkov <juri@jurta.org>
To: Stefan Monnier <monnier@IRO.UMontreal.CA>
Cc: 3419@debbugs.gnu.org
Subject: bug#3419: 23.0.94; calc, calendar and temp-buffer-resize-mode
Date: Wed, 02 Nov 2011 11:35:39 +0200	[thread overview]
Message-ID: <8739e6zx1w.fsf@mail.jurta.org> (raw)
In-Reply-To: <jwvhb2niak3.fsf-monnier+emacs@gnu.org> (Stefan Monnier's message of "Tue, 01 Nov 2011 21:21:53 -0400")

>> (let ((display-buffer-overriding-action '(display-buffer-reuse-window
>>                                           (inhibit-same-window . t))))
>
> Better would be
>
>> (let ((display-buffer-overriding-action '(nil (inhibit-same-window . t))))

Yes, this works too.

Looking at the available display actions in window.el, I found that
there are `display-buffer--other-frame-action' and the command
`display-buffer-other-frame' that uses it, but their counterpart
window functions are missing.

Copying these frame-related functions and replacing "frame" with "window"
in their names, produces two new functions:

(defvar display-buffer--other-window-action
  '((display-buffer-reuse-window
     display-buffer--special
     display-buffer-pop-up-window)
    (inhibit-same-window . t)))

(defun display-buffer-other-window (buffer)
  (interactive "BDisplay buffer in other window: ")
  (display-buffer buffer display-buffer--other-window-action))

I don't know why these window functions are omitted from window.el,
but the `display-buffer--other-window-action' would be useful for this case:

(let ((display-buffer-overriding-action display-buffer--other-window-action))
  (with-output-to-temp-buffer "*Help*"
    (princ "GNU Emacs Calculator.\n")))





  reply	other threads:[~2011-11-02  9:35 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-29 19:03 bug#3419: 23.0.94; calc, calendar and temp-buffer-resize-mode Leo
2009-05-29 23:46 ` Jay Belanger
2009-05-30  1:43   ` Leo
2009-05-30  2:15     ` Jay Belanger
2009-05-30  9:51       ` martin rudalics
2009-05-30 10:58         ` Leo
2009-05-30 12:19           ` martin rudalics
2009-05-30 18:21             ` Glenn Morris
2009-05-30 22:37               ` Leo
2011-10-24 11:07         ` Leo
2011-10-24 16:15           ` martin rudalics
2011-10-25  2:17             ` Leo
2011-10-25  2:47               ` Jay Belanger
2011-10-25 15:20                 ` Leo
2011-10-31 10:34             ` Juri Linkov
2011-10-31 18:56               ` Jay Belanger
2011-11-01  9:27                 ` Juri Linkov
2011-11-01 14:38                   ` martin rudalics
2011-11-01 20:00                     ` Stefan Monnier
2011-11-01 21:54                     ` Juri Linkov
2011-11-02  1:21                       ` Stefan Monnier
2011-11-02  9:35                         ` Juri Linkov [this message]
2011-11-02 10:04                           ` martin rudalics
2011-11-03  9:05                             ` Juri Linkov
2011-11-03 10:07                               ` martin rudalics
2011-11-03 10:17                                 ` Juri Linkov
2011-11-03 12:26                                   ` Stefan Monnier
2011-11-03 19:44                                     ` Juri Linkov
2011-11-03 21:07                                       ` Stefan Monnier
2011-11-04  9:38                                         ` Juri Linkov
2011-11-04  9:39                                       ` martin rudalics
2011-11-04 10:12                                         ` Juri Linkov
2011-11-04 13:55                                           ` martin rudalics
2011-11-03 13:59                                   ` martin rudalics
2011-11-03 19:45                                     ` Juri Linkov
2011-11-04  9:39                                       ` martin rudalics
2011-11-04 13:12                                         ` Stefan Monnier
2011-11-06 21:09                                     ` Jay Belanger
2011-11-02 12:37                           ` Stefan Monnier
2009-06-02 15:57       ` Leo
2009-06-02 19:20         ` Jay Belanger
2009-06-02 21:28           ` Leo
2012-10-04 13:18 ` martin rudalics

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=8739e6zx1w.fsf@mail.jurta.org \
    --to=juri@jurta.org \
    --cc=3419@debbugs.gnu.org \
    --cc=monnier@IRO.UMontreal.CA \
    /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.