unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#29999: `initial-buffer-choice' function can result in duplicate buffer display
@ 2018-01-06  0:36 David Beswick
  2018-04-17 21:55 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 2+ messages in thread
From: David Beswick @ 2018-01-06  0:36 UTC (permalink / raw)
  To: 29999

Hello, just a minor bug relating to the behaviour of startup.el's 
`command-line-1' and the `initial-buffer-choice' variable. When an 
`initial-buffer-choice' function returns the head of the 
`displayable-buffers' list in `command-line-1' then Emacs starts with 
that same buffer visited in two windows. I would expect it should only 
be shown in a single window.

To be concrete, I ran into this behavior as on startup I wanted to 
display a particular buffer that I create except when a file is given on 
the command line. In that case I want to visit the given file instead.

The behavior can be reproduced by creating a file `bug-init.el':

(require 'seq)
(setq initial-buffer-choice
       (lambda () (seq-some (lambda (b)
                              (with-current-buffer b
                                (and buffer-file-name b)))
                            (buffer-list))))

And then running this command:

$ emacs -Q -l bug-init.el bug-init.el


On startup, bug-init.el will be visited in two different windows.


My fix:


---
  lisp/startup.el | 9 +++++++--
  1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/lisp/startup.el b/lisp/startup.el
index 2855e7c31c..cef9108cdf 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -2486,7 +2486,12 @@ command-line-1
           (insert (substitute-command-keys initial-scratch-message))
           (set-buffer-modified-p nil))))

-    ;; Prepend `initial-buffer-choice' to `displayable-buffers'.
+    ;; Prepend `initial-buffer-choice' to `displayable-buffers'. If
+    ;; the buffer is already a member of that list then shift the
+    ;; buffer to the head of the list. The shift behavior is intended
+    ;; to prevent the same buffer being displayed in two windows when
+    ;; an `initial-buffer-choice' function happens to return the head
+    ;; of `displayable-buffers'.
      (when initial-buffer-choice
        (let ((buf
               (cond ((stringp initial-buffer-choice)
@@ -2499,7 +2504,7 @@ command-line-1
                      (error "initial-buffer-choice must be a string, a 
function, or t.")))))
          (unless (buffer-live-p buf)
            (error "initial-buffer-choice is not a live buffer."))
-        (setq displayable-buffers (cons buf displayable-buffers))))
+        (setq displayable-buffers (cons buf (delq buf 
displayable-buffers)))))

      ;; Display the first two buffers in `displayable-buffers'. If
      ;; `initial-buffer-choice' is non-nil, its buffer will be the
-- 
2.14.1






^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#29999: `initial-buffer-choice' function can result in duplicate buffer display
  2018-01-06  0:36 bug#29999: `initial-buffer-choice' function can result in duplicate buffer display David Beswick
@ 2018-04-17 21:55 ` Lars Ingebrigtsen
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Ingebrigtsen @ 2018-04-17 21:55 UTC (permalink / raw)
  To: David Beswick; +Cc: 29999

David Beswick <dlbeswick@gmail.com> writes:

> Hello, just a minor bug relating to the behaviour of startup.el's
> `command-line-1' and the `initial-buffer-choice' variable. When an
> `initial-buffer-choice' function returns the head of the
> `displayable-buffers' list in `command-line-1' then Emacs starts with
> that same buffer visited in two windows. I would expect it should only
> be shown in a single window.
>
> To be concrete, I ran into this behavior as on startup I wanted to
> display a particular buffer that I create except when a file is given
> on the command line. In that case I want to visit the given file
> instead.
>
> The behavior can be reproduced by creating a file `bug-init.el':

Thanks; I've applied your patch to Emacs 27.1.

But a note about the patch: It had been mangled by your mailer (all the
spaces had been turned into non-breaking space), so I had to do it by
hand, but hopefully I got it right.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-04-17 21:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-06  0:36 bug#29999: `initial-buffer-choice' function can result in duplicate buffer display David Beswick
2018-04-17 21:55 ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).