diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2012-02-21 15:48:13 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2012-02-21 15:48:13 +0100 |
commit | 3fe58f4f9ce7c49006b8e5305711ab6a90215091 (patch) | |
tree | d80cd3d65b19a6483256b251cb44b97c1bc8da0f /lisp/newcomment.el | |
parent | a59225b146620b11455b614244ceb6d02339a032 (diff) | |
download | emacs-3fe58f4f9ce7c49006b8e5305711ab6a90215091.tar.gz |
lisp/newcomment.el (uncomment-region-default): Remove unused binding.
Diffstat (limited to 'lisp/newcomment.el')
-rw-r--r-- | lisp/newcomment.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el index 16282af6409..41b5041ded5 100644 --- a/lisp/newcomment.el +++ b/lisp/newcomment.el @@ -224,7 +224,7 @@ ALIGN specifies that the `comment-end' markers should be aligned. /* bli */ if `comment-end' is empty, this has no effect, unless EXTRA is also set, in which case the comment gets wrapped in a box. - + EXTRA specifies that an extra line should be used before and after the region to comment (to put the `comment-end' and `comment-start'). e.g. in C it comments regions as @@ -872,8 +872,8 @@ comment markers." (when (and sre (looking-at (concat "\\s-*\n\\s-*" srei))) (goto-char (match-end 0))) (if (null arg) (delete-region (point-min) (point)) - (let* ((opoint (point-marker)) - (nchar (skip-syntax-backward " "))) + (let ((opoint (point-marker))) + (skip-syntax-backward " ") (delete-char (- numarg)) (unless (and (not (bobp)) (save-excursion (goto-char (point-min)) |