]> git.eshelyaron.com Git - emacs.git/commitdiff
* vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 22 Jan 2011 20:15:24 +0000 (15:15 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 22 Jan 2011 20:15:24 +0000 (15:15 -0500)
lisp/ChangeLog
lisp/vc/diff.el

index ab6c5c8ee634eb6aaf5a88b32fd3df89ec892544..7ebed843371eb3764c2a3c4c629522af522bafa3 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-22  Chong Yidong  <cyd@stupidchicken.com>
+
+       * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
+
 2011-01-22  Jari Aalto  <jari.aalto@cante.net>
 
        * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).
index 0a853c5d9024eea9128d3943888a0db354285bd8..b29f9c10b18159da02fccf98a086fd5d884400a3 100644 (file)
@@ -60,7 +60,9 @@
 (defun diff-sentinel (code &optional old-temp-file new-temp-file)
   "Code run when the diff process exits.
 CODE is the exit code of the process.  It should be 0 only if no diffs
-were found."
+were found.
+If optional args OLD-TEMP-FILE and/or NEW-TEMP-FILE are non-nil,
+delete the temporary files so named."
   (if old-temp-file (delete-file old-temp-file))
   (if new-temp-file (delete-file new-temp-file))
   (save-excursion