Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e7c1dca8
Commit
e7c1dca8
authored
Jan 22, 2011
by
Chong Yidong
Browse files
* vc/diff.el (diff-sentinel): Doc fix (Bug#7682).
parent
4d0143e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/vc/diff.el
lisp/vc/diff.el
+3
-1
No files found.
lisp/ChangeLog
View file @
e7c1dca8
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).
...
...
lisp/vc/diff.el
View file @
e7c1dca8
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment