; Fix warnings

* lisp/vc/diff-mode.el (diff-kill-applied-hunks):
Fix unused variable warnings.
This commit is contained in:
Dmitry Gutov 2015-11-14 03:03:58 +02:00
parent 7126e9a40b
commit 138ad3d93b

View file

@ -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)