diff options
| author | Eric S. Raymond | 2014-12-01 22:56:01 -0500 |
|---|---|---|
| committer | Eric S. Raymond | 2014-12-01 22:56:01 -0500 |
| commit | ea99f8c1ab8e97a54116e50157dd4bd6f1247b91 (patch) | |
| tree | ac425d468c2427b511d4d8f188c1758b2d7ede66 | |
| parent | 7d2110560e17744d8a1969b1a3df6040f7e90440 (diff) | |
| download | emacs-ea99f8c1ab8e97a54116e50157dd4bd6f1247b91.tar.gz emacs-ea99f8c1ab8e97a54116e50157dd4bd6f1247b91.zip | |
Fix minor bug introduced in 'Terminate vc-disable-async-diff'
| -rw-r--r-- | lisp/vc/vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 40e4211c6e4..9e6b049e084 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el | |||
| @@ -1714,7 +1714,7 @@ Return t if the buffer had changes, nil otherwise." | |||
| 1714 | ;; We regard this as "changed". | 1714 | ;; We regard this as "changed". |
| 1715 | ;; Diff it against /dev/null. | 1715 | ;; Diff it against /dev/null. |
| 1716 | (apply 'vc-do-command buffer | 1716 | (apply 'vc-do-command buffer |
| 1717 | (async 'async 1) "diff" file | 1717 | (if async 'async 1) "diff" file |
| 1718 | (append (vc-switches nil 'diff) '("/dev/null")))))) | 1718 | (append (vc-switches nil 'diff) '("/dev/null")))))) |
| 1719 | (setq files (nreverse filtered)))) | 1719 | (setq files (nreverse filtered)))) |
| 1720 | (vc-call-backend (car vc-fileset) 'diff files async rev1 rev2 buffer) | 1720 | (vc-call-backend (car vc-fileset) 'diff files async rev1 rev2 buffer) |