GNU bug report logs -
#32475
27.0.50; Multiple log-view-mode buffers
Previous Next
Reported by: Juri Linkov <juri <at> linkov.net>
Date: Sun, 19 Aug 2018 21:50:03 UTC
Severity: minor
Tags: patch
Found in version 27.0.50
Done: Juri Linkov <juri <at> linkov.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 31 Aug 2018 01:20:44 +0300
with message-id <87o9dj339f.fsf <at> mail.linkov.net>
and subject line Re: bug#32475: 27.0.50; Multiple log-view-mode buffers
has caused the debbugs.gnu.org bug report #32475,
regarding 27.0.50; Multiple log-view-mode buffers
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
32475: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32475
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
To support the ability to create multiple *vc-change-log* buffers
with customization like
(add-hook 'log-view-mode-hook 'rename-uniquely)
vc-log-internal-common needs an improvement to remember and reuse
the buffer object, instead of searching the same buffer by name:
[vc-log-internal-common.1.patch (text/x-diff, inline)]
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index b2bedfae93..487594b2d5 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -2268,11 +2268,11 @@ vc-log-internal-common
setup-buttons-func
goto-location-func
rev-buff-func)
- (let (retval)
- (with-current-buffer (get-buffer-create buffer-name)
+ (let (retval (buffer (get-buffer-create buffer-name)))
+ (with-current-buffer buffer
(set (make-local-variable 'vc-log-view-type) type))
(setq retval (funcall backend-func backend buffer-name type files))
- (with-current-buffer (get-buffer buffer-name)
+ (with-current-buffer buffer
(let ((inhibit-read-only t))
;; log-view-mode used to be called with inhibit-read-only bound
;; to t, so let's keep doing it, just in case.
@@ -2283,7 +2283,7 @@ vc-log-internal-common
rev-buff-func)))
;; Display after setting up major-mode, so display-buffer-alist can know
;; the major-mode.
- (pop-to-buffer buffer-name)
+ (pop-to-buffer buffer)
(vc-run-delayed
(let ((inhibit-read-only t))
(funcall setup-buttons-func backend files retval)
[Message part 5 (message/rfc822, inline)]
> To support the ability to create multiple *vc-change-log* buffers
> with customization like
>
> (add-hook 'log-view-mode-hook 'rename-uniquely)
>
> vc-log-internal-common needs an improvement to remember and reuse
> the buffer object, instead of searching the same buffer by name:
Done in 15006cf1dd.
This bug report was last modified 6 years and 348 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.