From: Glenn Morris Date: Thu, 28 Jan 2010 05:54:48 +0000 (-0800) Subject: * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280) X-Git-Tag: emacs-pretest-23.1.92~22 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c85a168b398d680a6e67c2e4229a849889722c64;p=emacs.git * vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280) --- 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 + * 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")