Use display-buffer, not pop-to-buffer, when showing magit-process after a delay

This commit is contained in:
John Wiegley 2009-02-15 21:08:57 -04:00
parent c97fa1a0c3
commit c87154d7f6

View file

@ -889,7 +889,7 @@ Many Magit faces inherit from this one by default."
(lambda (buf)
(with-current-buffer buf
(when magit-process
(pop-to-buffer (process-buffer magit-process))
(display-buffer (process-buffer magit-process))
(goto-char (point-max))))))
(current-buffer))))
(setq successp t))