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
commit0c5d4306a8f3d5be4b998d37c0b996b49b51807c (patch)
treeedf129cb52d20f92417a39ffaf5bf5e716a710d8
parent5a082b06375db09a11902b7fde29bcccd7f38201 (diff)
downloademacs-0c5d4306a8f3d5be4b998d37c0b996b49b51807c.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 4a32ed01643..eb3caeffcab 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")