diff options
| author | Dave Love | 2000-12-06 19:54:37 +0000 |
|---|---|---|
| committer | Dave Love | 2000-12-06 19:54:37 +0000 |
| commit | 39cb51e73bd76cd3ba09b71f63cdf66aa7495814 (patch) | |
| tree | 3e82a7fe06e8dc088c86141997f8ae20f5aa1207 | |
| parent | 0e8738c3fd84a74755552b1969c1e2a547c3abee (diff) | |
| download | emacs-39cb51e73bd76cd3ba09b71f63cdf66aa7495814.tar.gz emacs-39cb51e73bd76cd3ba09b71f63cdf66aa7495814.zip | |
Fix copyright years.
(comment-region, comment-dwim): Doc fix.
| -rw-r--r-- | lisp/newcomment.el | 8 |
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. |
| 791 | With just \\[universal-prefix] prefix arg, uncomment each line in region BEG..END. | 791 | With just \\[universal-argument] prefix arg, uncomment each line in region BEG..END. |
| 792 | Numeric prefix arg ARG means use ARG comment characters. | 792 | Numeric prefix arg ARG means use ARG comment characters. |
| 793 | If ARG is negative, delete that many comment characters instead. | 793 | If ARG is negative, delete that many comment characters instead. |
| 794 | By default, comments start at the left margin, are terminated on each line, | 794 | By 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). |
| 866 | If the region is active and `transient-mark-mode' is on, call | 866 | If 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'). |
| 869 | Else, if the current line is empty, insert a comment and indent it. | 869 | Else, if the current line is empty, insert a comment and indent it. |
| 870 | Else if a prefix ARG is specified, call `comment-kill'. | 870 | Else if a prefix ARG is specified, call `comment-kill'. |