emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r102944: * vc/diff.el (diff-sentinel)


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102944: * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
Date: Sat, 22 Jan 2011 15:15:24 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102944
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sat 2011-01-22 15:15:24 -0500
message:
  * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
modified:
  lisp/ChangeLog
  lisp/vc/diff.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-01-22 20:12:51 +0000
+++ b/lisp/ChangeLog    2011-01-22 20:15:24 +0000
@@ -1,3 +1,7 @@
+2011-01-22  Chong Yidong  <address@hidden>
+
+       * vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
+
 2011-01-22  Jari Aalto  <address@hidden>
 
        * play/landmark.el: Change `lm-' prefix to `landmark-' (Bug#7672).

=== modified file 'lisp/vc/diff.el'
--- a/lisp/vc/diff.el   2011-01-14 17:18:41 +0000
+++ b/lisp/vc/diff.el   2011-01-22 20:15:24 +0000
@@ -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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]