aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc-svn.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 800fb5a0571..65556e2eb65 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-01-20 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc-svn.el (vc-svn-registered): Make it work for non-existent
4 files.
5
12008-01-20 Martin Rudalics <rudalics@gmx.at> 62008-01-20 Martin Rudalics <rudalics@gmx.at>
2 7
3 * repeat.el (repeat-undo-count): New variable. 8 * repeat.el (repeat-undo-count): New variable.
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index b3db2df7f69..368d9f36166 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -132,8 +132,8 @@ If you want to force an empty list of arguments, use t."
132 ;; an `error' by vc-do-command. 132 ;; an `error' by vc-do-command.
133 (error nil)))) 133 (error nil))))
134 (when (eq 0 status) 134 (when (eq 0 status)
135 (not (memq (vc-svn-parse-status file) 135 (let ((parsed (vc-svn-parse-status file)))
136 '(ignored unregistered)))))))) 136 (and parsed (not (memq parsed '(ignored unregistered))))))))))
137 137
138(defun vc-svn-state (file &optional localp) 138(defun vc-svn-state (file &optional localp)
139 "SVN-specific version of `vc-state'." 139 "SVN-specific version of `vc-state'."