aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2009-08-25 08:49:24 +0000
committerMichael Albinus2009-08-25 08:49:24 +0000
commit9fb5c929d3c8e9e83d28d2caeeb26bed3cca5f79 (patch)
treee9e8b9fcc8e45fe98638c01fbc83e097fc03e06f
parentb967bd19147a586462cbef9c921df3f1980f2f87 (diff)
downloademacs-9fb5c929d3c8e9e83d28d2caeeb26bed3cca5f79.tar.gz
emacs-9fb5c929d3c8e9e83d28d2caeeb26bed3cca5f79.zip
* vc-arch.el (vc-arch-diff): Let-bind `process-file-side-effects' with nil.
-rw-r--r--lisp/vc-arch.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el
index f9ead184731..68146bcf1f7 100644
--- a/lisp/vc-arch.el
+++ b/lisp/vc-arch.el
@@ -456,7 +456,8 @@ CALLBACK expects (ENTRIES &optional MORE-TO-COME); see
456 (setq newvers nil)) 456 (setq newvers nil))
457 (if newvers 457 (if newvers
458 (error "Diffing specific revisions not implemented") 458 (error "Diffing specific revisions not implemented")
459 (let* ((async (not vc-disable-async-diff)) 459 (let* (process-file-side-effects
460 (async (not vc-disable-async-diff))
460 ;; Run the command from the root dir. 461 ;; Run the command from the root dir.
461 (default-directory (vc-arch-root file)) 462 (default-directory (vc-arch-root file))
462 (status 463 (status