GNU bug report logs -
#10589
24.0.92; vc-register; use deduced backend for checking registered
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Fri, 30 Nov 2012 12:45:23 +0800
with message-id <87fw3rwvfg.fsf <at> gnu.org>
and subject line Re: bug#10589: 24.0.92; vc-register; use deduced backend for checking registered
has caused the debbugs.gnu.org bug report #10589,
regarding 24.0.92; vc-register; use deduced backend for checking registered
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
10589: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10589
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Current implementation of `vc-register' fails to register an unregistered item
which is already registered to another backend.
Using `vc-call-backend' with deduced `backend' instead of `vc-backend' and
`vc-registered' resolves this issue.
=== modified file 'lisp/vc/vc.el'
*** lisp/vc/vc.el 2012-01-19 07:21:25 +0000
--- lisp/vc/vc.el 2012-01-20 19:55:38 +0000
*************** first backend that could register the fi
*** 1277,1287 ****
(dolist (fname files)
(let ((bname (get-file-buffer fname)))
(unless fname (setq fname buffer-file-name))
! (when (vc-backend fname)
! (if (vc-registered fname)
! (error "This file is already registered")
! (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
! (error "Aborted"))))
;; Watch out for new buffers of size 0: the corresponding file
;; does not exist yet, even though buffer-modified-p is nil.
(when bname
--- 1277,1284 ----
(dolist (fname files)
(let ((bname (get-file-buffer fname)))
(unless fname (setq fname buffer-file-name))
! (when (vc-call-backend backend 'registered fname)
! (error "This file is already registered"))
;; Watch out for new buffers of size 0: the corresponding file
;; does not exist yet, even though buffer-modified-p is nil.
(when bname
[Message part 3 (message/rfc822, inline)]
OKAZAKI Tetsurou <okazaki.tetsurou <at> gmail.com> writes:
> Current implementation of `vc-register' fails to register an
> unregistered item which is already registered to another backend.
>
> Using `vc-call-backend' with deduced `backend' instead of `vc-backend'
> and `vc-registered' resolves this issue.
I've committed your patch to trunk. Thanks.
This bug report was last modified 12 years and 180 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.