diff options
| -rw-r--r-- | lisp/vc-svn.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el index 553024f636d..f783066b39b 100644 --- a/lisp/vc-svn.el +++ b/lisp/vc-svn.el | |||
| @@ -372,7 +372,8 @@ The changes are between FIRST-VERSION and SECOND-VERSION." | |||
| 372 | (if vc-svn-diff-switches | 372 | (if vc-svn-diff-switches |
| 373 | (vc-switches 'SVN 'diff) | 373 | (vc-switches 'SVN 'diff) |
| 374 | (list "-x" (mapconcat 'identity (vc-switches nil 'diff) " ")))) | 374 | (list "-x" (mapconcat 'identity (vc-switches nil 'diff) " ")))) |
| 375 | (async (and (vc-stay-local-p file) | 375 | (async (and (not vc-disable-async-diff) |
| 376 | (vc-stay-local-p file) | ||
| 376 | (or oldvers newvers) ; Svn diffs those locally. | 377 | (or oldvers newvers) ; Svn diffs those locally. |
| 377 | (fboundp 'start-process)))) | 378 | (fboundp 'start-process)))) |
| 378 | (apply 'vc-svn-command buffer | 379 | (apply 'vc-svn-command buffer |