(vc-svn-after-dir-status): Fix regexp. (Bug#4741)

This commit is contained in:
Dan Nicolaescu 2009-12-10 14:24:42 +00:00
parent c7dcb0f118
commit f1943c1ba5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-12-10 Dan Nicolaescu <dann@ics.uci.edu>
* vc-svn.el (vc-svn-after-dir-status): Fix regexp. (Bug#4741)
2009-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
Let loaddefs.el adjust to changes in autoload-excludes (bug#5162).

View file

@ -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)