diff options
| author | Glenn Morris | 2011-05-11 09:37:03 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-05-11 09:37:03 -0700 |
| commit | f64049c6026b73896a97ae6d1c8e312b2e56a7e9 (patch) | |
| tree | 37e032db78c84c98860e05056f27771b2efdf100 | |
| parent | 4f306b0fa712b624f079c41d948ed8f51ab27607 (diff) | |
| download | emacs-f64049c6026b73896a97ae6d1c8e312b2e56a7e9.tar.gz emacs-f64049c6026b73896a97ae6d1c8e312b2e56a7e9.zip | |
* lisp/newcomment.el (comment-kill): Prefix "unused" local.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/newcomment.el | 2 |
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 @@ | |||
| 1 | 2011-05-11 Glenn Morris <rgm@gnu.org> | 1 | 2011-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 | |||
| 722 | With prefix ARG, kill comments on that many lines starting with this one." | 722 | With 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))) |