* lisp/newcomment.el (comment-kill): Prefix "unused" local.

This commit is contained in:
Glenn Morris 2011-05-11 09:37:03 -07:00
parent 4f306b0fa7
commit f64049c602
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2011-05-11 Glenn Morris <rgm@gnu.org>
* newcomment.el (comment-kill): Prefix "unused" local.
* term/w32console.el (get-screen-color): Declare.
* emacs-lisp/bytecomp.el (byte-compile-arglist-warn):

View file

@ -722,7 +722,7 @@ With any other arg, set comment column to indentation of the previous comment
With prefix ARG, kill comments on that many lines starting with this one."
(interactive "P")
(comment-normalize-vars)
(dotimes (i (prefix-numeric-value arg))
(dotimes (_i (prefix-numeric-value arg))
(save-excursion
(beginning-of-line)
(let ((cs (comment-search-forward (line-end-position) t)))