diff options
| author | Eric S. Raymond | 2008-01-01 16:39:59 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 2008-01-01 16:39:59 +0000 |
| commit | abc61762a50380ae8dfec17488d694ae3bb8c65f (patch) | |
| tree | 6f5ee64eb008692f80620f87d3bc6a2b1cf0f80c | |
| parent | c59a24425bd684d22213781c70c2a8a5b01b3aa0 (diff) | |
| download | emacs-abc61762a50380ae8dfec17488d694ae3bb8c65f.tar.gz emacs-abc61762a50380ae8dfec17488d694ae3bb8c65f.zip | |
* vc-svn.el (vc-svn-parse-status): Set the 'unregisted property correctly.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/vc-svn.el | 2 |
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 @@ | |||
| 1 | 2008-01-01 Eric S. Raymond <esr@snark.thyrsus.com> | 1 | 2008-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 |