(isearch-mode-map): Fix docstring. Init in defvar.
[bpt/emacs.git] / lisp / newcomment.el
CommitLineData
83b96b22
SM
1;;; newcomment.el --- (un)comment regions of buffers
2
771c9b97 3;; Copyright (C) 1999-2000 Free Software Foundation Inc.
83b96b22 4
59a1ce8d 5;; Author: code extracted from Emacs-20's simple.el
771c9b97 6;; Maintainer: Stefan Monnier <monnier@cs.yale.edu>
83b96b22
SM
7;; Keywords: comment uncomment
8;; Version: $Name: $
bb304a7a 9;; Revision: $Id: newcomment.el,v 1.23 2000/11/14 10:03:56 monnier Exp $
83b96b22 10
59a1ce8d
SM
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software; you can redistribute it and/or modify
83b96b22 14;; it under the terms of the GNU General Public License as published by
59a1ce8d
SM
15;; the Free Software Foundation; either version 2, or (at your option)
16;; any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
83b96b22
SM
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
59a1ce8d 22
83b96b22 23;; You should have received a copy of the GNU General Public License
59a1ce8d
SM
24;; along with GNU Emacs; see the file COPYING. If not, write to the
25;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26;; Boston, MA 02111-1307, USA.
83b96b22
SM
27
28;;; Commentary:
29
771c9b97 30;; A replacement for simple.el's comment-related functions.
83b96b22
SM
31
32;;; Bugs:
33
2ab98065
SM
34;; - single-char nestable comment-start can only do the "\\s<+" stuff
35;; if the corresponding closing marker happens to be right.
771c9b97 36;; - comment-box in TeXinfo generate bogus comments @ccccc@
3e569d22
SM
37;; - uncomment-region with a numeric argument can render multichar
38;; comment markers invalid.
3fc5b4e2
SM
39;; - comment-indent or comment-region when called inside a comment
40;; will happily break the surrounding comment.
41;; - comment-quote-nested will not (un)quote properly all nested comment
42;; markers if there are more than just comment-start and comment-end.
43;; For example, in Pascal where {...*) and (*...} are possible.
83b96b22
SM
44
45;;; Todo:
46
771c9b97
SM
47;; - try to align tail comments
48;; - check what c-comment-line-break-function has to say
3e569d22 49;; - spill auto-fill of comments onto the end of the next line
7a0a180a
SM
50;; - uncomment-region with a consp (for blocks) or somehow make the
51;; deletion of continuation markers less dangerous
2ab98065 52;; - drop block-comment-<foo> unless it's really used
f5215400 53;; - uncomment-region on a subpart of a comment
771c9b97 54;; - support gnu-style "multi-line with space in continue"
771c9b97
SM
55;; - somehow allow comment-dwim to use the region even if transient-mark-mode
56;; is not turned on.
83b96b22 57
bdbe3a89
SM
58;; - when auto-filling a comment, try to move the comment to the left
59;; rather than break it (if possible).
60;; - sometimes default the comment-column to the same
61;; one used on the preceding line(s).
62
83b96b22
SM
63;;; Code:
64
be83ecb2 65;;;###autoload
59a1ce8d 66(defalias 'indent-for-comment 'comment-indent)
be83ecb2 67;;;###autoload
59a1ce8d 68(defalias 'set-comment-column 'comment-set-column)
be83ecb2 69;;;###autoload
59a1ce8d 70(defalias 'kill-comment 'comment-kill)
be83ecb2 71;;;###autoload
59a1ce8d 72(defalias 'indent-new-comment-line 'comment-indent-new-line)
83b96b22 73
be83ecb2 74;;;###autoload
3e569d22
SM
75(defgroup comment nil
76 "Indenting and filling of comments."
77 :prefix "comment-"
ac87b3a9 78 :version "21.1"
3e569d22
SM
79 :group 'fill)
80
771c9b97
SM
81(defvar comment-use-syntax 'undecided
82 "Non-nil if syntax-tables can be used instead of regexps.
83Can also be `undecided' which means that a somewhat expensive test will
84be used to try to determine whether syntax-tables should be trusted
f5215400
SM
85to understand comments or not in the given buffer.
86Major modes should set this variable.")
2ab98065 87
be83ecb2 88;;;###autoload
83b96b22
SM
89(defcustom comment-column 32
90 "*Column to indent right-margin comments to.
91Setting this variable automatically makes it local to the current buffer.
92Each mode establishes a different default value for this variable; you
93can set the value for a particular mode using that mode's hook."
94 :type 'integer
3e569d22 95 :group 'comment)
83b96b22
SM
96(make-variable-buffer-local 'comment-column)
97
be83ecb2 98;;;###autoload
f5215400
SM
99(defvar comment-start nil
100 "*String to insert to start a new comment, or nil if no comment syntax.")
83b96b22 101
be83ecb2 102;;;###autoload
f5215400 103(defvar comment-start-skip nil
83b96b22
SM
104 "*Regexp to match the start of a comment plus everything up to its body.
105If there are any \\(...\\) pairs, the comment delimiter text is held to begin
f5215400 106at the place matched by the close of the first pair.")
771c9b97 107
be83ecb2 108;;;###autoload
3e569d22
SM
109(defvar comment-end-skip nil
110 "Regexp to match the end of a comment plus everything up to its body.")
83b96b22 111
be83ecb2 112;;;###autoload
f5215400 113(defvar comment-end ""
83b96b22 114 "*String to insert to end a new comment.
f5215400 115Should be an empty string if comments are terminated by end-of-line.")
83b96b22 116
be83ecb2 117;;;###autoload
87cf8421 118(defvar comment-indent-function 'comment-indent-default
83b96b22
SM
119 "Function to compute desired indentation for a comment.
120This function is called with no args with point at the beginning of
87cf8421
SM
121the comment's starting delimiter and should return either the desired
122column indentation or nil.
123If nil is returned, indentation is delegated to `indent-according-to-mode'.")
83b96b22 124
3e569d22
SM
125(defvar block-comment-start nil)
126(defvar block-comment-end nil)
83b96b22 127
771c9b97
SM
128(defvar comment-quote-nested t
129 "Non-nil if nested comments should be quoted.
130This should be locally set by each major mode if needed.")
131
132(defvar comment-continue nil
f5215400
SM
133 "Continuation string to insert for multiline comments.
134This string will be added at the beginning of each line except the very
135first one when commenting a region with a commenting style that allows
136comments to span several lines.
137It should generally have the same length as `comment-start' in order to
138preserve indentation.
139If it is nil a value will be automatically derived from `comment-start'
140by replacing its first character with a space.")
141
771c9b97 142(defvar comment-add 0
f5215400
SM
143 "How many more comment chars should be inserted by `comment-region'.
144This determines the default value of the numeric argument of `comment-region'.
145This should generally stay 0, except for a few modes like Lisp where
146it can be convenient to set it to 1 so that regions are commented with
147two semi-colons.")
2ab98065 148
2ab98065 149(defconst comment-styles
771c9b97
SM
150 '((plain . (nil nil nil nil))
151 (indent . (nil nil nil t))
152 (aligned . (nil t nil t))
153 (multi-line . (t nil nil t))
154 (extra-line . (t nil t t))
9b0d1d6e
SM
155 (box . (nil t t t))
156 (box-multi . (t t t t)))
f5215400
SM
157 "Possible comment styles of the form (STYLE . (MULTI ALIGN EXTRA INDENT)).
158STYLE should be a mnemonic symbol.
159MULTI specifies that comments are allowed to span multiple lines.
160ALIGN specifies that the `comment-end' markers should be aligned.
161EXTRA specifies that an extra line should be used before and after the
162 region to comment (to put the `comment-end' and `comment-start').
163INDENT specifies that the `comment-start' markers should not be put at the
164 left margin but at the current indentation of the region to comment.")
165
be83ecb2 166;;;###autoload
f5215400
SM
167(defcustom comment-style 'plain
168 "*Style to be used for `comment-region'.
169See `comment-styles' for a list of available styles."
170 :group 'comment
be83ecb2
SM
171 :type (if (boundp 'comment-styles)
172 `(choice ,@(mapcar (lambda (s) `(const ,(car s))) comment-styles))
173 'symbol))
2ab98065 174
be83ecb2
SM
175;;;###autoload
176(defcustom comment-padding " "
f5215400
SM
177 "Padding string that `comment-region' puts between comment chars and text.
178Can also be an integer which will be automatically turned into a string
179of the corresponding number of spaces.
2ab98065
SM
180
181Extra spacing between the comment characters and the comment text
771c9b97 182makes the comment easier to read. Default is 1. nil means 0.")
2ab98065 183
be83ecb2 184;;;###autoload
3e569d22 185(defcustom comment-multi-line nil
ac87b3a9 186 "*Non-nil means \\[comment-indent-new-line] continues comments, with no new terminator or starter.
3e569d22
SM
187This is obsolete because you might as well use \\[newline-and-indent]."
188 :type 'boolean
189 :group 'comment)
190
2ab98065
SM
191;;;;
192;;;; Helpers
193;;;;
194
f5215400
SM
195(defun comment-string-strip (str beforep afterp)
196 "Strip STR of any leading (if BEFOREP) and/or trailing (if AFTERP) space."
197 (string-match (concat "\\`" (if beforep "\\s-*")
ad679e45 198 "\\(.*?\\)" (if afterp "\\s-*\n?")
2ab98065
SM
199 "\\'") str)
200 (match-string 1 str))
201
202(defun comment-string-reverse (s)
f5215400 203 "Return the mirror image of string S, without any trailing space."
771c9b97 204 (comment-string-strip (concat (nreverse (string-to-list s))) nil t))
2ab98065
SM
205
206(defun comment-normalize-vars (&optional noerror)
207 (if (not comment-start) (or noerror (error "No comment syntax is defined"))
208 ;; comment-use-syntax
771c9b97 209 (when (eq comment-use-syntax 'undecided)
2ab98065
SM
210 (set (make-local-variable 'comment-use-syntax)
211 (let ((st (syntax-table))
212 (cs comment-start)
213 (ce (if (string= "" comment-end) "\n" comment-end)))
771c9b97
SM
214 ;; Try to skip over a comment using forward-comment
215 ;; to see if the syntax tables properly recognize it.
2ab98065
SM
216 (with-temp-buffer
217 (set-syntax-table st)
218 (insert cs " hello " ce)
219 (goto-char (point-min))
220 (and (forward-comment 1) (eobp))))))
2ab98065
SM
221 ;; comment-padding
222 (when (integerp comment-padding)
223 (setq comment-padding (make-string comment-padding ? )))
224 ;; comment markers
225 ;;(setq comment-start (comment-string-strip comment-start t nil))
226 ;;(setq comment-end (comment-string-strip comment-end nil t))
227 ;; comment-continue
f5215400 228 (unless (or comment-continue (string= comment-end ""))
2ab98065 229 (set (make-local-variable 'comment-continue)
9b0d1d6e
SM
230 (concat (if (string-match "\\S-\\S-" comment-start) " " "|")
231 (substring comment-start 1))))
2ab98065
SM
232 ;; comment-skip regexps
233 (unless comment-start-skip
234 (set (make-local-variable 'comment-start-skip)
235 (concat "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(\\s<+\\|"
236 (regexp-quote (comment-string-strip comment-start t t))
237 "+\\)\\s-*")))
238 (unless comment-end-skip
239 (let ((ce (if (string= "" comment-end) "\n"
240 (comment-string-strip comment-end t t))))
241 (set (make-local-variable 'comment-end-skip)
771c9b97 242 (concat "\\s-*\\(\\s>" (if comment-quote-nested "" "+")
2ab98065 243 "\\|" (regexp-quote (substring ce 0 1))
771c9b97 244 (if (and comment-quote-nested (<= (length ce) 1)) "" "+")
2ab98065
SM
245 (regexp-quote (substring ce 1))
246 "\\)"))))))
247
f5215400
SM
248(defun comment-quote-re (str unp)
249 (concat (regexp-quote (substring str 0 1))
250 "\\\\" (if unp "+" "*")
251 (regexp-quote (substring str 1))))
252
253(defun comment-quote-nested (cs ce unp)
254 "Quote or unquote nested comments.
255If UNP is non-nil, unquote nested comment markers."
256 (setq cs (comment-string-strip cs t t))
257 (setq ce (comment-string-strip ce t t))
258 (when (and comment-quote-nested (> (length ce) 0))
259 (let ((re (concat (comment-quote-re ce unp)
260 "\\|" (comment-quote-re cs unp))))
261 (goto-char (point-min))
262 (while (re-search-forward re nil t)
263 (goto-char (match-beginning 0))
264 (forward-char 1)
265 (if unp (delete-char 1) (insert "\\"))
266 (when (= (length ce) 1)
267 ;; If the comment-end is a single char, adding a \ after that
268 ;; "first" char won't deactivate it, so we turn such a CE
269 ;; into !CS. I.e. for pascal, we turn } into !{
270 (if (not unp)
271 (when (string= (match-string 0) ce)
272 (replace-match (concat "!" cs) t t))
273 (when (and (< (point-min) (match-beginning 0))
274 (string= (buffer-substring (1- (match-beginning 0))
275 (1- (match-end 0)))
276 (concat "!" cs)))
277 (backward-char 2)
278 (delete-char (- (match-end 0) (match-beginning 0)))
279 (insert ce))))))))
2ab98065
SM
280
281;;;;
282;;;; Navigation
283;;;;
284
ad679e45 285(defun comment-search-forward (limit &optional noerror)
771c9b97
SM
286 "Find a comment start between point and LIMIT.
287Moves point to inside the comment and returns the position of the
288comment-starter. If no comment is found, moves point to LIMIT
e8fe7d39 289and raises an error or returns nil of NOERROR is non-nil."
2ab98065 290 (if (not comment-use-syntax)
9b0d1d6e
SM
291 (if (re-search-forward comment-start-skip limit noerror)
292 (or (match-end 1) (match-beginning 0))
293 (goto-char limit)
294 (unless noerror (error "No comment")))
ad679e45
SM
295 (let* ((pt (point))
296 ;; Assume (at first) that pt is outside of any string.
297 (s (parse-partial-sexp pt (or limit (point-max)) nil nil nil t)))
298 (when (and (nth 8 s) (nth 3 s))
299 ;; The search ended inside a string. Try to see if it
300 ;; works better when we assume that pt is inside a string.
301 (setq s (parse-partial-sexp
302 pt (or limit (point-max)) nil nil
303 (list nil nil nil (nth 3 s) nil nil nil nil)
304 t)))
305 (if (not (and (nth 8 s) (not (nth 3 s))))
306 (unless noerror (error "No comment"))
307 ;; We found the comment.
9b0d1d6e 308 (let ((pos (point))
ad679e45 309 (start (nth 8 s))
9b0d1d6e 310 (bol (line-beginning-position))
ad679e45
SM
311 (end nil))
312 (while (and (null end) (>= (point) bol))
313 (if (looking-at comment-start-skip)
314 (setq end (min (or limit (point-max)) (match-end 0)))
315 (backward-char)))
9b0d1d6e 316 (goto-char (or end pos))
ad679e45 317 start)))))
2ab98065
SM
318
319(defun comment-search-backward (&optional limit noerror)
320 "Find a comment start between LIMIT and point.
771c9b97
SM
321Moves point to inside the comment and returns the position of the
322comment-starter. If no comment is found, moves point to LIMIT
2ab98065 323and raises an error or returns nil of NOERROR is non-nil."
ad679e45
SM
324 ;; FIXME: If a comment-start appears inside a comment, we may erroneously
325 ;; stop there. This can be rather bad in general, but since
326 ;; comment-search-backward is only used to find the comment-column (in
327 ;; comment-set-column) and to find the comment-start string (via
328 ;; comment-beginning) in indent-new-comment-line, it should be harmless.
2ab98065
SM
329 (if (not (re-search-backward comment-start-skip limit t))
330 (unless noerror (error "No comment"))
331 (beginning-of-line)
332 (let* ((end (match-end 0))
333 (cs (comment-search-forward end t))
334 (pt (point)))
335 (if (not cs)
336 (progn (beginning-of-line)
337 (comment-search-backward limit noerror))
338 (while (progn (goto-char cs)
339 (comment-forward)
340 (and (< (point) end)
341 (setq cs (comment-search-forward end t))))
342 (setq pt (point)))
343 (goto-char pt)
344 cs))))
345
346(defun comment-beginning ()
771c9b97
SM
347 "Find the beginning of the enclosing comment.
348Returns nil if not inside a comment, else moves point and returns
2ab98065
SM
349the same as `comment-search-forward'."
350 (let ((pt (point))
351 (cs (comment-search-backward nil t)))
ad679e45 352 (when cs
392f1ef5
SM
353 (if (save-excursion
354 (goto-char cs)
355 (if (comment-forward 1) (> (point) pt) (eobp)))
ad679e45
SM
356 cs
357 (goto-char pt)
358 nil))))
2ab98065
SM
359
360(defun comment-forward (&optional n)
361 "Skip forward over N comments.
362Just like `forward-comment' but only for positive N
363and can use regexps instead of syntax."
364 (setq n (or n 1))
365 (if (< n 0) (error "No comment-backward")
366 (if comment-use-syntax (forward-comment n)
367 (while (> n 0)
368 (skip-syntax-forward " ")
59a1ce8d
SM
369 (setq n
370 (if (and (looking-at comment-start-skip)
371 (re-search-forward comment-end-skip nil 'move))
372 (1- n) -1)))
2ab98065
SM
373 (= n 0))))
374
375(defun comment-enter-backward ()
376 "Move from the end of a comment to the end of its content.
771c9b97 377Point is assumed to be just at the end of a comment."
2ab98065
SM
378 (if (bolp)
379 ;; comment-end = ""
380 (progn (backward-char) (skip-syntax-backward " "))
381 (let ((end (point)))
382 (beginning-of-line)
383 (save-restriction
384 (narrow-to-region (point) end)
ad679e45
SM
385 (if (re-search-forward (concat comment-end-skip "\\'") nil t)
386 (goto-char (match-beginning 0))
387 ;; comment-end-skip not found probably because it was not set right.
388 ;; Since \\s> should catch the single-char case, we'll blindly
389 ;; assume we're at the end of a two-char comment-end.
390 (goto-char (point-max))
391 (backward-char 2)
392 (skip-chars-backward (string (char-after)))
393 (skip-syntax-backward " "))))))
2ab98065
SM
394
395;;;;
396;;;; Commands
397;;;;
398
fae99944 399;;;###autoload
87cf8421
SM
400(defun comment-indent-default ()
401 "Default for `comment-indent-function'."
d3fcda22
SM
402 (if (and (looking-at "\\s<\\s<\\(\\s<\\)?")
403 (or (match-end 1) (/= (current-column) (current-indentation))))
404 0
87cf8421
SM
405 (when (or (/= (current-column) (current-indentation))
406 (and (> comment-add 0) (looking-at "\\s<\\S<")))
407 comment-column)))
408
be83ecb2 409;;;###autoload
3e569d22 410(defun comment-indent (&optional continue)
2ab98065
SM
411 "Indent this line's comment to comment column, or insert an empty comment.
412If CONTINUE is non-nil, use the `comment-continuation' markers if any."
83b96b22 413 (interactive "*")
ad679e45 414 (comment-normalize-vars)
83b96b22
SM
415 (let* ((empty (save-excursion (beginning-of-line)
416 (looking-at "[ \t]*$")))
f5215400 417 (starter (or (and continue comment-continue)
2ab98065 418 (and empty block-comment-start) comment-start))
f5215400 419 (ender (or (and continue comment-continue "")
2ab98065 420 (and empty block-comment-end) comment-end)))
83b96b22
SM
421 (cond
422 ((null starter)
423 (error "No comment syntax defined"))
ad679e45 424 (t (let* ((eolpos (line-end-position))
83b96b22
SM
425 cpos indent begpos)
426 (beginning-of-line)
9b0d1d6e
SM
427 (if (not (setq begpos (comment-search-forward eolpos t)))
428 (setq begpos (point))
e8fe7d39
SM
429 (setq cpos (point-marker))
430 (goto-char begpos))
87cf8421 431 ;; Compute desired indent.
bdbe3a89 432 (setq indent (funcall comment-indent-function))
87cf8421
SM
433 (if (not indent)
434 ;; comment-indent-function refuses delegates to indent.
435 (indent-according-to-mode)
436 ;; Avoid moving comments past the fill-column.
437 (setq indent
438 (min indent
439 (+ (current-column)
440 (- fill-column
441 (save-excursion (end-of-line) (current-column))))))
442 (if (= (current-column) indent)
443 (goto-char begpos)
444 ;; If that's different from current, change it.
445 (skip-chars-backward " \t")
446 (delete-region (point) begpos)
bb304a7a
SM
447 (indent-to (if (bolp) indent
448 (max indent (1+ (current-column)))))))
449 ;; An existing comment?
450 (if cpos
451 (progn (goto-char cpos) (set-marker cpos nil))
452 ;; No, insert one.
453 (insert starter)
454 (save-excursion
455 (insert ender))))))))
83b96b22 456
be83ecb2 457;;;###autoload
3e569d22 458(defun comment-set-column (arg)
83b96b22 459 "Set the comment column based on point.
2ab98065 460With no ARG, set the comment column to the current column.
83b96b22
SM
461With just minus as arg, kill any comment on this line.
462With any other arg, set comment column to indentation of the previous comment
463 and then align or create a comment on this line at that column."
464 (interactive "P")
e8fe7d39 465 (cond
ad679e45 466 ((eq arg '-) (comment-kill nil))
e8fe7d39
SM
467 (arg
468 (save-excursion
469 (beginning-of-line)
2ab98065 470 (comment-search-backward)
e8fe7d39 471 (beginning-of-line)
ad679e45 472 (goto-char (comment-search-forward (line-end-position)))
83b96b22 473 (setq comment-column (current-column))
e8fe7d39 474 (message "Comment column set to %d" comment-column))
ad679e45 475 (comment-indent))
e8fe7d39 476 (t (setq comment-column (current-column))
83b96b22
SM
477 (message "Comment column set to %d" comment-column))))
478
be83ecb2 479;;;###autoload
3e569d22 480(defun comment-kill (arg)
7a0a180a
SM
481 "Kill the comment on this line, if any.
482With prefix ARG, kill comments on that many lines starting with this one."
483 (interactive "P")
ad679e45
SM
484 (dotimes (_ (prefix-numeric-value arg))
485 (save-excursion
486 (beginning-of-line)
487 (let ((cs (comment-search-forward (line-end-position) t)))
488 (when cs
489 (goto-char cs)
490 (skip-syntax-backward " ")
491 (setq cs (point))
492 (comment-forward)
493 (kill-region cs (if (bolp) (1- (point)) (point)))
494 (indent-according-to-mode))))
495 (if arg (forward-line 1))))
7a0a180a 496
2ab98065
SM
497(defun comment-padright (str &optional n)
498 "Construct a string composed of STR plus `comment-padding'.
f5215400 499It also adds N copies of the last non-whitespace chars of STR.
2ab98065 500If STR already contains padding, the corresponding amount is
f5215400
SM
501ignored from `comment-padding'.
502N defaults to 0.
771c9b97 503If N is `re', a regexp is returned instead, that would match
f5215400 504the string for any N."
2ab98065
SM
505 (setq n (or n 0))
506 (when (and (stringp str) (not (string= "" str)))
f5215400 507 ;; Separate the actual string from any leading/trailing padding
3e569d22 508 (string-match "\\`\\s-*\\(.*?\\)\\s-*\\'" str)
f5215400
SM
509 (let ((s (match-string 1 str)) ;actual string
510 (lpad (substring str 0 (match-beginning 1))) ;left padding
511 (rpad (concat (substring str (match-end 1)) ;original right padding
512 (substring comment-padding ;additional right padding
3e569d22 513 (min (- (match-end 0) (match-end 1))
9b0d1d6e
SM
514 (length comment-padding)))))
515 ;; We can only duplicate C if the comment-end has multiple chars
516 ;; or if comments can be nested, else the comment-end `}' would
517 ;; be turned into `}}}' where only the first ends the comment
518 ;; and the rest becomes bogus junk.
519 (multi (not (and comment-quote-nested
520 ;; comment-end is a single char
521 (string-match "\\`\\s-*\\S-\\s-*\\'" comment-end)))))
f5215400 522 (if (not (symbolp n))
9b0d1d6e 523 (concat lpad s (when multi (make-string n (aref str (1- (match-end 1))))) rpad)
f5215400
SM
524 ;; construct a regexp that would match anything from just S
525 ;; to any possible output of this function for any N.
526 (concat (mapconcat (lambda (c) (concat (regexp-quote (string c)) "?"))
527 lpad "") ;padding is not required
9b0d1d6e
SM
528 (regexp-quote s)
529 (when multi "+") ;the last char of S might be repeated
f5215400
SM
530 (mapconcat (lambda (c) (concat (regexp-quote (string c)) "?"))
531 rpad "")))))) ;padding is not required
2ab98065
SM
532
533(defun comment-padleft (str &optional n)
534 "Construct a string composed of `comment-padding' plus STR.
f5215400 535It also adds N copies of the first non-whitespace chars of STR.
2ab98065 536If STR already contains padding, the corresponding amount is
f5215400
SM
537ignored from `comment-padding'.
538N defaults to 0.
771c9b97 539If N is `re', a regexp is returned instead, that would match
2ab98065
SM
540 the string for any N."
541 (setq n (or n 0))
542 (when (and (stringp str) (not (string= "" str)))
f5215400 543 ;; Only separate the left pad because we assume there is no right pad.
2ab98065
SM
544 (string-match "\\`\\s-*" str)
545 (let ((s (substring str (match-end 0)))
546 (pad (concat (substring comment-padding
547 (min (- (match-end 0) (match-beginning 0))
548 (length comment-padding)))
549 (match-string 0 str)))
f5215400
SM
550 (c (aref str (match-end 0))) ;the first non-space char of STR
551 ;; We can only duplicate C if the comment-end has multiple chars
552 ;; or if comments can be nested, else the comment-end `}' would
553 ;; be turned into `}}}' where only the first ends the comment
554 ;; and the rest becomes bogus junk.
555 (multi (not (and comment-quote-nested
556 ;; comment-end is a single char
557 (string-match "\\`\\s-*\\S-\\s-*\\'" comment-end)))))
558 (if (not (symbolp n))
559 (concat pad (when multi (make-string n c)) s)
560 ;; Construct a regexp that would match anything from just S
561 ;; to any possible output of this function for any N.
562 ;; We match any number of leading spaces because this regexp will
563 ;; be used for uncommenting where we might want to remove
564 ;; uncomment markers with arbitrary leading space (because
565 ;; they were aligned).
566 (concat "\\s-*"
567 (if multi (concat (regexp-quote (string c)) "*"))
568 (regexp-quote s))))))
83b96b22 569
be83ecb2 570;;;###autoload
7a0a180a
SM
571(defun uncomment-region (beg end &optional arg)
572 "Uncomment each line in the BEG..END region.
f5215400
SM
573The numeric prefix ARG can specify a number of chars to remove from the
574comment markers."
83b96b22
SM
575 (interactive "*r\nP")
576 (comment-normalize-vars)
577 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
578 (save-excursion
7a0a180a 579 (goto-char beg)
f5215400 580 (setq end (copy-marker end))
7a0a180a 581 (let ((numarg (prefix-numeric-value arg))
2ab98065 582 spt)
7a0a180a 583 (while (and (< (point) end)
2ab98065
SM
584 (setq spt (comment-search-forward end t)))
585 (let* ((ipt (point))
f5215400 586 ;; Find the end of the comment.
e8fe7d39 587 (ept (progn
2ab98065
SM
588 (goto-char spt)
589 (unless (comment-forward)
e8fe7d39 590 (error "Can't find the comment end"))
f5215400
SM
591 (point)))
592 (box nil)
593 (ccs comment-continue)
2ab98065 594 (srei (comment-padright ccs 're))
3e569d22 595 (sre (and srei (concat "^\\s-*?\\(" srei "\\)"))))
e8fe7d39
SM
596 (save-restriction
597 (narrow-to-region spt ept)
f5215400 598 ;; Remove the comment-start.
2ab98065
SM
599 (goto-char ipt)
600 (skip-syntax-backward " ")
9b0d1d6e
SM
601 ;; Check for special `=' used sometimes in comment-box.
602 (when (and (= (- (point) (point-min)) 1) (looking-at "=\\{7\\}"))
603 (skip-chars-forward "="))
f5215400 604 ;; A box-comment starts with a looong comment-start marker.
2ab98065 605 (when (> (- (point) (point-min) (length comment-start)) 7)
f5215400 606 (setq box t))
2ab98065
SM
607 (when (looking-at (regexp-quote comment-padding))
608 (goto-char (match-end 0)))
609 (when (and sre (looking-at (concat "\\s-*\n\\s-*" srei)))
610 (goto-char (match-end 0)))
3e569d22
SM
611 (if (null arg) (delete-region (point-min) (point))
612 (skip-syntax-backward " ")
613 (delete-char (- numarg)))
2ab98065 614
f5215400 615 ;; Remove the end-comment (and leading padding and such).
2ab98065 616 (goto-char (point-max)) (comment-enter-backward)
9b0d1d6e 617 ;; Check for special `=' used sometimes in comment-box.
6dcd3806
SM
618 (when (= (- (point-max) (point)) 1)
619 (let ((pos (point)))
620 ;; skip `=' but only if there are at least 7.
621 (when (> (skip-chars-backward "=") -7) (goto-char pos))))
9b0d1d6e 622 (unless (looking-at "\\(\n\\|\\s-\\)*\\'")
2ab98065 623 (when (and (bolp) (not (bobp))) (backward-char))
f5215400 624 (if (null arg) (delete-region (point) (point-max))
3e569d22
SM
625 (skip-syntax-forward " ")
626 (delete-char numarg)))
e8fe7d39 627
f5215400
SM
628 ;; Unquote any nested end-comment.
629 (comment-quote-nested comment-start comment-end t)
630
631 ;; Eliminate continuation markers as well.
632 (when sre
633 (let* ((cce (comment-string-reverse (or comment-continue
634 comment-start)))
635 (erei (and box (comment-padleft cce 're)))
636 (ere (and erei (concat "\\(" erei "\\)\\s-*$"))))
7a0a180a 637 (goto-char (point-min))
f5215400
SM
638 (while (progn
639 (if (and ere (re-search-forward
640 ere (line-end-position) t))
641 (replace-match "" t t nil (if (match-end 2) 2 1))
642 (setq ere nil))
643 (forward-line 1)
644 (re-search-forward sre (line-end-position) t))
2ab98065 645 (replace-match "" t t nil (if (match-end 2) 2 1)))))
f5215400
SM
646 ;; Go the the end for the next comment.
647 (goto-char (point-max)))))
648 (set-marker end nil))))
83b96b22 649
aac88001 650(defun comment-make-extra-lines (cs ce ccs cce min-indent max-indent &optional block)
ad679e45
SM
651 "Make the leading and trailing extra lines.
652This is used for `extra-line' style (or `box' style if BLOCK is specified)."
9b0d1d6e
SM
653 (let ((eindent 0))
654 (if (not block)
655 ;; Try to match CS and CE's content so they align aesthetically.
656 (progn
657 (setq ce (comment-string-strip ce t t))
658 (when (string-match "\\(.+\\).*\n\\(.*?\\)\\1" (concat ce "\n" cs))
659 (setq eindent
660 (max (- (match-end 2) (match-beginning 2) (match-beginning 0))
661 0))))
662 ;; box comment
663 (let* ((width (- max-indent min-indent))
664 (s (concat cs "a=m" cce))
665 (e (concat ccs "a=m" ce))
666 (c (if (string-match ".*\\S-\\S-" cs)
667 (aref cs (1- (match-end 0))) ?=))
3fc5b4e2 668 (_ (string-match "\\s-*a=m\\s-*" s))
9b0d1d6e
SM
669 (fill
670 (make-string (+ width (- (match-end 0)
671 (match-beginning 0) (length cs) 3)) c)))
aac88001 672 (setq cs (replace-match fill t t s))
3fc5b4e2 673 (string-match "\\s-*a=m\\s-*" e)
9b0d1d6e
SM
674 (setq ce (replace-match fill t t e))))
675 (cons (concat cs "\n" (make-string min-indent ? ) ccs)
676 (concat cce "\n" (make-string (+ min-indent eindent) ? ) ce))))
aac88001
SM
677
678(def-edebug-spec comment-with-narrowing t)
679(put 'comment-with-narrowing 'lisp-indent-function 2)
680(defmacro comment-with-narrowing (beg end &rest body)
681 "Execute BODY with BEG..END narrowing.
682Space is added (and then removed) at the beginning for the text's
683indentation to be kept as it was before narrowing."
59a1ce8d
SM
684 (let ((bindent (make-symbol "bindent")))
685 `(let ((,bindent (save-excursion (goto-char beg) (current-column))))
686 (save-restriction
687 (narrow-to-region beg end)
688 (goto-char (point-min))
689 (insert (make-string ,bindent ? ))
690 (prog1
691 (progn ,@body)
692 ;; remove the bindent
693 (save-excursion
694 (goto-char (point-min))
695 (when (looking-at " *")
696 (let ((n (min (- (match-end 0) (match-beginning 0)) ,bindent)))
aac88001 697 (delete-char n)
59a1ce8d
SM
698 (setq ,bindent (- ,bindent n))))
699 (end-of-line)
700 (let ((e (point)))
701 (beginning-of-line)
702 (while (and (> ,bindent 0) (re-search-forward " *" e t))
703 (let ((n (min ,bindent (- (match-end 0) (match-beginning 0) 1))))
704 (goto-char (match-beginning 0))
705 (delete-char n)
706 (setq ,bindent (- ,bindent n)))))))))))
aac88001 707
771c9b97
SM
708(defun comment-region-internal (beg end cs ce
709 &optional ccs cce block lines indent)
f5215400 710 "Comment region BEG..END.
4125ec7e
SM
711CS and CE are the comment start resp end string.
712CCS and CCE are the comment continuation strings for the start resp end
f5215400
SM
713of lines (default to CS and CE).
714BLOCK indicates that end of lines should be marked with either CCE, CE or CS
715\(if CE is empty) and that those markers should be aligned.
716LINES indicates that an extra lines will be used at the beginning and end
717of the region for CE and CS.
718INDENT indicates to put CS and CCS at the current indentation of the region
719rather than at left margin."
59a1ce8d 720 ;;(assert (< beg end))
83b96b22 721 (let ((no-empty t))
f5215400 722 ;; Sanitize CE and CCE.
83b96b22
SM
723 (if (and (stringp ce) (string= "" ce)) (setq ce nil))
724 (if (and (stringp cce) (string= "" cce)) (setq cce nil))
f5215400
SM
725 ;; If CE is empty, multiline cannot be used.
726 (unless ce (setq ccs nil cce nil))
727 ;; Should we mark empty lines as well ?
83b96b22 728 (if (or ccs block lines) (setq no-empty nil))
f5215400 729 ;; Make sure we have end-markers for BLOCK mode.
2ab98065 730 (when block (unless ce (setq ce (comment-string-reverse cs))))
f5215400
SM
731 ;; If BLOCK is not requested, we don't need CCE.
732 (unless block (setq cce nil))
733 ;; Continuation defaults to the same as CS and CE.
734 (unless ccs (setq ccs cs cce ce))
7a0a180a 735
83b96b22 736 (save-excursion
aac88001 737 (goto-char end)
f5215400
SM
738 ;; If the end is not at the end of a line and the comment-end
739 ;; is implicit (i.e. a newline), explicitly insert a newline.
aac88001
SM
740 (unless (or ce (eolp)) (insert "\n") (indent-according-to-mode))
741 (comment-with-narrowing beg end
f5215400 742 (let ((min-indent (point-max))
83b96b22
SM
743 (max-indent 0))
744 (goto-char (point-min))
f5215400
SM
745 ;; Quote any nested comment marker
746 (comment-quote-nested comment-start comment-end nil)
747
748 ;; Loop over all lines to find the needed indentations.
4125ec7e 749 (goto-char (point-min))
f5215400
SM
750 (while
751 (progn
752 (unless (looking-at "[ \t]*$")
753 (setq min-indent (min min-indent (current-indentation))))
754 (end-of-line)
755 (setq max-indent (max max-indent (current-column)))
756 (not (or (eobp) (progn (forward-line) nil)))))
757
758 ;; Inserting ccs can change max-indent by (1- tab-width).
59a1ce8d
SM
759 (setq max-indent
760 (+ max-indent (max (length cs) (length ccs)) tab-width -1))
771c9b97 761 (unless indent (setq min-indent 0))
83b96b22 762
aac88001 763 ;; make the leading and trailing lines if requested
83b96b22 764 (when lines
771c9b97
SM
765 (let ((csce
766 (comment-make-extra-lines
767 cs ce ccs cce min-indent max-indent block)))
768 (setq cs (car csce))
769 (setq ce (cdr csce))))
83b96b22
SM
770
771 (goto-char (point-min))
772 ;; Loop over all lines from BEG to END.
f5215400
SM
773 (while
774 (progn
775 (unless (and no-empty (looking-at "[ \t]*$"))
776 (move-to-column min-indent t)
777 (insert cs) (setq cs ccs) ;switch to CCS after the first line
778 (end-of-line)
779 (if (eobp) (setq cce ce))
780 (when cce
781 (when block (move-to-column max-indent t))
782 (insert cce)))
783 (end-of-line)
784 (not (or (eobp) (progn (forward-line) nil))))))))))
83b96b22 785
be83ecb2 786;;;###autoload
83b96b22
SM
787(defun comment-region (beg end &optional arg)
788 "Comment or uncomment each line in the region.
789With just \\[universal-prefix] prefix arg, uncomment each line in region BEG..END.
790Numeric prefix arg ARG means use ARG comment characters.
791If ARG is negative, delete that many comment characters instead.
be83ecb2
SM
792By default, comments start at the left margin, are terminated on each line,
793even for syntax in which newline does not end the comment and blank lines
794do not get comments. This can be changed with `comment-style'.
83b96b22
SM
795
796The strings used as comment starts are built from
797`comment-start' without trailing spaces and `comment-padding'."
798 (interactive "*r\nP")
799 (comment-normalize-vars)
800 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
2ab98065 801 (let* ((numarg (prefix-numeric-value arg))
771c9b97 802 (add comment-add)
2ab98065
SM
803 (style (cdr (assoc comment-style comment-styles)))
804 (lines (nth 2 style))
805 (block (nth 1 style))
806 (multi (nth 0 style)))
83b96b22
SM
807 (save-excursion
808 ;; we use `chars' instead of `syntax' because `\n' might be
809 ;; of end-comment syntax rather than of whitespace syntax.
810 ;; sanitize BEG and END
811 (goto-char beg) (skip-chars-forward " \t\n\r") (beginning-of-line)
812 (setq beg (max beg (point)))
813 (goto-char end) (skip-chars-backward " \t\n\r") (end-of-line)
814 (setq end (min end (point)))
815 (if (>= beg end) (error "Nothing to comment"))
816
83b96b22
SM
817 ;; sanitize LINES
818 (setq lines
819 (and
9b0d1d6e 820 lines ;; multi
83b96b22
SM
821 (progn (goto-char beg) (beginning-of-line)
822 (skip-syntax-forward " ")
823 (>= (point) beg))
824 (progn (goto-char end) (end-of-line) (skip-syntax-backward " ")
825 (<= (point) end))
771c9b97 826 (or (not (string= "" comment-end)) block)
2ab98065 827 (progn (goto-char beg) (search-forward "\n" end t)))))
83b96b22 828
2ab98065
SM
829 ;; don't add end-markers just because the user asked for `block'
830 (unless (or lines (string= "" comment-end)) (setq block nil))
831
83b96b22
SM
832 (cond
833 ((consp arg) (uncomment-region beg end))
834 ((< numarg 0) (uncomment-region beg end (- numarg)))
835 (t
59a1ce8d
SM
836 (setq numarg (if (and (null arg) (= (length comment-start) 1))
837 add (1- numarg)))
83b96b22
SM
838 (comment-region-internal
839 beg end
3e569d22
SM
840 (let ((s (comment-padright comment-start numarg)))
841 (if (string-match comment-start-skip s) s
842 (comment-padright comment-start)))
843 (let ((s (comment-padleft comment-end numarg)))
844 (and s (if (string-match comment-end-skip s) s
845 (comment-padright comment-end))))
f5215400
SM
846 (if multi (comment-padright comment-continue numarg))
847 (if multi (comment-padleft (comment-string-reverse comment-continue) numarg))
83b96b22 848 block
771c9b97
SM
849 lines
850 (nth 3 style))))))
851
852(defun comment-box (beg end &optional arg)
853 "Comment out the BEG..END region, putting it inside a box.
854The numeric prefix ARG specifies how many characters to add to begin- and
855end- comment markers additionally to what `comment-add' already specifies."
856 (interactive "*r\np")
9b0d1d6e
SM
857 (let ((comment-style (if (cadr (assoc comment-style comment-styles))
858 'box-multi 'box)))
771c9b97 859 (comment-region beg end (+ comment-add arg))))
83b96b22 860
be83ecb2 861;;;###autoload
2ab98065 862(defun comment-dwim (arg)
ad679e45
SM
863 "Call the comment command you want (Do What I Mean).
864If the region is active and `transient-mark-mode' is on, call
865 `comment-region' (unless it only consists in comments, in which
866 case it calls `uncomment-region').
2ab98065 867Else, if the current line is empty, insert a comment and indent it.
ad679e45
SM
868Else if a prefix ARG is specified, call `comment-kill'.
869Else, call `comment-indent'."
2ab98065
SM
870 (interactive "*P")
871 (comment-normalize-vars)
771c9b97 872 (if (and mark-active transient-mark-mode)
2ab98065
SM
873 (let ((beg (min (point) (mark)))
874 (end (max (point) (mark))))
875 (if (save-excursion ;; check for already commented region
876 (goto-char beg)
877 (comment-forward (point-max))
878 (<= end (point)))
879 (uncomment-region beg end arg)
880 (comment-region beg end arg)))
881 (if (save-excursion (beginning-of-line) (not (looking-at "\\s-*$")))
ad679e45
SM
882 ;; FIXME: If there's no comment to kill on this line and ARG is
883 ;; specified, calling comment-kill is not very clever.
884 (if arg (comment-kill (and (integerp arg) arg)) (comment-indent))
2ab98065 885 (let ((add (if arg (prefix-numeric-value arg)
771c9b97 886 (if (= (length comment-start) 1) comment-add 0))))
2ab98065
SM
887 (insert (comment-padright comment-start add))
888 (save-excursion
889 (unless (string= "" comment-end)
890 (insert (comment-padleft comment-end add)))
891 (indent-according-to-mode))))))
892
392f1ef5
SM
893(defcustom comment-auto-fill-only-comments nil
894 "Non-nil means to only auto-fill inside comments.
895This has no effect in modes that do not define a comment syntax."
896 :type 'boolean
897 :group 'comment)
898
be83ecb2 899;;;###autoload
ad679e45 900(defun comment-indent-new-line (&optional soft)
2ab98065
SM
901 "Break line at point and indent, continuing comment if within one.
902This indents the body of the continued comment
903under the previous comment line.
904
905This command is intended for styles where you write a comment per line,
906starting a new comment (and terminating it if necessary) on each line.
907If you want to continue one comment across several lines, use \\[newline-and-indent].
908
909If a fill column is specified, it overrides the use of the comment column
910or comment indentation.
911
912The inserted newline is marked hard if variable `use-hard-newlines' is true,
913unless optional argument SOFT is non-nil."
914 (interactive)
915 (comment-normalize-vars t)
59a1ce8d
SM
916 (let (compos comin)
917 ;; If we are not inside a comment and we only auto-fill comments,
918 ;; don't do anything (unless no comment syntax is defined).
392f1ef5
SM
919 (unless (and comment-start
920 comment-auto-fill-only-comments
921 (not (save-excursion
59a1ce8d 922 (prog1 (setq compos (comment-beginning))
392f1ef5 923 (setq comin (point))))))
59a1ce8d
SM
924
925 ;; Now we know we should auto-fill.
392f1ef5 926 (delete-region (progn (skip-chars-backward " \t") (point))
59a1ce8d 927 (progn (skip-chars-forward " \t") (point)))
392f1ef5
SM
928 (if soft (insert-and-inherit ?\n) (newline 1))
929 (if fill-prefix
930 (progn
931 (indent-to-left-margin)
932 (insert-and-inherit fill-prefix))
59a1ce8d
SM
933
934 ;; If necessary check whether we're inside a comment.
935 (unless (or comment-multi-line compos (null comment-start))
392f1ef5
SM
936 (save-excursion
937 (backward-char)
59a1ce8d
SM
938 (setq compos (comment-beginning))
939 (setq comin (point))))
940
941 ;; If we're not inside a comment, just try to indent.
942 (if (not compos) (indent-according-to-mode)
943 (let* ((comment-column
944 ;; The continuation indentation should be somewhere between
945 ;; the current line's indentation (plus 2 for good measure)
946 ;; and the current comment's indentation, with a preference
947 ;; for comment-column.
948 (save-excursion
949 (goto-char compos)
950 (min (current-column) (max comment-column
951 (+ 2 (current-indentation))))))
952 (comstart (buffer-substring compos comin))
953 (normalp
954 (string-match (regexp-quote (comment-string-strip
955 comment-start t t))
956 comstart))
957 (comment-end
958 (if normalp comment-end
959 ;; The comment starter is not the normal comment-start
960 ;; so we can't just use comment-end.
961 (save-excursion
962 (goto-char compos)
963 (if (not (comment-forward)) comment-end
964 (comment-string-strip
965 (buffer-substring
966 (save-excursion (comment-enter-backward) (point))
967 (point))
968 nil t)))))
969 (comment-start comstart)
970 ;; Force comment-continue to be recreated from comment-start.
971 (comment-continue nil))
972 (insert-and-inherit ?\n)
973 (forward-char -1)
974 (comment-indent (cadr (assoc comment-style comment-styles)))
975 (save-excursion
976 (let ((pt (point)))
977 (end-of-line)
978 (let ((comend (buffer-substring pt (point))))
979 ;; The 1+ is to make sure we delete the \n inserted above.
980 (delete-region pt (1+ (point)))
981 (beginning-of-line)
982 (backward-char)
983 (insert comend)
984 (forward-char))))))))))
2ab98065 985
83b96b22
SM
986(provide 'newcomment)
987
83b96b22 988;;; newcomment.el ends here