diff options
author | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-01-01 16:39:59 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@snark.thyrsus.com> | 2008-01-01 16:39:59 +0000 |
commit | abc61762a50380ae8dfec17488d694ae3bb8c65f (patch) | |
tree | 6f5ee64eb008692f80620f87d3bc6a2b1cf0f80c /lisp/vc-svn.el | |
parent | c59a24425bd684d22213781c70c2a8a5b01b3aa0 (diff) | |
download | emacs-abc61762a50380ae8dfec17488d694ae3bb8c65f.tar.gz |
* vc-svn.el (vc-svn-parse-status): Set the 'unregisted property correctly.
Diffstat (limited to 'lisp/vc-svn.el')
-rw-r--r-- | lisp/vc-svn.el | 2 |
1 files changed, 1 insertions, 1 deletions
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." (goto-char (point-min)) (while (re-search-forward ;; Ignore the files with status X. - "^\\? +|^[ ACDGIMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\) +" nil t) + "^\\(\\?\\|[ ACDGIMR!~][ MC][ L][ +][ S]..\\([ *]\\) +\\([-0-9]+\\) +\\([0-9?]+\\) +\\([^ ]+\\)\\) +" nil t) ;; If the username contains spaces, the output format is ambiguous, ;; so don't trust the output's filename unless we have to. (setq file (or filename |