From unknown Sat Aug 16 21:17:50 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#3214 <3214@debbugs.gnu.org> To: bug#3214 <3214@debbugs.gnu.org> Subject: Status: 23.0.92; VC dir mode fails after commit when files are deleted Reply-To: bug#3214 <3214@debbugs.gnu.org> Date: Sun, 17 Aug 2025 04:17:50 +0000 retitle 3214 23.0.92; VC dir mode fails after commit when files are deleted reassign 3214 emacs submitter 3214 Bob Rogers severity 3214 normal tag 3214 fixed thanks From rogers-emacs@rgrjr.dyndns.org Mon May 4 15:38:55 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 4 May 2009 22:38:55 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=0.1 required=4.0 tests=FOURLA,MURPHY_DRUGS_REL8 autolearn=no version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.13.8/8.13.8/Debian-3) with ESMTP id n44McnBm000559 for ; Mon, 4 May 2009 15:38:50 -0700 Received: from mx10.gnu.org ([199.232.76.166]:39150) by fencepost.gnu.org with esmtp (Exim 4.67) (envelope-from ) id 1M16oC-0000dH-UU for emacs-pretest-bug@gnu.org; Mon, 04 May 2009 18:38:49 -0400 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1M16oA-0005da-Pr for emacs-pretest-bug@gnu.org; Mon, 04 May 2009 18:38:48 -0400 Received: from rgrjr.com ([216.146.47.5]:42648) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M16oA-0005dS-CW for emacs-pretest-bug@gnu.org; Mon, 04 May 2009 18:38:46 -0400 Received: from rgrjr.dyndns.org (c-66-30-196-77.hsd1.ma.comcast.net [66.30.196.77]) by rgrjr.com (Postfix on CentOS) with ESMTP id F1EB9160157 for ; Mon, 4 May 2009 22:38:45 +0000 (UTC) Received: (qmail 17461 invoked by uid 89); 4 May 2009 22:38:45 -0000 Received: from unknown (HELO rgr.rgrjr.com) (192.168.57.1) by home with SMTP; 4 May 2009 22:38:45 -0000 Received: by rgr.rgrjr.com (Postfix, from userid 500) id 381524862E; Mon, 4 May 2009 18:38:45 -0400 (EDT) From: Bob Rogers To: emacs-pretest-bug@gnu.org Subject: 23.0.92; VC dir mode fails after commit when files are deleted Message-Id: <20090504223845.381524862E@rgr.rgrjr.com> Date: Mon, 4 May 2009 18:38:45 -0400 (EDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) To reproduce: 1. Find or create a working copy of a repository, and identify a file that you want to remove from the repo, call it "foo.text". (I used SVN, but the problem doesn't seem to be backend-dependent.) You will need to commit in order to trigger the bug, so be sure you really don't mind getting rid of it. 2. "emacs -Q" in the working copy. 3. "C-x C-f foo.text RET". The deleted file must be visited in order to trigger the bug. 4. Remove the file via the VC command-line tools, but don't commmit yet. (Don't use vc-delete-file, as that will also delete the buffer.) 5. "C-x v d" to get VC dir mode in the other window. It should tag foo.text as "removed". (FWIW, if you do "C-x v d" first, you will see bug #3213.) 6. Type "v" on the foo.text line, then "C-c C-c" in the log entry buffer to commit the change. You should then get a "File foo.text no longer exists!" error. A sample backtrace is shown below. The patch after the backtrace cures the symptom crudely, albeit by papering over it, and possibly hiding other bugs. It would be better if vc-finish-logentry could recognize which files are being deleted, and then have vc-resynch-buffer simply delete those buffers, but it is not clear to me how to do that in a backend-independent way. Admittedly, this is a comparatively minor nuisance; the VC change is comitted properly, and the partially-updated VC-dir buffer can be fixed by typing "g". (And I don't know whether this is a regression.) -- Bob Rogers http://www.rgrjr.com/ Backtrace: Debugger entered--Lisp error: (error "File /home/rogers/projects/test2/test/foo.text no longer exists!") signal(error ("File /home/rogers/projects/test2/test/foo.text no longer exists!")) error("File %s no longer exists!" "/home/rogers/projects/test2/test/foo.text") revert-buffer(t t t) vc-revert-buffer-internal(t t) vc-resynch-window("/home/rogers/projects/test2/test/foo.text" t t) vc-resynch-buffer("/home/rogers/projects/test2/test/foo.text" t t) #[(file) "=3fffc2 =3fffc3#=3fff87" [file vc-keep-workfiles vc-resynch-buffer t] 4]("/home/rogers/projects/test2/test/foo.text") mapc(#[(file) "=3fffc2 =3fffc3#=3fff87" [file vc-keep-workfiles vc-resynch-buffer t] 4] ("/home/rogers/projects/test2/test/foo.text")) vc-finish-logentry() call-interactively(vc-finish-logentry) log-edit-done() call-interactively(log-edit-done nil nil) ------------------------------------------------------------------------ Index: lisp/vc-dispatcher.el =================================================================== RCS file: /sources/emacs/emacs/lisp/vc-dispatcher.el,v retrieving revision 1.67 diff -c -r1.67 vc-dispatcher.el *** lisp/vc-dispatcher.el 5 Jan 2009 03:19:52 -0000 1.67 --- lisp/vc-dispatcher.el 4 May 2009 19:29:54 -0000 *************** *** 444,453 **** ;; and mark properly even in cases where vc-restore-buffer-context ;; would fail. However, save-excursion might also get it wrong -- ;; in this case, vc-restore-buffer-context gives it a second try. ! (save-excursion ! ;; t means don't call normal-mode; ! ;; that's to preserve various minor modes. ! (revert-buffer arg no-confirm t)) (vc-restore-buffer-context context))) (defun vc-resynch-window (file &optional keep noquery) --- 444,457 ---- ;; and mark properly even in cases where vc-restore-buffer-context ;; would fail. However, save-excursion might also get it wrong -- ;; in this case, vc-restore-buffer-context gives it a second try. ! (condition-case error ! (save-excursion ! ;; t means don't call normal-mode; ! ;; that's to preserve various minor modes. ! (revert-buffer arg no-confirm t)) ! (error ! (message "Got error %S" error) ! (sit-for 2))) (vc-restore-buffer-context context))) (defun vc-resynch-window (file &optional keep noquery) ------------------------------------------------------------------------ In GNU Emacs 23.0.92.1 (i686-pc-linux-gnu, GTK+ Version 2.12.9) of 2009-04-24 on rgr Windowing system distributor `The X.Org Foundation', version 11.0.10400090 Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_US.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default-enable-multibyte-characters: t Major mode: Debugger Minor modes in effect: diff-auto-refine-mode: t shell-dirtrack-mode: t mouse-wheel-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t From debbugs-submit-bounces@debbugs.gnu.org Tue Jan 19 22:59:00 2010 Received: (at 3214) by debbugs.gnu.org; 20 Jan 2010 03:59:00 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NXRic-0000du-V2 for submit@debbugs.gnu.org; Tue, 19 Jan 2010 22:58:59 -0500 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NXRic-0000dp-2A for 3214@debbugs.gnu.org; Tue, 19 Jan 2010 22:58:58 -0500 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NXRiY-0005CK-F2; Tue, 19 Jan 2010 22:58:54 -0500 From: Glenn Morris To: 3214@debbugs.gnu.org Subject: vc-dir problem when committing removed file to bzr X-Spook: lynch S Key pre-emptive Uzi warfare diwn Centro Cohiba X-Ran: .~t`DN5PL)I5KA-{zsiRiVln=p#[zP.AGxj?LSzR:!JjWLfn$@4CSy8gonD_taxk9ji/%l X-Hue: cyan X-Debbugs-No-Ack: yes X-Attribution: GM Date: Tue, 19 Jan 2010 22:58:54 -0500 Message-ID: User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.0 (------) X-Debbugs-Envelope-To: 3214 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.0 (------) Just had what seems to be a same problem as this (bug#3214) with the trunk from 2010-01-10. In the emacs admin/ directory, I did (from the command-line): bzr remove revdiff Then I edited the ChangeLog file, then did M-x vc-dir on the admin directory. In the resulting buffer, the ChangeLog was marked as modified, and revdiff as removed. I marked both files, hit `v', entered a log message, and tried to commit. The vc-dir process finished with an error: Running bzr status ChangeLog in foreground... Running bzr status ChangeLog...OK = 0 Running bzr status revdiff in foreground... vc-do-command: Running bzr status revdiff...FAILED (status 3) Matches vc-do-command: Running bzr status revdiff...FAILED (... [-1-] I'm left with a vc-dir buffer which looks like: * up-to-date ChangeLog * removed revdiff However, the commit to the repository did complete OK. From debbugs-submit-bounces@debbugs.gnu.org Wed Jan 20 02:16:19 2010 Received: (at 3214) by debbugs.gnu.org; 20 Jan 2010 07:16:19 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NXUna-0002mr-Tm for submit@debbugs.gnu.org; Wed, 20 Jan 2010 02:16:19 -0500 Received: from paul-mcgann-v0.ics.uci.edu ([128.195.1.147]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NXUnZ-0002mk-Ee for 3214@debbugs.gnu.org; Wed, 20 Jan 2010 02:16:18 -0500 Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by paul-mcgann-v0.ics.uci.edu (8.13.8/8.13.8) with ESMTP id o0K7G8AC012913 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 19 Jan 2010 23:16:08 -0800 Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id o0K7G8aC013349; Tue, 19 Jan 2010 23:16:08 -0800 (PST) Date: Tue, 19 Jan 2010 23:16:08 -0800 (PST) Message-Id: <201001200716.o0K7G8aC013349@godzilla.ics.uci.edu> From: Dan Nicolaescu To: Glenn Morris Subject: Re: bug#3214: vc-dir problem when committing removed file to bzr References: <20090504223845.381524862E@rgr.rgrjr.com> X-Debbugs-No-Ack: yes In-Reply-To: (Glenn Morris's message of "Tue, 19 Jan 2010 22:58:54 -0500") Lines: 48 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-ICS-MailScanner-Information: Please send mail to helpdesk@ics.uci.edu or more information X-ICS-MailScanner-ID: o0K7G8AC012913 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.363, required 5, autolearn=disabled, ALL_TRUSTED -1.44, TW_BZ 0.08) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu X-Spam-Status: No X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 3214 Cc: 3214@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) Glenn Morris writes: > Just had what seems to be a same problem as this (bug#3214) with the > trunk from 2010-01-10. > > In the emacs admin/ directory, I did (from the command-line): > > bzr remove revdiff > > Then I edited the ChangeLog file, then did M-x vc-dir on the admin > directory. > > In the resulting buffer, the ChangeLog was marked as modified, and > revdiff as removed. > > I marked both files, hit `v', entered a log message, and tried to > commit. The vc-dir process finished with an error: > > Running bzr status ChangeLog in foreground... > Running bzr status ChangeLog...OK = 0 > Running bzr status revdiff in foreground... > vc-do-command: Running bzr status revdiff...FAILED (status 3) > Matches vc-do-command: Running bzr status revdiff...FAILED (... [-1-] We get to vc-do-command like this: vc-bzr-state -> vc-bzr-status -> vc-bzr-command -> vc-do-command vc-bzr-command is passed a 0 for OKSTATUS. but bzr status revdiff returns 3, that is why the message above is printed. Changing that 0 to 3 helps, but then vc-bzr-state prints "bzr: ERROR: Path(s) do not exist: revdiff". Maybe we can make vc-bzr-status ignore that message. I'd like to get a second opinion before making the 2 changes above (0->3 and ignore the error message). > I'm left with a vc-dir buffer which looks like: > > * up-to-date ChangeLog > * removed revdiff > > However, the commit to the repository did complete OK. The calls above occur after the checkin has been completed. From debbugs-submit-bounces@debbugs.gnu.org Sun Oct 15 06:34:44 2023 Received: (at 3214) by debbugs.gnu.org; 15 Oct 2023 10:34:45 +0000 Received: from localhost ([127.0.0.1]:51339 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrySK-0006f7-KN for submit@debbugs.gnu.org; Sun, 15 Oct 2023 06:34:44 -0400 Received: from mail-pf1-x432.google.com ([2607:f8b0:4864:20::432]:53344) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qrySI-0006et-NC for 3214@debbugs.gnu.org; Sun, 15 Oct 2023 06:34:43 -0400 Received: by mail-pf1-x432.google.com with SMTP id d2e1a72fcca58-6b5cac99cfdso1258401b3a.2 for <3214@debbugs.gnu.org>; Sun, 15 Oct 2023 03:34:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1697366052; x=1697970852; darn=debbugs.gnu.org; h=content-transfer-encoding:subject:from:cc:to:content-language :user-agent:mime-version:date:message-id:from:to:cc:subject:date :message-id:reply-to; bh=OPzNSHydKmcWXBbEaR2jfYKUyVVDbQ4PppLLB90J9sY=; b=gyLUlxQzgBHVeKYEwU4PvTFErzRGGMckGne983flFGmQCJ7MpsPB2zMfCI6g1Vt3mn bSk0hDhM7Ax195ZOs02dqkDCSpG22VEsuZofYbPc/zkWOHFk0sgC/+hMJJ1UgfX7Caje Lgz0bCeuuklfq5YVtStnyQWWvr9JS56HzC6CoKKOtnOMfGpOmEZ7VhtyPYVPoHNJDsE5 J1obckpn26gqcv4YIdtkdVrNjb8xRv5k6LaAi8fid4lFdjmmc22014j/ww0dMuuYO6+x J/kpUAHMLcAO4i1jr+S83VSiGBwIJ6AAT5pKUtfY5e3CqCLNNry8iGYMfkj3LtdGiawp +bMQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1697366052; x=1697970852; h=content-transfer-encoding:subject:from:cc:to:content-language :user-agent:mime-version:date:message-id:x-gm-message-state:from:to :cc:subject:date:message-id:reply-to; bh=OPzNSHydKmcWXBbEaR2jfYKUyVVDbQ4PppLLB90J9sY=; b=o+FUe3N2QT/DCNdyRUY2XhxxhlkOwTe08VrEsBAgqvNzySx5419rT4DBJ1nhupMw2n Hi7cQPnQ+abObSl249vjCK0ATY4GeWWJpc790kuEDuqME8bKZ2m8rGviwCz7XDo/lBSJ UJpp7MxOZ4IhSZ4TV7dg9V00tQwslSaBmKobnERmaASXlg/A/WY0OUI80FMFLJSJDhcY rc4u7ujK2n3a9r0epquRi8WSSTE9cDqecRLJ5po9e0wN5nhKC22iXM/s/4RalHqFW1rK n+QYX2qdjDTVtvNFPN0pzSZ7SqihyS2Y/x6jzk8RyfT7oOCXs/EMSQswiEpHvT9/sUES m5fg== X-Gm-Message-State: AOJu0Yw47HBD8Z60JIRIglJYCH/8XQ9vTE4PYIfpOBP/f7oqlV2RWTKY Da81zMgrSd/dqC2OFb8lq3g= X-Google-Smtp-Source: AGHT+IE8SpDaoIBp3u9mEjekFt97RNDksvkLtKc30KfGNnODaVm/N5d/rK2tEA7Z9kgO0MNrpaDT/Q== X-Received: by 2002:a17:902:e5c2:b0:1ca:86b:7ed3 with SMTP id u2-20020a170902e5c200b001ca086b7ed3mr4799638plf.40.1697366052496; Sun, 15 Oct 2023 03:34:12 -0700 (PDT) Received: from [192.168.0.234] ([152.168.142.156]) by smtp.gmail.com with ESMTPSA id z5-20020a1709027e8500b001c78446d65fsm6772152pla.113.2023.10.15.03.34.10 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sun, 15 Oct 2023 03:34:12 -0700 (PDT) Message-ID: Date: Sun, 15 Oct 2023 07:34:09 -0300 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-US To: rogers@rgrjr.com From: Mauro Aranda Subject: Re: bug#3214: 23.0.92; VC dir mode fails after commit when files are deleted Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 3214 Cc: rgm@gnu.org, 3214@debbugs.gnu.org, dann@ics.uci.edu X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Bob Rogers writes: >    To reproduce: > >    1.  Find or create a working copy of a repository, and identify a > file that you want to remove from the repo, call it "foo.text".  (I used > SVN, but the problem doesn't seem to be backend-dependent.)  You will > need to commit in order to trigger the bug, so be sure you really don't > mind getting rid of it. > >    2.  "emacs -Q" in the working copy. > >    3.  "C-x C-f foo.text RET".  The deleted file must be visited in > order to trigger the bug. > >    4.  Remove the file via the VC command-line tools, but don't commmit > yet.  (Don't use vc-delete-file, as that will also delete the buffer.) > >    5.  "C-x v d" to get VC dir mode in the other window. It should tag > foo.text as "removed".  (FWIW, if you do "C-x v d" first, you will see > bug #3213.) > >    6.  Type "v" on the foo.text line, then "C-c C-c" in the log entry > buffer to commit the change.  You should then get a "File foo.text no > longer exists!" error.  A sample backtrace is shown below. > I tried to reproduce this bug, but couldn't.  I tried with svn and with git, and didn't get an error. I also tried the recipe in Emacs 27.1 (the oldest one I have available here), and still wasn't able to reproduce it. Are you still seeing this? From debbugs-submit-bounces@debbugs.gnu.org Fri Oct 20 21:30:25 2023 Received: (at 3214) by debbugs.gnu.org; 21 Oct 2023 01:30:25 +0000 Received: from localhost ([127.0.0.1]:41916 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qu0or-0000Kv-Ba for submit@debbugs.gnu.org; Fri, 20 Oct 2023 21:30:25 -0400 Received: from mail-oa1-x2e.google.com ([2001:4860:4864:20::2e]:52592) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qu0oo-0000Kh-Os for 3214@debbugs.gnu.org; Fri, 20 Oct 2023 21:30:23 -0400 Received: by mail-oa1-x2e.google.com with SMTP id 586e51a60fabf-1e9ac336589so989958fac.1 for <3214@debbugs.gnu.org>; Fri, 20 Oct 2023 18:29:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rgrjr-com.20230601.gappssmtp.com; s=20230601; t=1697851789; x=1698456589; darn=debbugs.gnu.org; h=references:in-reply-to:subject:cc:to:date:message-id :content-transfer-encoding:mime-version:from:from:to:cc:subject:date :message-id:reply-to; bh=PCW4RoSqSC012E6DGc+3zBoZy46hsPMDgerb308Sr/o=; b=18lfXpnUkMOpdykbgXBI8JN7fem1OuK9Z2HgRQFiVRWE5gsD5U8/0ZD1g0lVf+LgsD 3Afg8/Op+PlUIcmewGtplzbtQAAdbXxMZFNCHpnGB1/jY7oh7e94cXxh2reHv53Tjcgv FsWfzgJ5BGmirdcxybT0jtdDxl6j2UOnr1bIrAr1QXiuAjhdKojfuFK4xuBiXoIL1+DG JBChwEqyqh/vAa3/OlWPaWgNPjqYdLfignJyA/kYGXBknqQ5Ioo8K8+XTdXkIWPgRxtS Qj4RKOmYSJkwrSQ1M01Ng/qMl2yuxjicVaFB3ZJXkp9nNqd6bZkdDVIFKFx0UFeGjfXE Omnw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1697851789; x=1698456589; h=references:in-reply-to:subject:cc:to:date:message-id :content-transfer-encoding:mime-version:from:x-gm-message-state:from :to:cc:subject:date:message-id:reply-to; bh=PCW4RoSqSC012E6DGc+3zBoZy46hsPMDgerb308Sr/o=; b=J5DVyJw7ZWWhPTW63fMlkZ4AWAIdY4d3TyC46oyBKOwatMbVoLwCHwzoSdDWPr2omD f51/iTt9GWCgjDHEd5gg+L6z11aIxEnDoo6x+gJbt9T6CdDp/kX9Bi3vmzqa4gpfIvnC 2A013iwsGAJtZ6NpoQNug5s8/WIz40CMujWv8p2E+K2RxSW6wbOIhBKw9fYHeLIWABP0 phGiwUAWvBGcjXcPhbQSDs86yypRi48NI6w+xkT6mptR1GZEwGxGCyegIR5CeYP7nDk7 BfjLCd9Us5PJa9kA40Baidu6VL/ZEVT4zhIXZfVJkpgPQv99tQIbx7F6zEG55/GOictE RW/A== X-Gm-Message-State: AOJu0YzdqeqnT3qHKu4xSfabjLkODIPIRGATzE8sglxnGMY+/enanhe3 jhJO1RRZXV0CX6qlDq5fAFE31w== X-Google-Smtp-Source: AGHT+IGhcbJL8Np+7egTfa0X1LMcL/80AFegwpfPxJeGcgawAiRskNX3ISJc+/kAX1cMCFrsrpfMlA== X-Received: by 2002:a05:6870:9a87:b0:1e9:97eb:15a with SMTP id hp7-20020a0568709a8700b001e997eb015amr4558263oab.36.1697851789616; Fri, 20 Oct 2023 18:29:49 -0700 (PDT) Received: from orion.rgrjr.com ([2600:1700:7c2c:e000::22]) by smtp.gmail.com with ESMTPSA id y73-20020a638a4c000000b0058958ea2aaesm2087492pgd.83.2023.10.20.18.29.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 20 Oct 2023 18:29:48 -0700 (PDT) From: Bob Rogers MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <25907.10635.288461.852330@orion.rgrjr.com> Date: Fri, 20 Oct 2023 18:29:47 -0700 To: Mauro Aranda Subject: Re: bug#3214: 23.0.92; VC dir mode fails after commit when files are deleted In-Reply-To: References: X-Mailer: VM 8.2.0b under 30.0.50 (x86_64-pc-linux-gnu) X-Spam-Score: -1.5 (-) X-Debbugs-Envelope-To: 3214 Cc: rgm@gnu.org, 3214@debbugs.gnu.org, dann@ics.uci.edu X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.5 (--) From: Mauro Aranda Date: Sun, 15 Oct 2023 07:34:09 -0300 I tried to reproduce this bug, but couldn't.  I tried with svn and with git, and didn't get an error. I also tried the recipe in Emacs 27.1 (the oldest one I have available here), and still wasn't able to reproduce it. Are you still seeing this? No, at least not in current master with git. Feel free to close it. (I'd totally forgotten about this.) -- Bob From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 21 06:22:03 2023 Received: (at 3214) by debbugs.gnu.org; 21 Oct 2023 10:22:03 +0000 Received: from localhost ([127.0.0.1]:42281 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qu97L-0000Qd-2P for submit@debbugs.gnu.org; Sat, 21 Oct 2023 06:22:03 -0400 Received: from mail-oa1-x34.google.com ([2001:4860:4864:20::34]:53320) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qu97I-0000Q9-Rl for 3214@debbugs.gnu.org; Sat, 21 Oct 2023 06:22:01 -0400 Received: by mail-oa1-x34.google.com with SMTP id 586e51a60fabf-1dd8304b980so1190994fac.2 for <3214@debbugs.gnu.org>; Sat, 21 Oct 2023 03:21:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1697883687; x=1698488487; darn=debbugs.gnu.org; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :from:to:cc:subject:date:message-id:reply-to; bh=UyYqaAYloDtIVFPBxy5BCGY/j0yj8ZNz1DjnJF+s2SA=; b=lxOwebUtGQQNVlozcUwOwGd8f/mfr4B7GC9rfhfISQ8xGG4Qy96Dul2f9rkoe//RX7 MV1L3cko5Tw3MMl8FrcbdRsd5ebuekjC/8VIyuQ6110XediaoIMUjC+DhpkGKqW+hRVD 7t8p68AUPsPDwRX0ZivYr8gZseC7NcI8LK0/gxpia36Sre7D8yRj2xEoC4ZH9LNfqEdj Vn0/zmnjgwJ4zZUsaKzTz/0G6reNBJPMi8eW8Nu67K7bDSQ68US7Qxpr82gUkDzPqkzp DJeif5py7ASPT62ZzeGzROgUhXeQLShb1DLrkzoHVset1VJIEqs6l0jF+9Z86jLrUSHA Lwtw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1697883687; x=1698488487; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=UyYqaAYloDtIVFPBxy5BCGY/j0yj8ZNz1DjnJF+s2SA=; b=WNRECAyKEwAX/Ro5SrK+xnVOZMZKrstpGlXLwO0lnm5ueRw1vQqxAgc/ON4tbfL7Ti ATDrB5stdgUvyhMi+m0Jc/whizB4t4Vfrt60hS3JitjgD0/MN9csacXkhghF6PpY4w1P qFsgHDJfNvFT2LDB9mafdjGe+WxSXP1pEzpmh8TCAUJ3gfYHImgPvskrsyVHUXI4idb+ GMCnIGxiH/hj6G0ZOBXOyP8g+9Jo+ciWnWfmZGA8xCiJZb7uMfbU2Bn8/JtKEsv1p2+/ 9GZJZ5vLJ6AiSytIYEo9d2ScRtjeCJrwULp4jM1ylcicTfBnoskiMH0mj5hzghaJdZ3A StmA== X-Gm-Message-State: AOJu0YycnHANzjYTM7QcnDvSKiXLlIO0tSq94546hXHmI2paxlzjqtGL TGMt1CP2Lt7TgCI+gB6aenw= X-Google-Smtp-Source: AGHT+IFReY5W+xTzqdVPyITQrpcZoyptTmVRBqkahVJHtjx26YqFELTXMzoHOS/1yaw0iWthD4Tx6g== X-Received: by 2002:a05:6871:5206:b0:1e9:f69a:12fe with SMTP id ht6-20020a056871520600b001e9f69a12femr5014959oac.59.1697883687241; Sat, 21 Oct 2023 03:21:27 -0700 (PDT) Received: from [192.168.0.234] ([152.168.142.156]) by smtp.gmail.com with ESMTPSA id t127-20020a625f85000000b006933e71956dsm3100663pfb.9.2023.10.21.03.21.25 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 21 Oct 2023 03:21:26 -0700 (PDT) Message-ID: <328ba9e0-a895-4c82-a384-13336ac07e59@gmail.com> Date: Sat, 21 Oct 2023 07:21:23 -0300 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: bug#3214: 23.0.92; VC dir mode fails after commit when files are deleted Content-Language: en-US To: Bob Rogers References: <25907.10635.288461.852330@orion.rgrjr.com> From: Mauro Aranda In-Reply-To: <25907.10635.288461.852330@orion.rgrjr.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 3214 Cc: rgm@gnu.org, 3214@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On 20/10/23 22:29, Bob Rogers wrote: >    From: Mauro Aranda >    Date: Sun, 15 Oct 2023 07:34:09 -0300 > >    I tried to reproduce this bug, but couldn't.  I tried with svn and with >    git, and didn't get an error. > >    I also tried the recipe in Emacs 27.1 (the oldest one I have available >    here), and still wasn't able to reproduce it. > >    Are you still seeing this? > > No, at least not in current master with git.  Feel free to close it. > (I'd totally forgotten about this.) > >                     -- Bob Thanks for checking.  I'm inclined to leave it open a while longer and see if anyone interested can reproduce it, maybe with some other backend. From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 21 06:37:25 2023 Received: (at 3214) by debbugs.gnu.org; 21 Oct 2023 10:37:25 +0000 Received: from localhost ([127.0.0.1]:42319 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qu9MD-00013B-Gq for submit@debbugs.gnu.org; Sat, 21 Oct 2023 06:37:25 -0400 Received: from mail-lf1-x12b.google.com ([2a00:1450:4864:20::12b]:58429) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qu9MA-00012u-F5 for 3214@debbugs.gnu.org; Sat, 21 Oct 2023 06:37:24 -0400 Received: by mail-lf1-x12b.google.com with SMTP id 2adb3069b0e04-507bd19eac8so2416650e87.0 for <3214@debbugs.gnu.org>; Sat, 21 Oct 2023 03:36:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1697884609; x=1698489409; darn=debbugs.gnu.org; h=content-transfer-encoding:cc:to:subject:message-id:date :mime-version:references:in-reply-to:from:from:to:cc:subject:date :message-id:reply-to; bh=9z5gPXpzKtBQBqJyEDPmlfoH8R24b930qwSmcSz8nZw=; b=XNlY1V63SZ6GMlr0s4ShQNsCoeeiveuxGngrcOVQmRCUJeJ1P5DPl8oQhqFNO/bjdG /Lp8y6ELBz+Tppi7c3Mhwu3QcXCO3i6jbzzESNF6p95dyzx6t4QCcIkqaMroWgVubLQm gOfrTMugIFFNl3UM8ZYs9dZ7mXKZNEQAtNu/2lRpL/I6g/36cahxgPU33okXsR5geF/s rZv9paleX/PNf/O7vune0FUVvs9/HNNzjLRKJ7wEUOM8c38FxWDzF+r/zm63IW+QaY3s XPo/nRKEDSgTwdB4oq82xNXMIAEB0yKsLWlvkcYBi9ZkBL9qucr2CaWy7Ck1liRxkuh5 555g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1697884609; x=1698489409; h=content-transfer-encoding:cc:to:subject:message-id:date :mime-version:references:in-reply-to:from:x-gm-message-state:from:to :cc:subject:date:message-id:reply-to; bh=9z5gPXpzKtBQBqJyEDPmlfoH8R24b930qwSmcSz8nZw=; b=o0chFx8F427XXuX6uOl8PpI3QxyrdDe4BP2LveAH+6g5LVjMuIgUxPC37My7D96CTC na/429u4Ond6xhSjeOOfUmmeSiOcoIxff54kGnSCWXFWsNLvcxBH34blFrsOd6wq1tSJ /UG5C/xK23+Ok5b6tJFtvSihmd/bpwOS72SQh81aUrqAKcE9MXZJnz1GVk1fkJXHcUCO 64boEjZ3DH/LNHz0nz9GsylfHJV79Hr6aqS5dVwZSSu/6VwAf/auaMVJ77HbQMeX2bPb wtZvcd29aZAhnuRQ4ElERO4f+dKVIRMyj/gRrvQhSsHh3IpDwdO1rLYBCda/wXvQMc3/ oDDA== X-Gm-Message-State: AOJu0YwzKpCQG5Gq1+x43jxuqkyiAcNpBdlwv+neTbEc+89vsU1SZYrg N6gjRugxpS7f3IObUJZ4+j7261hjCFL2dKE1pko= X-Google-Smtp-Source: AGHT+IEMxz+WkmP7/mHdSWKAu+VArxRdjvtucaoPnRy46q9i7ajOb2kZR7hj2PoyHecUBLo6hwRMD05o00wB3iarKYY= X-Received: by 2002:ac2:5147:0:b0:507:9777:a34a with SMTP id q7-20020ac25147000000b005079777a34amr2962158lfd.39.1697884608684; Sat, 21 Oct 2023 03:36:48 -0700 (PDT) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Sat, 21 Oct 2023 03:36:48 -0700 From: Stefan Kangas In-Reply-To: <328ba9e0-a895-4c82-a384-13336ac07e59@gmail.com> References: <25907.10635.288461.852330@orion.rgrjr.com> <328ba9e0-a895-4c82-a384-13336ac07e59@gmail.com> MIME-Version: 1.0 Date: Sat, 21 Oct 2023 03:36:48 -0700 Message-ID: Subject: Re: bug#3214: 23.0.92; VC dir mode fails after commit when files are deleted To: Mauro Aranda , Bob Rogers Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 3214 Cc: rgm@gnu.org, 3214@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 3214 + fixed thanks Mauro Aranda writes: > Thanks for checking.=C2=A0 I'm inclined to leave it open a while longer a= nd > see if anyone interested can reproduce it, maybe with some other > backend. I think we can probably close it, given that it's been open for 14 years already. If anyone wants to test with other backends, they will have 30 days to reply back before a closed bug is archived. BTW, thanks everyone for triaging and paying attention to these very old bug reports. That is much appreciated. From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 21 07:24:58 2023 Received: (at 3214) by debbugs.gnu.org; 21 Oct 2023 11:24:58 +0000 Received: from localhost ([127.0.0.1]:42393 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1quA6E-0005Gx-0g for submit@debbugs.gnu.org; Sat, 21 Oct 2023 07:24:58 -0400 Received: from mail-pj1-x1033.google.com ([2607:f8b0:4864:20::1033]:45148) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1quA6B-0005Gf-K9; Sat, 21 Oct 2023 07:24:56 -0400 Received: by mail-pj1-x1033.google.com with SMTP id 98e67ed59e1d1-27d0251d305so1132317a91.2; Sat, 21 Oct 2023 04:24:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1697887462; x=1698492262; darn=debbugs.gnu.org; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :from:to:cc:subject:date:message-id:reply-to; bh=9A+GoNrvaA2uVrKnjNrYC+/bhAOG3pX1KwLh7o15neo=; b=hEVtfVCdYCZ9rFLjOgbONEVvfFsbvMAgdZU4sGvc0oUVS/lZzmNMea71CYSw6GG2df sEfvqZ8lJC8d0wXX4nMWFwIvfU+9u/yYhWiWdl/Lr+CqXAUIVg2a1KrVM9EXk8mgwpot RIJ9u3Zm7k1NTzGFLD705+4hNTbqp9Xt2Mp45t/SdOW64sbp8HTXd9HmcUDywAQShrNF 6XhYsboDbF3wr0hBBVldKsF+qvxOvXO+doLQm07DXxW9sHv+FUj7PweLmV9DB66AUsWH 7GIwsVvlFodnUZ4v2h7JvEjthO7z9ZZFpzqm6WRUmMmeyyDVDCkngo6nu5dOiCEEJeVP dXMQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1697887462; x=1698492262; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=9A+GoNrvaA2uVrKnjNrYC+/bhAOG3pX1KwLh7o15neo=; b=LHAFFKPjr29P99YODEAiogKdCmnlhivjD/z1NOzBOTHMRadso7zl3l/S2rzeHRXGqm 5YPdyP05UDvQtQxD5sFRv6buzDqqL5QAxoVmyuTf2UxSOp2wc4/8cSifEUGNZsnxaPA7 +llWQ6Xi2JzeljBFO83eU4By7sQqe5M4zhZycgPImc/TO5h7iTEVQdfkv6g2Gu6GLH7e sHTnLjItiYylEsYCcj+mjyUjBO0QFCBmsC7EA3c4LCrx+76DBVjZndFLYJLVsREX4MlX wGmRMpfzK+KU6KmninoMdhVUcRMmK6qtVC0dJMHpZ4IePo2NQBsTTN+ihM1p8LX9XXlN siIg== X-Gm-Message-State: AOJu0YwQztAYMjFjwODTe2TrtoYhDSvQPRpo3Bt42EkRzclpuZDJTSTq MEq1u8zywxkgvJVOR8SXRJ0iYiuZsIoUKsG1 X-Google-Smtp-Source: AGHT+IHtgs2WEkEu64IS1x7XlW/feq993gjnld2U9WsdcO1+ZCpp10CNqRNLgD/s9qw4OF7KRVjBzA== X-Received: by 2002:a17:90a:a091:b0:274:9409:bbca with SMTP id r17-20020a17090aa09100b002749409bbcamr3306513pjp.3.1697887461827; Sat, 21 Oct 2023 04:24:21 -0700 (PDT) Received: from [192.168.0.234] ([152.168.142.156]) by smtp.gmail.com with ESMTPSA id ge13-20020a17090b0e0d00b00271c5811019sm2861073pjb.38.2023.10.21.04.24.18 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 21 Oct 2023 04:24:21 -0700 (PDT) Message-ID: Date: Sat, 21 Oct 2023 08:24:16 -0300 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: bug#3214: 23.0.92; VC dir mode fails after commit when files are deleted Content-Language: en-US To: Stefan Kangas , Bob Rogers References: <25907.10635.288461.852330@orion.rgrjr.com> <328ba9e0-a895-4c82-a384-13336ac07e59@gmail.com> From: Mauro Aranda In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 3214 Cc: rgm@gnu.org, 3214@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 3214 quit On 21/10/23 07:36, Stefan Kangas wrote: > tags 3214 + fixed > thanks > > Mauro Aranda writes: > >> Thanks for checking.  I'm inclined to leave it open a while longer and >> see if anyone interested can reproduce it, maybe with some other >> backend. > > I think we can probably close it, given that it's been open for 14 years > already.  If anyone wants to test with other backends, they will have 30 > days to reply back before a closed bug is archived. > No objections from me.  Everyone, feel free to reopen if you find a way to reproduce it. From unknown Sat Aug 16 21:17:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 18 Nov 2023 12:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator