diff options
Diffstat (limited to 'lisp/vc/diff.el')
| -rw-r--r-- | lisp/vc/diff.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/diff.el b/lisp/vc/diff.el index 0a853c5d902..b29f9c10b18 100644 --- a/lisp/vc/diff.el +++ b/lisp/vc/diff.el | |||
| @@ -60,7 +60,9 @@ | |||
| 60 | (defun diff-sentinel (code &optional old-temp-file new-temp-file) | 60 | (defun diff-sentinel (code &optional old-temp-file new-temp-file) |
| 61 | "Code run when the diff process exits. | 61 | "Code run when the diff process exits. |
| 62 | CODE is the exit code of the process. It should be 0 only if no diffs | 62 | CODE is the exit code of the process. It should be 0 only if no diffs |
| 63 | were found." | 63 | were found. |
| 64 | If optional args OLD-TEMP-FILE and/or NEW-TEMP-FILE are non-nil, | ||
| 65 | delete the temporary files so named." | ||
| 64 | (if old-temp-file (delete-file old-temp-file)) | 66 | (if old-temp-file (delete-file old-temp-file)) |
| 65 | (if new-temp-file (delete-file new-temp-file)) | 67 | (if new-temp-file (delete-file new-temp-file)) |
| 66 | (save-excursion | 68 | (save-excursion |