diff options
| author | Lars Ingebrigtsen | 2021-05-31 10:24:23 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-05-31 10:24:23 +0200 |
| commit | 9c8bef5134b054e7958c33b9bd332a125fc7121b (patch) | |
| tree | 5d72c04cb16e280c35658ad06b35d1b59a083656 | |
| parent | d51e6af9a70fac29881edf4e303d4f1ef4ec2b4a (diff) | |
| download | emacs-9c8bef5134b054e7958c33b9bd332a125fc7121b.tar.gz emacs-9c8bef5134b054e7958c33b9bd332a125fc7121b.zip | |
Remove messaging in ediff-make-diff2-buffer
* lisp/vc/ediff-diff.el (ediff-make-diff2-buffer): Remove message
that's often misleading when diffing buffers (that may be unsaved)
(bug#13091).
| -rw-r--r-- | lisp/vc/ediff-diff.el | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/vc/ediff-diff.el b/lisp/vc/ediff-diff.el index 270c99ef1fa..0965e888f06 100644 --- a/lisp/vc/ediff-diff.el +++ b/lisp/vc/ediff-diff.el | |||
| @@ -231,10 +231,7 @@ one optional arguments, diff-number to refine.") | |||
| 231 | (sit-for 2) | 231 | (sit-for 2) |
| 232 | ;; 1 is an error exit code | 232 | ;; 1 is an error exit code |
| 233 | 1) | 233 | 1) |
| 234 | (t (message "Computing differences between %s and %s ..." | 234 | (t ;; this erases the diff buffer automatically |
| 235 | (file-name-nondirectory file1) | ||
| 236 | (file-name-nondirectory file2)) | ||
| 237 | ;; this erases the diff buffer automatically | ||
| 238 | (ediff-exec-process ediff-diff-program | 235 | (ediff-exec-process ediff-diff-program |
| 239 | diff-buffer | 236 | diff-buffer |
| 240 | 'synchronize | 237 | 'synchronize |