aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/newcomment.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index 610831bcff0..ec294883c4a 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -1,12 +1,12 @@
1;;; newcomment.el --- (un)comment regions of buffers 1;;; newcomment.el --- (un)comment regions of buffers
2 2
3;; Copyright (C) 1999-2000 Free Software Foundation Inc. 3;; Copyright (C) 1999, 2000 Free Software Foundation Inc.
4 4
5;; Author: code extracted from Emacs-20's simple.el 5;; Author: code extracted from Emacs-20's simple.el
6;; Maintainer: Stefan Monnier <monnier@cs.yale.edu> 6;; Maintainer: Stefan Monnier <monnier@cs.yale.edu>
7;; Keywords: comment uncomment 7;; Keywords: comment uncomment
8;; Version: $Name: $ 8;; Version: $Name: $
9;; Revision: $Id: newcomment.el,v 1.25 2000/11/21 21:31:16 monnier Exp $ 9;; Revision: $Id: newcomment.el,v 1.26 2000/11/29 05:11:01 monnier Exp $
10 10
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12 12
@@ -788,7 +788,7 @@ rather than at left margin."
788;;;###autoload 788;;;###autoload
789(defun comment-region (beg end &optional arg) 789(defun comment-region (beg end &optional arg)
790 "Comment or uncomment each line in the region. 790 "Comment or uncomment each line in the region.
791With just \\[universal-prefix] prefix arg, uncomment each line in region BEG..END. 791With just \\[universal-argument] prefix arg, uncomment each line in region BEG..END.
792Numeric prefix arg ARG means use ARG comment characters. 792Numeric prefix arg ARG means use ARG comment characters.
793If ARG is negative, delete that many comment characters instead. 793If ARG is negative, delete that many comment characters instead.
794By default, comments start at the left margin, are terminated on each line, 794By default, comments start at the left margin, are terminated on each line,
@@ -864,7 +864,7 @@ end- comment markers additionally to what `comment-add' already specifies."
864(defun comment-dwim (arg) 864(defun comment-dwim (arg)
865 "Call the comment command you want (Do What I Mean). 865 "Call the comment command you want (Do What I Mean).
866If the region is active and `transient-mark-mode' is on, call 866If the region is active and `transient-mark-mode' is on, call
867 `comment-region' (unless it only consists in comments, in which 867 `comment-region' (unless it only consists of comments, in which
868 case it calls `uncomment-region'). 868 case it calls `uncomment-region').
869Else, if the current line is empty, insert a comment and indent it. 869Else, if the current line is empty, insert a comment and indent it.
870Else if a prefix ARG is specified, call `comment-kill'. 870Else if a prefix ARG is specified, call `comment-kill'.