]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc-svn.el (vc-svn-update): Use "svn --non-interactive". (Bug#4280)
authorGlenn Morris <rgm@gnu.org>
Thu, 28 Jan 2010 05:54:48 +0000 (21:54 -0800)
committerGlenn Morris <rgm@gnu.org>
Thu, 28 Jan 2010 05:54:48 +0000 (21:54 -0800)
lisp/ChangeLog
lisp/vc-svn.el

index f9f28e814b87c51e3e9e0837ce27db948d5752b4..e92c89fa2ea9b73b977cab69e1ed098acf9383d3 100644 (file)
@@ -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.
 
index 658d4528f685b90b2d9c89e9ea2f6730640cd569..9f992fdd1c87397f4e69dc812bc35eb9a53940f9 100644 (file)
@@ -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")