aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-05-11 09:37:03 -0700
committerGlenn Morris2011-05-11 09:37:03 -0700
commitf64049c6026b73896a97ae6d1c8e312b2e56a7e9 (patch)
tree37e032db78c84c98860e05056f27771b2efdf100
parent4f306b0fa712b624f079c41d948ed8f51ab27607 (diff)
downloademacs-f64049c6026b73896a97ae6d1c8e312b2e56a7e9.tar.gz
emacs-f64049c6026b73896a97ae6d1c8e312b2e56a7e9.zip
* lisp/newcomment.el (comment-kill): Prefix "unused" local.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/newcomment.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ece031119d3..b0ed7bf12bd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12011-05-11 Glenn Morris <rgm@gnu.org> 12011-05-11 Glenn Morris <rgm@gnu.org>
2 2
3 * newcomment.el (comment-kill): Prefix "unused" local.
4
3 * term/w32console.el (get-screen-color): Declare. 5 * term/w32console.el (get-screen-color): Declare.
4 6
5 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn): 7 * emacs-lisp/bytecomp.el (byte-compile-arglist-warn):
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index d3530b1be3e..f1243f158a5 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -722,7 +722,7 @@ With any other arg, set comment column to indentation of the previous comment
722With prefix ARG, kill comments on that many lines starting with this one." 722With prefix ARG, kill comments on that many lines starting with this one."
723 (interactive "P") 723 (interactive "P")
724 (comment-normalize-vars) 724 (comment-normalize-vars)
725 (dotimes (i (prefix-numeric-value arg)) 725 (dotimes (_i (prefix-numeric-value arg))
726 (save-excursion 726 (save-excursion
727 (beginning-of-line) 727 (beginning-of-line)
728 (let ((cs (comment-search-forward (line-end-position) t))) 728 (let ((cs (comment-search-forward (line-end-position) t)))