GNU bug report logs -
#19101
25.0.50; `vc-print-log' puts wrong buffer into `log-view-mode'
Previous Next
Reported by: Richard Copley <rcopley <at> gmail.com>
Date: Wed, 19 Nov 2014 01:18:01 UTC
Severity: normal
Merged with 19078
Found in version 25.0.50
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #21 received at 19101 <at> debbugs.gnu.org (full text, mbox):
>>>>> Eli Zaretskii <eliz <at> gnu.org> writes:
>>>>> From: Ivan Shmakov <ivan <at> siamics.net>
>>>>> Richard Copley <rcopley <at> gmail.com> writes:
>>> Visit a file under Subversion or RCS (not Git or Bazaar) and invoke
>>> `vc-print-log'. The log buffer should be put into log-view-mode,
>>> but it isn't. The buffer visiting the file is put into
>>> log-view-mode instead.
>> This is likely to be caused by VC assuming that the ‘print-log’
>> backend function leaves the log buffer as the current one.
> No, it's because Stefan moved the call to pop-to-buffer so that the
> part that turned on the mode was running in the wrong buffer.
ACK, but that change seem to be dated 2014-11-05, while I’ve
observed a similar issue (with non-Emacs code, though) before.
Or so I think.
> As for print-log backend function, those that I saw run inside
> with-temp-buffer, so they don't switch buffers.
There’re several which use vc-setup-buffer, which in turn calls
set-buffer. Consider, e. g.:
(defun vc-setup-buffer (buf)
"Prepare BUF for executing a slave command and make it current."
(let ((camefrom (current-buffer))
(olddir default-directory))
(set-buffer (get-buffer-create buf))
(defun vc-bzr-print-log (files buffer &optional shortlog start-revision limit)
…
;; `vc-do-command' creates the buffer, but we need it before running
;; the command.
(vc-setup-buffer buffer)
(defun vc-git-print-log (files buffer &optional shortlog start-revision limit)
…
(let ((coding-system-for-read vc-git-commits-coding-system))
;; `vc-do-command' creates the buffer, but we need it before running
;; the command.
(vc-setup-buffer buffer)
(defun vc-hg-print-log (files buffer &optional shortlog start-revision limit)
…
;; `vc-do-command' creates the buffer, but we need it before running
;; the command.
(vc-setup-buffer buffer)
--
FSF associate member #7257 http://boycottsystemd.org/ … 3013 B6A0 230E 334A
This bug report was last modified 10 years and 243 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.