aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond2008-01-01 16:39:59 +0000
committerEric S. Raymond2008-01-01 16:39:59 +0000
commitabc61762a50380ae8dfec17488d694ae3bb8c65f (patch)
tree6f5ee64eb008692f80620f87d3bc6a2b1cf0f80c
parentc59a24425bd684d22213781c70c2a8a5b01b3aa0 (diff)
downloademacs-abc61762a50380ae8dfec17488d694ae3bb8c65f.tar.gz
emacs-abc61762a50380ae8dfec17488d694ae3bb8c65f.zip
* vc-svn.el (vc-svn-parse-status): Set the 'unregisted property correctly.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/vc-svn.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 582cfb115fc..bf1b6f91811 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
12008-01-01 Eric S. Raymond <esr@snark.thyrsus.com> 12008-01-01 Eric S. Raymond <esr@snark.thyrsus.com>
2 2
3 * vc-svn.el (vc-svn-parse-status): Set the 'unregisted property
4 correctly.
5
3 * vc.el (vc-dired-hook): Speed tuning. Replace a vc-backend call 6 * vc.el (vc-dired-hook): Speed tuning. Replace a vc-backend call
4 with vc-state. 7 with vc-state.
5 8
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 96bc1284f76..6fcc1239fb3 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -548,7 +548,7 @@ information about FILENAME and return its status."
548 (goto-char (point-min)) 548 (goto-char (point-min))
549 (while (re-search-forward 549 (while (re-search-forward
550 ;; Ignore the files with status X. 550 ;; Ignore the files with status X.
551 "^\\? +|^[ ACDGIMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\) +" nil t) 551 "^\\(\\?\\|[ ACDGIMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\)\\) +" nil t)
552 ;; If the username contains spaces, the output format is ambiguous, 552 ;; If the username contains spaces, the output format is ambiguous,
553 ;; so don't trust the output's filename unless we have to. 553 ;; so don't trust the output's filename unless we have to.
554 (setq file (or filename 554 (setq file (or filename