GNU bug report logs -
#13610
24.3.50; vc-next-action hang forever
Previous Next
Full log
View this message in rfc822 format
Thierry Volpiatto <thierry.volpiatto <at> gmail.com> writes:
> Hi,
> To reproduce:
> emacs -Q
> create a new file and edit it (a script shell for me)
> save it and register it under RCS.
> C-x v v
> emacs hang forever.
More exactly, this is this loop (which is not in 24.2.92) which
turn forever because it assume buffer have been modified before setq'ing
files to nil and stop the loop.
--8<---------------cut here---------------start------------->8---
;; If a buffer has unsaved changes, a checkout would discard those
;; changes, so treat the buffer as having unlocked changes.
(when (and (not (eq model 'implicit)) (eq state 'up-to-date))
(let ((files files))
(while files
(let ((buffer (get-file-buffer (car files))))
(and buffer
(buffer-modified-p buffer)
(setq state 'unlocked-changes
files nil))))))
--8<---------------cut here---------------end--------------->8---
--
Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997
This bug report was last modified 12 years and 110 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.