From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: ams@gnu.org (Alfred M. Szmidt) Newsgroups: gmane.emacs.devel Subject: vc-svn and locally removed files Date: Sat, 02 Sep 2017 14:16:29 -0400 Message-ID: NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1504376229 26812 195.159.176.226 (2 Sep 2017 18:17:09 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sat, 2 Sep 2017 18:17:09 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 02 20:16:55 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1doCyJ-0005fU-9Z for ged-emacs-devel@m.gmane.org; Sat, 02 Sep 2017 20:16:43 +0200 Original-Received: from localhost ([::1]:42549 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doCyQ-0005qC-64 for ged-emacs-devel@m.gmane.org; Sat, 02 Sep 2017 14:16:50 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43189) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doCy9-0005mP-Sz for emacs-devel@gnu.org; Sat, 02 Sep 2017 14:16:38 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1doCy5-0005c2-E5 for emacs-devel@gnu.org; Sat, 02 Sep 2017 14:16:33 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:54531) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1doCy5-0005br-AY for emacs-devel@gnu.org; Sat, 02 Sep 2017 14:16:29 -0400 Original-Received: from ams by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1doCy5-0003t1-5G for emacs-devel@gnu.org; Sat, 02 Sep 2017 14:16:29 -0400 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:217903 Archived-At: If you locally remove a file from the file system they don't show up at all in vc-dired; this fixes that -- I'm not entierly sure if this is right, it does work on my side as I would expect. 2017-09-02 Alfred M. Szmidt (tiny change) * lisp/vc/vc-svn.el (vc-svn-after-dir-status): List files marked with ?! as needs-update. diff --git a/lisp/vc/vc-svn.el b/lisp/vc/vc-svn.el index db16eb2..d63e67a 100644 --- a/lisp/vc/vc-svn.el +++ b/lisp/vc/vc-svn.el @@ -184,6 +184,7 @@ vc-svn-after-dir-status (?M . edited) (?D . removed) (?R . removed) + (?! . needs-update) (?? . unregistered) ;; This is what vc-svn-parse-status does. (?~ . edited)))