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

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

Re: customize-*-other-window cmds don't respect special-display* values


From: Stefan Monnier
Subject: Re: customize-*-other-window cmds don't respect special-display* values
Date: Tue, 18 Jan 2005 10:41:45 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux)

> The ``other window'' part?  It means that the buffer will be displayed
> in the window that we call in Emacs ``the other window''.  Since the
> window to display is thus fixed, special-display-regexps and its ilk
> cannot be applied, because they would change the window where the
> buffer will be displayed.

Hmmm....let's see:

   (defun find-file-other-window (filename &optional wildcards)
     [...]
         (switch-to-buffer-other-window value))))
   
   (defun switch-to-buffer-other-window (buffer &optional norecord)
     [...]
     (let ((pop-up-windows t)
        ;; Don't let these interfere.
        same-window-buffer-names same-window-regexps)
       (pop-to-buffer buffer t norecord)))

Looks like the "other-window" name does not usually imply "ignore the
special-display thingies".


        Stefan




reply via email to

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