projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7126e9a
)
; Fix warnings
author
Dmitry Gutov
<dgutov@yandex.ru>
Sat, 14 Nov 2015 01:03:58 +0000
(
03:03
+0200)
committer
Dmitry Gutov
<dgutov@yandex.ru>
Sat, 14 Nov 2015 01:03:58 +0000
(
03:03
+0200)
* lisp/vc/diff-mode.el (diff-kill-applied-hunks):
Fix unused variable warnings.
lisp/vc/diff-mode.el
patch
|
blob
|
history
diff --git
a/lisp/vc/diff-mode.el
b/lisp/vc/diff-mode.el
index 464e3754eb94b79557def8281e1e88758772da9b..f4d7fe7d9aa0d2614c00a595164bdd807d5dfc90 100644
(file)
--- a/
lisp/vc/diff-mode.el
+++ b/
lisp/vc/diff-mode.el
@@
-1821,7
+1821,7
@@
With a prefix argument, try to REVERSE the hunk."
"Kill all hunks that have already been applied starting at point."
(interactive)
(while (not (eobp))
- (pcase-let ((`(,
buf ,line-offset ,pos ,
src ,_dst ,switched)
+ (pcase-let ((`(,
_buf ,line-offset ,_pos ,_
src ,_dst ,switched)
(diff-find-source-location nil nil)))
(if (and line-offset switched)
(diff-hunk-kill)