diff options
author | Glenn Morris <rgm@gnu.org> | 2010-01-27 21:54:48 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-01-27 21:54:48 -0800 |
commit | c85a168b398d680a6e67c2e4229a849889722c64 (patch) | |
tree | 8751b82d7ee5e11c4d80e36b9635b3c57e3982d8 | |
parent | c6265c1062533d6a89afa70d73964bd175df666f (diff) | |
download | emacs-c85a168b398d680a6e67c2e4229a849889722c64.tar.gz |
* vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/vc-svn.el | 1 |
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") |