summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-01-27 21:54:48 -0800
committerGlenn Morris <rgm@gnu.org>2010-01-27 21:54:48 -0800
commitc85a168b398d680a6e67c2e4229a849889722c64 (patch)
tree8751b82d7ee5e11c4d80e36b9635b3c57e3982d8
parentc6265c1062533d6a89afa70d73964bd175df666f (diff)
downloademacs-c85a168b398d680a6e67c2e4229a849889722c64.tar.gz
* vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/vc-svn.el1
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f9f28e814b8..e92c89fa2ea 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2010-01-28 Glenn Morris <rgm@gnu.org>
+ * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
+
* log-edit.el (log-edit-strip-single-file-name): Add missing
:safe, :group, and :version tags.
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index 658d4528f68..9f992fdd1c8 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -330,6 +330,7 @@ This is only possible if SVN is responsible for FILE's directory.")
;; Check out a particular version (or recreate the file).
(vc-file-setprop file 'vc-working-revision nil)
(apply 'vc-svn-command nil 0 file
+ "--non-interactive" ; bug#4280
"update"
(cond
((null rev) "-rBASE")