From f1943c1ba5cd799e4b24542ef2c0089a42542d69 Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Thu, 10 Dec 2009 14:24:42 +0000 Subject: [PATCH] (vc-svn-after-dir-status): Fix regexp. (Bug#4741) --- lisp/ChangeLog | 4 ++++ lisp/vc-svn.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ed1a708a29d..d455328a9e1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-12-10 Dan Nicolaescu + + * vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741) + 2009-12-10 Stefan Monnier Let loaddefs.el adjust to changes in autoload-excludes (bug#5162). diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 3c7e2730df9..1176cdb7693 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el @@ -166,7 +166,7 @@ want to force an empty list of arguments, use t." (?? . unregistered) ;; This is what vc-svn-parse-status does. (?~ . edited))) - (re (if remote "^\\(.\\)..... \\([ *]\\) +\\(?:[-0-9]+\\)? \\(.*\\)$" + (re (if remote "^\\(.\\)...... \\([ *]\\) +\\(?:[-0-9]+\\)? \\(.*\\)$" ;; Subexp 2 is a dummy in this case, so the numbers match. "^\\(.\\)....\\(.\\) \\(.*\\)$")) result) -- 2.39.5