* lisp/newcomment.el (comment-kill): Prefix "unused" local.
authorGlenn Morris <rgm@gnu.org>
Wed, 11 May 2011 16:37:03 +0000 (09:37 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 11 May 2011 16:37:03 +0000 (09:37 -0700)
lisp/ChangeLog
lisp/newcomment.el

index ece0311..b0ed7bf 100644 (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):
index d3530b1..f1243f1 100644 (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)))