diff options
| author | Olof Ohlsson Sax | 2010-10-03 12:43:54 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-10-03 12:43:54 -0700 |
| commit | 8686a5eafc46055d39c30104ebe209a100940f1c (patch) | |
| tree | 1c5fa277c80bbba45eecee689f8ba7b2aab0253f | |
| parent | a79b0f2863d2222fed175f6c6b3d535590c59558 (diff) | |
| download | emacs-8686a5eafc46055d39c30104ebe209a100940f1c.tar.gz emacs-8686a5eafc46055d39c30104ebe209a100940f1c.zip | |
* lisp/vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152)
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc-svn.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index acc2e0c382f..84162ef502d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-10-03 Olof Ohlsson Sax <olof.ohlsson.sax@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * vc-svn.el (vc-svn-merge-news): Use --non-interactive. (Bug#7152) | ||
| 4 | |||
| 1 | 2010-10-03 Leo <sdl.web@gmail.com> | 5 | 2010-10-03 Leo <sdl.web@gmail.com> |
| 2 | 6 | ||
| 3 | * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only | 7 | * dnd.el (dnd-get-local-file-name): If MUST-EXIST is non-nil, only |
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 34ebc3bb949..7b95c2a214d 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el | |||
| @@ -373,7 +373,7 @@ The changes are between FIRST-VERSION and SECOND-VERSION." | |||
| 373 | (message "Merging changes into %s..." file) | 373 | (message "Merging changes into %s..." file) |
| 374 | ;; (vc-file-setprop file 'vc-working-revision nil) | 374 | ;; (vc-file-setprop file 'vc-working-revision nil) |
| 375 | (vc-file-setprop file 'vc-checkout-time 0) | 375 | (vc-file-setprop file 'vc-checkout-time 0) |
| 376 | (vc-svn-command nil 0 file "update") | 376 | (vc-svn-command nil 0 file "--non-interactive" "update") ; see bug#7152 |
| 377 | ;; Analyze the merge result reported by SVN, and set | 377 | ;; Analyze the merge result reported by SVN, and set |
| 378 | ;; file properties accordingly. | 378 | ;; file properties accordingly. |
| 379 | (with-current-buffer (get-buffer "*vc*") | 379 | (with-current-buffer (get-buffer "*vc*") |