(mac_cg_color_space_rgb) [USE_CG_DRAWING]:
[emacs.git] / lisp / newcomment.el
blob5ee32e2ffcbc7a77ee4250e685e0e58040e4412c
1 ;;; newcomment.el --- (un)comment regions of buffers
3 ;; Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: code extracted from Emacs-20's simple.el
7 ;; Maintainer: Stefan Monnier <monnier@iro.umontreal.ca>
8 ;; Keywords: comment uncomment
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Commentary:
29 ;; A replacement for simple.el's comment-related functions.
31 ;;; Bugs:
33 ;; - boxed comments in Perl are not properly uncommented because they are
34 ;; uncommented one-line at a time.
35 ;; - nested comments in sgml-mode are not properly quoted.
36 ;; - single-char nestable comment-start can only do the "\\s<+" stuff
37 ;; if the corresponding closing marker happens to be right.
38 ;; - uncomment-region with a numeric argument can render multichar
39 ;; comment markers invalid.
40 ;; - comment-indent or comment-region when called inside a comment
41 ;; will happily break the surrounding comment.
42 ;; - comment-quote-nested will not (un)quote properly all nested comment
43 ;; markers if there are more than just comment-start and comment-end.
44 ;; For example, in Pascal where {...*) and (*...} are possible.
46 ;;; Todo:
48 ;; - rebox.el-style refill.
49 ;; - quantized steps in comment-alignment.
50 ;; - try to align tail comments.
51 ;; - check what c-comment-line-break-function has to say.
52 ;; - spill auto-fill of comments onto the end of the next line.
53 ;; - uncomment-region with a consp (for blocks) or somehow make the
54 ;; deletion of continuation markers less dangerous.
55 ;; - drop block-comment-<foo> unless it's really used.
56 ;; - uncomment-region on a subpart of a comment.
57 ;; - support gnu-style "multi-line with space in continue".
58 ;; - somehow allow comment-dwim to use the region even if transient-mark-mode
59 ;; is not turned on.
61 ;; - when auto-filling a comment, try to move the comment to the left
62 ;; rather than break it (if possible).
63 ;; - sometimes default the comment-column to the same
64 ;; one used on the preceding line(s).
66 ;;; Code:
68 ;;;###autoload
69 (defalias 'indent-for-comment 'comment-indent)
70 ;;;###autoload
71 (defalias 'set-comment-column 'comment-set-column)
72 ;;;###autoload
73 (defalias 'kill-comment 'comment-kill)
74 ;;;###autoload
75 (defalias 'indent-new-comment-line 'comment-indent-new-line)
77 (defgroup comment nil
78 "Indenting and filling of comments."
79 :prefix "comment-"
80 :version "21.1"
81 :group 'fill)
83 ;; Autoload this to avoid warnings, since some major modes define it.
84 ;;;###autoload
85 (defvar comment-use-syntax 'undecided
86 "Non-nil if syntax-tables can be used instead of regexps.
87 Can also be `undecided' which means that a somewhat expensive test will
88 be used to try to determine whether syntax-tables should be trusted
89 to understand comments or not in the given buffer.
90 Major modes should set this variable.")
92 (defcustom comment-fill-column nil
93 "Column to use for `comment-indent'. If nil, use `fill-column' instead."
94 :type '(choice (const nil) integer)
95 :group 'comment)
97 ;;;###autoload
98 (defcustom comment-column 32
99 "Column to indent right-margin comments to.
100 Each mode may establish a different default value for this variable; you
101 can set the value for a particular mode using that mode's hook.
102 Comments might be indented to a different value in order not to go beyond
103 `comment-fill-column' or in order to align them with surrounding comments."
104 :type 'integer
105 :group 'comment)
106 (make-variable-buffer-local 'comment-column)
107 ;;;###autoload(put 'comment-column 'safe-local-variable 'integerp)
109 ;;;###autoload
110 (defvar comment-start nil
111 "*String to insert to start a new comment, or nil if no comment syntax.")
112 ;;;###autoload(put 'comment-start 'safe-local-variable 'string-or-null-p)
114 ;;;###autoload
115 (defvar comment-start-skip nil
116 "*Regexp to match the start of a comment plus everything up to its body.
117 If there are any \\(...\\) pairs, the comment delimiter text is held to begin
118 at the place matched by the close of the first pair.")
119 ;;;###autoload(put 'comment-start-skip 'safe-local-variable 'string-or-null-p)
121 ;;;###autoload
122 (defvar comment-end-skip nil
123 "Regexp to match the end of a comment plus everything up to its body.")
124 ;;;###autoload(put 'comment-end-skip 'safe-local-variable 'string-or-null-p)
126 ;;;###autoload
127 (defvar comment-end ""
128 "*String to insert to end a new comment.
129 Should be an empty string if comments are terminated by end-of-line.")
130 ;;;###autoload(put 'comment-end 'safe-local-variable 'string-or-null-p)
132 ;;;###autoload
133 (defvar comment-indent-function 'comment-indent-default
134 "Function to compute desired indentation for a comment.
135 This function is called with no args with point at the beginning of
136 the comment's starting delimiter and should return either the desired
137 column indentation or nil.
138 If nil is returned, indentation is delegated to `indent-according-to-mode'.")
140 ;;;###autoload
141 (defvar comment-insert-comment-function nil
142 "Function to insert a comment when a line doesn't contain one.
143 The function has no args.
145 Applicable at least in modes for languages like fixed-format Fortran where
146 comments always start in column zero.")
148 (defvar comment-region-function 'comment-region-default
149 "Function to comment a region.
150 Its args are the same as those of `comment-region', but BEG and END are
151 guaranteed to be correctly ordered. It is called within `save-excursion'.
153 Applicable at least in modes for languages like fixed-format Fortran where
154 comments always start in column zero.")
156 (defvar uncomment-region-function 'uncomment-region-default
157 "Function to uncomment a region.
158 Its args are the same as those of `uncomment-region', but BEG and END are
159 guaranteed to be correctly ordered. It is called within `save-excursion'.
161 Applicable at least in modes for languages like fixed-format Fortran where
162 comments always start in column zero.")
164 ;; ?? never set
165 (defvar block-comment-start nil)
166 (defvar block-comment-end nil)
168 (defvar comment-quote-nested t
169 "Non-nil if nested comments should be quoted.
170 This should be locally set by each major mode if needed.")
172 (defvar comment-continue nil
173 "Continuation string to insert for multiline comments.
174 This string will be added at the beginning of each line except the very
175 first one when commenting a region with a commenting style that allows
176 comments to span several lines.
177 It should generally have the same length as `comment-start' in order to
178 preserve indentation.
179 If it is nil a value will be automatically derived from `comment-start'
180 by replacing its first character with a space.")
182 (defvar comment-add 0
183 "How many more comment chars should be inserted by `comment-region'.
184 This determines the default value of the numeric argument of `comment-region'.
185 This should generally stay 0, except for a few modes like Lisp where
186 it can be convenient to set it to 1 so that regions are commented with
187 two semi-colons.")
189 (defconst comment-styles
190 '((plain . (nil nil nil nil))
191 (indent . (nil nil nil t))
192 (aligned . (nil t nil t))
193 (multi-line . (t nil nil t))
194 (extra-line . (t nil t t))
195 (box . (nil t t t))
196 (box-multi . (t t t t)))
197 "Comment region styles of the form (STYLE . (MULTI ALIGN EXTRA INDENT)).
198 STYLE should be a mnemonic symbol.
199 MULTI specifies that comments are allowed to span multiple lines.
200 ALIGN specifies that the `comment-end' markers should be aligned.
201 EXTRA specifies that an extra line should be used before and after the
202 region to comment (to put the `comment-end' and `comment-start').
203 INDENT specifies that the `comment-start' markers should not be put at the
204 left margin but at the current indentation of the region to comment.")
206 ;;;###autoload
207 (defcustom comment-style 'plain
208 "Style to be used for `comment-region'.
209 See `comment-styles' for a list of available styles."
210 :type (if (boundp 'comment-styles)
211 `(choice ,@(mapcar (lambda (s) `(const ,(car s)))
212 comment-styles))
213 'symbol)
214 :group 'comment)
216 ;;;###autoload
217 (defcustom comment-padding " "
218 "Padding string that `comment-region' puts between comment chars and text.
219 Can also be an integer which will be automatically turned into a string
220 of the corresponding number of spaces.
222 Extra spacing between the comment characters and the comment text
223 makes the comment easier to read. Default is 1. nil means 0."
224 :type '(choice string integer (const nil))
225 :group 'comment)
227 ;;;###autoload
228 (defcustom comment-multi-line nil
229 "Non-nil means `comment-indent-new-line' continues comments.
230 That is, it inserts no new terminator or starter.
231 This affects `auto-fill-mode', which is the main reason to
232 customize this variable.
234 It also affects \\[indent-new-comment-line]. However, if you want this
235 behavior for explicit filling, you might as well use \\[newline-and-indent]."
236 :type 'boolean
237 :group 'comment)
239 (defcustom comment-empty-lines nil
240 "If nil, `comment-region' does not comment out empty lines.
241 If t, it always comments out empty lines.
242 If `eol' it only comments out empty lines if comments are
243 terminated by the end of line (i.e. `comment-end' is empty)."
244 :type '(choice (const :tag "Never" nil)
245 (const :tag "Always" t)
246 (const :tag "EOl-terminated" 'eol))
247 :group 'comment)
249 ;;;;
250 ;;;; Helpers
251 ;;;;
253 (defun comment-string-strip (str beforep afterp)
254 "Strip STR of any leading (if BEFOREP) and/or trailing (if AFTERP) space."
255 (string-match (concat "\\`" (if beforep "\\s-*")
256 "\\(.*?\\)" (if afterp "\\s-*\n?")
257 "\\'") str)
258 (match-string 1 str))
260 (defun comment-string-reverse (s)
261 "Return the mirror image of string S, without any trailing space."
262 (comment-string-strip (concat (nreverse (string-to-list s))) nil t))
264 ;;;###autoload
265 (defun comment-normalize-vars (&optional noerror)
266 "Check and setup the variables needed by other commenting functions.
267 Functions autoloaded from newcomment.el, being entry points, should call
268 this function before any other, so the rest of the code can assume that
269 the variables are properly set."
270 (unless (and (not comment-start) noerror)
271 (unless comment-start
272 (let ((cs (read-string "No comment syntax is defined. Use: ")))
273 (if (zerop (length cs))
274 (error "No comment syntax defined")
275 (set (make-local-variable 'comment-start) cs))))
276 ;; comment-use-syntax
277 (when (eq comment-use-syntax 'undecided)
278 (set (make-local-variable 'comment-use-syntax)
279 (let ((st (syntax-table))
280 (cs comment-start)
281 (ce (if (string= "" comment-end) "\n" comment-end)))
282 ;; Try to skip over a comment using forward-comment
283 ;; to see if the syntax tables properly recognize it.
284 (with-temp-buffer
285 (set-syntax-table st)
286 (insert cs " hello " ce)
287 (goto-char (point-min))
288 (and (forward-comment 1) (eobp))))))
289 ;; comment-padding
290 (unless comment-padding (setq comment-padding 0))
291 (when (integerp comment-padding)
292 (setq comment-padding (make-string comment-padding ? )))
293 ;; comment markers
294 ;;(setq comment-start (comment-string-strip comment-start t nil))
295 ;;(setq comment-end (comment-string-strip comment-end nil t))
296 ;; comment-continue
297 (unless (or comment-continue (string= comment-end ""))
298 (set (make-local-variable 'comment-continue)
299 (concat (if (string-match "\\S-\\S-" comment-start) " " "|")
300 (substring comment-start 1)))
301 ;; Hasn't been necessary yet.
302 ;; (unless (string-match comment-start-skip comment-continue)
303 ;; (kill-local-variable 'comment-continue))
305 ;; comment-skip regexps
306 (unless (and comment-start-skip
307 ;; In case comment-start has changed since last time.
308 (string-match comment-start-skip comment-start))
309 (set (make-local-variable 'comment-start-skip)
310 (concat "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(\\s<+\\|"
311 (regexp-quote (comment-string-strip comment-start t t))
312 ;; Let's not allow any \s- but only [ \t] since \n
313 ;; might be both a comment-end marker and \s-.
314 "+\\)[ \t]*")))
315 (unless (and comment-end-skip
316 ;; In case comment-end has changed since last time.
317 (string-match comment-end-skip comment-end))
318 (let ((ce (if (string= "" comment-end) "\n"
319 (comment-string-strip comment-end t t))))
320 (set (make-local-variable 'comment-end-skip)
321 ;; We use [ \t] rather than \s- because we don't want to
322 ;; remove ^L in C mode when uncommenting.
323 (concat "[ \t]*\\(\\s>" (if comment-quote-nested "" "+")
324 "\\|" (regexp-quote (substring ce 0 1))
325 (if (and comment-quote-nested (<= (length ce) 1)) "" "+")
326 (regexp-quote (substring ce 1))
327 "\\)"))))))
329 (defun comment-quote-re (str unp)
330 (concat (regexp-quote (substring str 0 1))
331 "\\\\" (if unp "+" "*")
332 (regexp-quote (substring str 1))))
334 (defun comment-quote-nested (cs ce unp)
335 "Quote or unquote nested comments.
336 If UNP is non-nil, unquote nested comment markers."
337 (setq cs (comment-string-strip cs t t))
338 (setq ce (comment-string-strip ce t t))
339 (when (and comment-quote-nested (> (length ce) 0))
340 (let ((re (concat (comment-quote-re ce unp)
341 "\\|" (comment-quote-re cs unp))))
342 (goto-char (point-min))
343 (while (re-search-forward re nil t)
344 (goto-char (match-beginning 0))
345 (forward-char 1)
346 (if unp (delete-char 1) (insert "\\"))
347 (when (= (length ce) 1)
348 ;; If the comment-end is a single char, adding a \ after that
349 ;; "first" char won't deactivate it, so we turn such a CE
350 ;; into !CS. I.e. for pascal, we turn } into !{
351 (if (not unp)
352 (when (string= (match-string 0) ce)
353 (replace-match (concat "!" cs) t t))
354 (when (and (< (point-min) (match-beginning 0))
355 (string= (buffer-substring (1- (match-beginning 0))
356 (1- (match-end 0)))
357 (concat "!" cs)))
358 (backward-char 2)
359 (delete-char (- (match-end 0) (match-beginning 0)))
360 (insert ce))))))))
362 ;;;;
363 ;;;; Navigation
364 ;;;;
366 (defvar comment-use-global-state nil
367 "Non-nil means that the global syntactic context is used.
368 More specifically, it means that `syntax-ppss' is used to find out whether
369 point is within a string or not. Major modes whose syntax is faithfully
370 described by the syntax-tables can set this to non-nil so comment markers
371 in strings will not confuse Emacs.")
373 (defun comment-search-forward (limit &optional noerror)
374 "Find a comment start between point and LIMIT.
375 Moves point to inside the comment and returns the position of the
376 comment-starter. If no comment is found, moves point to LIMIT
377 and raises an error or returns nil if NOERROR is non-nil."
378 (if (not comment-use-syntax)
379 (if (re-search-forward comment-start-skip limit noerror)
380 (or (match-end 1) (match-beginning 0))
381 (goto-char limit)
382 (unless noerror (error "No comment")))
383 (let* ((pt (point))
384 ;; Assume (at first) that pt is outside of any string.
385 (s (parse-partial-sexp pt (or limit (point-max)) nil nil
386 (if comment-use-global-state (syntax-ppss pt))
387 t)))
388 (when (and (nth 8 s) (nth 3 s) (not comment-use-global-state))
389 ;; The search ended at eol inside a string. Try to see if it
390 ;; works better when we assume that pt is inside a string.
391 (setq s (parse-partial-sexp
392 pt (or limit (point-max)) nil nil
393 (list nil nil nil (nth 3 s) nil nil nil nil)
394 t)))
395 (if (or (not (and (nth 8 s) (not (nth 3 s))))
396 ;; Make sure the comment starts after PT.
397 (< (nth 8 s) pt))
398 (unless noerror (error "No comment"))
399 ;; We found the comment.
400 (let ((pos (point))
401 (start (nth 8 s))
402 (bol (line-beginning-position))
403 (end nil))
404 (while (and (null end) (>= (point) bol))
405 (if (looking-at comment-start-skip)
406 (setq end (min (or limit (point-max)) (match-end 0)))
407 (backward-char)))
408 (goto-char (or end pos))
409 start)))))
411 (defun comment-search-backward (&optional limit noerror)
412 "Find a comment start between LIMIT and point.
413 Moves point to inside the comment and returns the position of the
414 comment-starter. If no comment is found, moves point to LIMIT
415 and raises an error or returns nil if NOERROR is non-nil."
416 ;; FIXME: If a comment-start appears inside a comment, we may erroneously
417 ;; stop there. This can be rather bad in general, but since
418 ;; comment-search-backward is only used to find the comment-column (in
419 ;; comment-set-column) and to find the comment-start string (via
420 ;; comment-beginning) in indent-new-comment-line, it should be harmless.
421 (if (not (re-search-backward comment-start-skip limit t))
422 (unless noerror (error "No comment"))
423 (beginning-of-line)
424 (let* ((end (match-end 0))
425 (cs (comment-search-forward end t))
426 (pt (point)))
427 (if (not cs)
428 (progn (beginning-of-line)
429 (comment-search-backward limit noerror))
430 (while (progn (goto-char cs)
431 (comment-forward)
432 (and (< (point) end)
433 (setq cs (comment-search-forward end t))))
434 (setq pt (point)))
435 (goto-char pt)
436 cs))))
438 (defun comment-beginning ()
439 "Find the beginning of the enclosing comment.
440 Returns nil if not inside a comment, else moves point and returns
441 the same as `comment-search-backward'."
442 ;; HACK ATTACK!
443 ;; We should really test `in-string-p' but that can be expensive.
444 (unless (eq (get-text-property (point) 'face) 'font-lock-string-face)
445 (let ((pt (point))
446 (cs (comment-search-backward nil t)))
447 (when cs
448 (if (save-excursion
449 (goto-char cs)
450 (and
451 ;; For modes where comment-start and comment-end are the same,
452 ;; the search above may have found a `ce' rather than a `cs'.
453 (or (if comment-end-skip (not (looking-at comment-end-skip)))
454 ;; Maybe font-lock knows that it's a `cs'?
455 (eq (get-text-property (match-end 0) 'face)
456 'font-lock-comment-face)
457 (unless (eq (get-text-property (point) 'face)
458 'font-lock-comment-face)
459 ;; Let's assume it's a `cs' if we're on the same line.
460 (>= (line-end-position) pt)))
461 ;; Make sure that PT is not past the end of the comment.
462 (if (comment-forward 1) (> (point) pt) (eobp))))
464 (goto-char pt)
465 nil)))))
467 (defun comment-forward (&optional n)
468 "Skip forward over N comments.
469 Just like `forward-comment' but only for positive N
470 and can use regexps instead of syntax."
471 (setq n (or n 1))
472 (if (< n 0) (error "No comment-backward")
473 (if comment-use-syntax (forward-comment n)
474 (while (> n 0)
475 (setq n
476 (if (or (forward-comment 1)
477 (and (looking-at comment-start-skip)
478 (goto-char (match-end 0))
479 (re-search-forward comment-end-skip nil 'move)))
480 (1- n) -1)))
481 (= n 0))))
483 (defun comment-enter-backward ()
484 "Move from the end of a comment to the end of its content.
485 Point is assumed to be just at the end of a comment."
486 (if (bolp)
487 ;; comment-end = ""
488 (progn (backward-char) (skip-syntax-backward " "))
489 (cond
490 ((save-excursion
491 (save-restriction
492 (narrow-to-region (line-beginning-position) (point))
493 (goto-char (point-min))
494 (re-search-forward (concat comment-end-skip "\\'") nil t)))
495 (goto-char (match-beginning 0)))
496 ;; comment-end-skip not found. Maybe we're at EOB which implicitly
497 ;; closes the comment.
498 ((eobp) (skip-syntax-backward " "))
500 ;; else comment-end-skip was not found probably because it was not
501 ;; set right. Since \\s> should catch the single-char case, we'll
502 ;; blindly assume we're at the end of a two-char comment-end.
503 (backward-char 2)
504 (skip-chars-backward (string (char-after)))
505 (skip-syntax-backward " ")))))
507 ;;;;
508 ;;;; Commands
509 ;;;;
511 ;;;###autoload
512 (defun comment-indent-default ()
513 "Default for `comment-indent-function'."
514 (if (and (looking-at "\\s<\\s<\\(\\s<\\)?")
515 (or (match-end 1) (/= (current-column) (current-indentation))))
517 (when (or (/= (current-column) (current-indentation))
518 (and (> comment-add 0) (looking-at "\\s<\\(\\S<\\|\\'\\)")))
519 comment-column)))
521 (defun comment-choose-indent (&optional indent)
522 "Choose the indentation to use for a right-hand-side comment.
523 The criteria are (in this order):
524 - try to keep the comment's text within `comment-fill-column'.
525 - try to align with surrounding comments.
526 - prefer INDENT (or `comment-column' if nil).
527 Point is expected to be at the start of the comment."
528 (unless indent (setq indent comment-column))
529 ;; Avoid moving comments past the fill-column.
530 (let ((max (+ (current-column)
531 (- (or comment-fill-column fill-column)
532 (save-excursion (end-of-line) (current-column)))))
533 (other nil)
534 (min (save-excursion (skip-chars-backward " \t")
535 (1+ (current-column)))))
536 ;; Fix up the range.
537 (if (< max min) (setq max min))
538 ;; Don't move past the fill column.
539 (if (<= max indent) (setq indent max))
540 ;; We can choose anywhere between min..max.
541 ;; Let's try to align to a comment on the previous line.
542 (save-excursion
543 (when (and (zerop (forward-line -1))
544 (setq other (comment-search-forward
545 (line-end-position) t)))
546 (goto-char other) (setq other (current-column))))
547 (if (and other (<= other max) (>= other min))
548 ;; There is a comment and it's in the range: bingo!
549 other
550 ;; Can't align to a previous comment: let's try to align to comments
551 ;; on the following lines, then. These have not been re-indented yet,
552 ;; so we can't directly align ourselves with them. All we do is to try
553 ;; and choose an indentation point with which they will be able to
554 ;; align themselves.
555 (save-excursion
556 (while (and (zerop (forward-line 1))
557 (setq other (comment-search-forward
558 (line-end-position) t)))
559 (goto-char other)
560 (let ((omax (+ (current-column)
561 (- (or comment-fill-column fill-column)
562 (save-excursion (end-of-line) (current-column)))))
563 (omin (save-excursion (skip-chars-backward " \t")
564 (1+ (current-column)))))
565 (if (and (>= omax min) (<= omin max))
566 (progn (setq min (max omin min))
567 (setq max (min omax max)))
568 ;; Can't align with this anyway, so exit the loop.
569 (goto-char (point-max))))))
570 ;; Return the closest point to indent within min..max.
571 (max min (min max indent)))))
573 ;;;###autoload
574 (defun comment-indent (&optional continue)
575 "Indent this line's comment to `comment-column', or insert an empty comment.
576 If CONTINUE is non-nil, use the `comment-continue' markers if any."
577 (interactive "*")
578 (comment-normalize-vars)
579 (let* ((empty (save-excursion (beginning-of-line)
580 (looking-at "[ \t]*$")))
581 (starter (or (and continue comment-continue)
582 (and empty block-comment-start) comment-start))
583 (ender (or (and continue comment-continue "")
584 (and empty block-comment-end) comment-end)))
585 (unless starter (error "No comment syntax defined"))
586 (beginning-of-line)
587 (let* ((eolpos (line-end-position))
588 (begpos (comment-search-forward eolpos t))
589 cpos indent)
590 ;; An existing comment?
591 (if begpos
592 (progn
593 (if (and (not (looking-at "[\t\n ]"))
594 (looking-at comment-end-skip))
595 ;; The comment is empty and we have skipped all its space
596 ;; and landed right before the comment-ender:
597 ;; Go back to the middle of the space.
598 (forward-char (/ (skip-chars-backward " \t") -2)))
599 (setq cpos (point-marker)))
600 ;; If none, insert one.
601 (if comment-insert-comment-function
602 (funcall comment-insert-comment-function)
603 (save-excursion
604 ;; Some `comment-indent-function's insist on not moving
605 ;; comments that are in column 0, so we first go to the
606 ;; likely target column.
607 (indent-to comment-column)
608 ;; Ensure there's a space before the comment for things
609 ;; like sh where it matters (as well as being neater).
610 (unless (memq (char-before) '(nil ?\n ?\t ?\s))
611 (insert ?\s))
612 (setq begpos (point))
613 (insert starter)
614 (setq cpos (point-marker))
615 (insert ender))))
616 (goto-char begpos)
617 ;; Compute desired indent.
618 (setq indent (save-excursion (funcall comment-indent-function)))
619 ;; If `indent' is nil and there's code before the comment, we can't
620 ;; use `indent-according-to-mode', so we default to comment-column.
621 (unless (or indent (save-excursion (skip-chars-backward " \t") (bolp)))
622 (setq indent comment-column))
623 (if (not indent)
624 ;; comment-indent-function refuses: delegate to line-indent.
625 (indent-according-to-mode)
626 ;; If the comment is at the right of code, adjust the indentation.
627 (unless (save-excursion (skip-chars-backward " \t") (bolp))
628 (setq indent (comment-choose-indent indent)))
629 ;; Update INDENT to leave at least one space
630 ;; after other nonwhite text on the line.
631 (save-excursion
632 (skip-chars-backward " \t")
633 (unless (bolp)
634 (setq indent (max indent (1+ (current-column))))))
635 ;; If that's different from comment's current position, change it.
636 (unless (= (current-column) indent)
637 (delete-region (point) (progn (skip-chars-backward " \t") (point)))
638 (indent-to indent)))
639 (goto-char cpos)
640 (set-marker cpos nil))))
642 ;;;###autoload
643 (defun comment-set-column (arg)
644 "Set the comment column based on point.
645 With no ARG, set the comment column to the current column.
646 With just minus as arg, kill any comment on this line.
647 With any other arg, set comment column to indentation of the previous comment
648 and then align or create a comment on this line at that column."
649 (interactive "P")
650 (cond
651 ((eq arg '-) (comment-kill nil))
652 (arg
653 (comment-normalize-vars)
654 (save-excursion
655 (beginning-of-line)
656 (comment-search-backward)
657 (beginning-of-line)
658 (goto-char (comment-search-forward (line-end-position)))
659 (setq comment-column (current-column))
660 (message "Comment column set to %d" comment-column))
661 (comment-indent))
662 (t (setq comment-column (current-column))
663 (message "Comment column set to %d" comment-column))))
665 ;;;###autoload
666 (defun comment-kill (arg)
667 "Kill the first comment on this line, if any.
668 With prefix ARG, kill comments on that many lines starting with this one."
669 (interactive "P")
670 (comment-normalize-vars)
671 (dotimes (_ (prefix-numeric-value arg))
672 (save-excursion
673 (beginning-of-line)
674 (let ((cs (comment-search-forward (line-end-position) t)))
675 (when cs
676 (goto-char cs)
677 (skip-syntax-backward " ")
678 (setq cs (point))
679 (comment-forward)
680 (kill-region cs (if (bolp) (1- (point)) (point)))
681 (indent-according-to-mode))))
682 (if arg (forward-line 1))))
684 (defun comment-padright (str &optional n)
685 "Construct a string composed of STR plus `comment-padding'.
686 It also adds N copies of the last non-whitespace chars of STR.
687 If STR already contains padding, the corresponding amount is
688 ignored from `comment-padding'.
689 N defaults to 0.
690 If N is `re', a regexp is returned instead, that would match
691 the string for any N."
692 (setq n (or n 0))
693 (when (and (stringp str) (not (string= "" str)))
694 ;; Separate the actual string from any leading/trailing padding
695 (string-match "\\`\\s-*\\(.*?\\)\\s-*\\'" str)
696 (let ((s (match-string 1 str)) ;actual string
697 (lpad (substring str 0 (match-beginning 1))) ;left padding
698 (rpad (concat (substring str (match-end 1)) ;original right padding
699 (substring comment-padding ;additional right padding
700 (min (- (match-end 0) (match-end 1))
701 (length comment-padding)))))
702 ;; We can only duplicate C if the comment-end has multiple chars
703 ;; or if comments can be nested, else the comment-end `}' would
704 ;; be turned into `}}}' where only the first ends the comment
705 ;; and the rest becomes bogus junk.
706 (multi (not (and comment-quote-nested
707 ;; comment-end is a single char
708 (string-match "\\`\\s-*\\S-\\s-*\\'" comment-end)))))
709 (if (not (symbolp n))
710 (concat lpad s (when multi (make-string n (aref str (1- (match-end 1))))) rpad)
711 ;; construct a regexp that would match anything from just S
712 ;; to any possible output of this function for any N.
713 (concat (mapconcat (lambda (c) (concat (regexp-quote (string c)) "?"))
714 lpad "") ;padding is not required
715 (regexp-quote s)
716 (when multi "+") ;the last char of S might be repeated
717 (mapconcat (lambda (c) (concat (regexp-quote (string c)) "?"))
718 rpad "")))))) ;padding is not required
720 (defun comment-padleft (str &optional n)
721 "Construct a string composed of `comment-padding' plus STR.
722 It also adds N copies of the first non-whitespace chars of STR.
723 If STR already contains padding, the corresponding amount is
724 ignored from `comment-padding'.
725 N defaults to 0.
726 If N is `re', a regexp is returned instead, that would match
727 the string for any N."
728 (setq n (or n 0))
729 (when (and (stringp str) (not (string= "" str)))
730 ;; Only separate the left pad because we assume there is no right pad.
731 (string-match "\\`\\s-*" str)
732 (let ((s (substring str (match-end 0)))
733 (pad (concat (substring comment-padding
734 (min (- (match-end 0) (match-beginning 0))
735 (length comment-padding)))
736 (match-string 0 str)))
737 (c (aref str (match-end 0))) ;the first non-space char of STR
738 ;; We can only duplicate C if the comment-end has multiple chars
739 ;; or if comments can be nested, else the comment-end `}' would
740 ;; be turned into `}}}' where only the first ends the comment
741 ;; and the rest becomes bogus junk.
742 (multi (not (and comment-quote-nested
743 ;; comment-end is a single char
744 (string-match "\\`\\s-*\\S-\\s-*\\'" comment-end)))))
745 (if (not (symbolp n))
746 (concat pad (when multi (make-string n c)) s)
747 ;; Construct a regexp that would match anything from just S
748 ;; to any possible output of this function for any N.
749 ;; We match any number of leading spaces because this regexp will
750 ;; be used for uncommenting where we might want to remove
751 ;; uncomment markers with arbitrary leading space (because
752 ;; they were aligned).
753 (concat "\\s-*"
754 (if multi (concat (regexp-quote (string c)) "*"))
755 (regexp-quote s))))))
757 ;;;###autoload
758 (defun uncomment-region (beg end &optional arg)
759 "Uncomment each line in the BEG .. END region.
760 The numeric prefix ARG can specify a number of chars to remove from the
761 comment markers."
762 (interactive "*r\nP")
763 (comment-normalize-vars)
764 (when (> beg end) (setq beg (prog1 end (setq end beg))))
765 ;; Bind `comment-use-global-state' to nil. While uncommenting a region
766 ;; (which works a line at a time), a comment can appear to be
767 ;; included in a mult-line string, but it is actually not.
768 (let ((comment-use-global-state nil))
769 (save-excursion
770 (funcall uncomment-region-function beg end arg))))
772 (defun uncomment-region-default (beg end &optional arg)
773 "Uncomment each line in the BEG .. END region.
774 The numeric prefix ARG can specify a number of chars to remove from the
775 comment markers."
776 (goto-char beg)
777 (setq end (copy-marker end))
778 (let* ((numarg (prefix-numeric-value arg))
779 (ccs comment-continue)
780 (srei (comment-padright ccs 're))
781 (csre (comment-padright comment-start 're))
782 (sre (and srei (concat "^\\s-*?\\(" srei "\\)")))
783 spt)
784 (while (and (< (point) end)
785 (setq spt (comment-search-forward end t)))
786 (let ((ipt (point))
787 ;; Find the end of the comment.
788 (ept (progn
789 (goto-char spt)
790 (unless (or (comment-forward)
791 ;; Allow non-terminated comments.
792 (eobp))
793 (error "Can't find the comment end"))
794 (point)))
795 (box nil)
796 (box-equal nil)) ;Whether we might be using `=' for boxes.
797 (save-restriction
798 (narrow-to-region spt ept)
800 ;; Remove the comment-start.
801 (goto-char ipt)
802 (skip-syntax-backward " ")
803 ;; A box-comment starts with a looong comment-start marker.
804 (when (and (or (and (= (- (point) (point-min)) 1)
805 (setq box-equal t)
806 (looking-at "=\\{7\\}")
807 (not (eq (char-before (point-max)) ?\n))
808 (skip-chars-forward "="))
809 (> (- (point) (point-min) (length comment-start)) 7))
810 (> (count-lines (point-min) (point-max)) 2))
811 (setq box t))
812 ;; Skip the padding. Padding can come from comment-padding and/or
813 ;; from comment-start, so we first check comment-start.
814 (if (or (save-excursion (goto-char (point-min)) (looking-at csre))
815 (looking-at (regexp-quote comment-padding)))
816 (goto-char (match-end 0)))
817 (when (and sre (looking-at (concat "\\s-*\n\\s-*" srei)))
818 (goto-char (match-end 0)))
819 (if (null arg) (delete-region (point-min) (point))
820 (skip-syntax-backward " ")
821 (delete-char (- numarg))
822 (unless (or (bobp)
823 (save-excursion (goto-char (point-min))
824 (looking-at comment-start-skip)))
825 ;; If there's something left but it doesn't look like
826 ;; a comment-start any more, just remove it.
827 (delete-region (point-min) (point))))
829 ;; Remove the end-comment (and leading padding and such).
830 (goto-char (point-max)) (comment-enter-backward)
831 ;; Check for special `=' used sometimes in comment-box.
832 (when (and box-equal (not (eq (char-before (point-max)) ?\n)))
833 (let ((pos (point)))
834 ;; skip `=' but only if there are at least 7.
835 (when (> (skip-chars-backward "=") -7) (goto-char pos))))
836 (unless (looking-at "\\(\n\\|\\s-\\)*\\'")
837 (when (and (bolp) (not (bobp))) (backward-char))
838 (if (null arg) (delete-region (point) (point-max))
839 (skip-syntax-forward " ")
840 (delete-char numarg)
841 (unless (or (eobp) (looking-at comment-end-skip))
842 ;; If there's something left but it doesn't look like
843 ;; a comment-end any more, just remove it.
844 (delete-region (point) (point-max)))))
846 ;; Unquote any nested end-comment.
847 (comment-quote-nested comment-start comment-end t)
849 ;; Eliminate continuation markers as well.
850 (when sre
851 (let* ((cce (comment-string-reverse (or comment-continue
852 comment-start)))
853 (erei (and box (comment-padleft cce 're)))
854 (ere (and erei (concat "\\(" erei "\\)\\s-*$"))))
855 (goto-char (point-min))
856 (while (progn
857 (if (and ere (re-search-forward
858 ere (line-end-position) t))
859 (replace-match "" t t nil (if (match-end 2) 2 1))
860 (setq ere nil))
861 (forward-line 1)
862 (re-search-forward sre (line-end-position) t))
863 (replace-match "" t t nil (if (match-end 2) 2 1)))))
864 ;; Go to the end for the next comment.
865 (goto-char (point-max))))))
866 (set-marker end nil))
868 (defun comment-make-extra-lines (cs ce ccs cce min-indent max-indent &optional block)
869 "Make the leading and trailing extra lines.
870 This is used for `extra-line' style (or `box' style if BLOCK is specified)."
871 (let ((eindent 0))
872 (if (not block)
873 ;; Try to match CS and CE's content so they align aesthetically.
874 (progn
875 (setq ce (comment-string-strip ce t t))
876 (when (string-match "\\(.+\\).*\n\\(.*?\\)\\1" (concat ce "\n" cs))
877 (setq eindent
878 (max (- (match-end 2) (match-beginning 2) (match-beginning 0))
879 0))))
880 ;; box comment
881 (let* ((width (- max-indent min-indent))
882 (s (concat cs "a=m" cce))
883 (e (concat ccs "a=m" ce))
884 (c (if (string-match ".*\\S-\\S-" cs)
885 (aref cs (1- (match-end 0)))
886 (if (and (equal comment-end "") (string-match ".*\\S-" cs))
887 (aref cs (1- (match-end 0))) ?=)))
888 (re "\\s-*a=m\\s-*")
889 (_ (string-match re s))
890 (lcs (length cs))
891 (fill
892 (make-string (+ width (- (match-end 0)
893 (match-beginning 0) lcs 3)) c)))
894 (setq cs (replace-match fill t t s))
895 (when (and (not (string-match comment-start-skip cs))
896 (string-match "a=m" s))
897 ;; The whitespace around CS cannot be ignored: put it back.
898 (setq re "a=m")
899 (setq fill (make-string (- width lcs) c))
900 (setq cs (replace-match fill t t s)))
901 (string-match re e)
902 (setq ce (replace-match fill t t e))))
903 (cons (concat cs "\n" (make-string min-indent ? ) ccs)
904 (concat cce "\n" (make-string (+ min-indent eindent) ? ) ce))))
906 (defmacro comment-with-narrowing (beg end &rest body)
907 "Execute BODY with BEG..END narrowing.
908 Space is added (and then removed) at the beginning for the text's
909 indentation to be kept as it was before narrowing."
910 (declare (debug t) (indent 2))
911 (let ((bindent (make-symbol "bindent")))
912 `(let ((,bindent (save-excursion (goto-char ,beg) (current-column))))
913 (save-restriction
914 (narrow-to-region ,beg ,end)
915 (goto-char (point-min))
916 (insert (make-string ,bindent ? ))
917 (prog1
918 (progn ,@body)
919 ;; remove the bindent
920 (save-excursion
921 (goto-char (point-min))
922 (when (looking-at " *")
923 (let ((n (min (- (match-end 0) (match-beginning 0)) ,bindent)))
924 (delete-char n)
925 (setq ,bindent (- ,bindent n))))
926 (end-of-line)
927 (let ((e (point)))
928 (beginning-of-line)
929 (while (and (> ,bindent 0) (re-search-forward " *" e t))
930 (let ((n (min ,bindent (- (match-end 0) (match-beginning 0) 1))))
931 (goto-char (match-beginning 0))
932 (delete-char n)
933 (setq ,bindent (- ,bindent n)))))))))))
935 (defun comment-add (arg)
936 (if (and (null arg) (= (string-match "[ \t]*\\'" comment-start) 1))
937 comment-add
938 (1- (prefix-numeric-value arg))))
940 (defun comment-region-internal (beg end cs ce
941 &optional ccs cce block lines indent)
942 "Comment region BEG .. END.
943 CS and CE are the comment start string and comment end string,
944 respectively. CCS and CCE are the comment continuation strings
945 for the start and end of lines, respectively (default to CS and CE).
946 BLOCK indicates that end of lines should be marked with either CCE,
947 CE or CS \(if CE is empty) and that those markers should be aligned.
948 LINES indicates that an extra lines will be used at the beginning
949 and end of the region for CE and CS.
950 INDENT indicates to put CS and CCS at the current indentation of
951 the region rather than at left margin."
952 ;;(assert (< beg end))
953 (let ((no-empty (not (or (eq comment-empty-lines t)
954 (and comment-empty-lines (zerop (length ce)))))))
955 ;; Sanitize CE and CCE.
956 (if (and (stringp ce) (string= "" ce)) (setq ce nil))
957 (if (and (stringp cce) (string= "" cce)) (setq cce nil))
958 ;; If CE is empty, multiline cannot be used.
959 (unless ce (setq ccs nil cce nil))
960 ;; Should we mark empty lines as well ?
961 (if (or ccs block lines) (setq no-empty nil))
962 ;; Make sure we have end-markers for BLOCK mode.
963 (when block (unless ce (setq ce (comment-string-reverse cs))))
964 ;; If BLOCK is not requested, we don't need CCE.
965 (unless block (setq cce nil))
966 ;; Continuation defaults to the same as CS and CE.
967 (unless ccs (setq ccs cs cce ce))
969 (save-excursion
970 (goto-char end)
971 ;; If the end is not at the end of a line and the comment-end
972 ;; is implicit (i.e. a newline), explicitly insert a newline.
973 (unless (or ce (eolp)) (insert "\n") (indent-according-to-mode))
974 (comment-with-narrowing beg end
975 (let ((min-indent (point-max))
976 (max-indent 0))
977 (goto-char (point-min))
978 ;; Quote any nested comment marker
979 (comment-quote-nested comment-start comment-end nil)
981 ;; Loop over all lines to find the needed indentations.
982 (goto-char (point-min))
983 (while
984 (progn
985 (unless (looking-at "[ \t]*$")
986 (setq min-indent (min min-indent (current-indentation))))
987 (end-of-line)
988 (setq max-indent (max max-indent (current-column)))
989 (not (or (eobp) (progn (forward-line) nil)))))
991 (setq max-indent
992 (+ max-indent (max (length cs) (length ccs))
993 ;; Inserting ccs can change max-indent by (1- tab-width)
994 ;; but only if there are TABs in the boxed text, of course.
995 (if (save-excursion (goto-char beg)
996 (search-forward "\t" end t))
997 (1- tab-width) 0)))
998 (unless indent (setq min-indent 0))
1000 ;; make the leading and trailing lines if requested
1001 (when lines
1002 (let ((csce
1003 (comment-make-extra-lines
1004 cs ce ccs cce min-indent max-indent block)))
1005 (setq cs (car csce))
1006 (setq ce (cdr csce))))
1008 (goto-char (point-min))
1009 ;; Loop over all lines from BEG to END.
1010 (while
1011 (progn
1012 (unless (and no-empty (looking-at "[ \t]*$"))
1013 (move-to-column min-indent t)
1014 (insert cs) (setq cs ccs) ;switch to CCS after the first line
1015 (end-of-line)
1016 (if (eobp) (setq cce ce))
1017 (when cce
1018 (when block (move-to-column max-indent t))
1019 (insert cce)))
1020 (end-of-line)
1021 (not (or (eobp) (progn (forward-line) nil))))))))))
1023 ;;;###autoload
1024 (defun comment-region (beg end &optional arg)
1025 "Comment or uncomment each line in the region.
1026 With just \\[universal-argument] prefix arg, uncomment each line in region BEG .. END.
1027 Numeric prefix ARG means use ARG comment characters.
1028 If ARG is negative, delete that many comment characters instead.
1029 By default, comments start at the left margin, are terminated on each line,
1030 even for syntax in which newline does not end the comment and blank lines
1031 do not get comments. This can be changed with `comment-style'.
1033 The strings used as comment starts are built from
1034 `comment-start' without trailing spaces and `comment-padding'."
1035 (interactive "*r\nP")
1036 (comment-normalize-vars)
1037 (if (> beg end) (let (mid) (setq mid beg beg end end mid)))
1038 (save-excursion
1039 ;; FIXME: maybe we should call uncomment depending on ARG.
1040 (funcall comment-region-function beg end arg)))
1042 (defun comment-region-default (beg end &optional arg)
1043 (let* ((numarg (prefix-numeric-value arg))
1044 (style (cdr (assoc comment-style comment-styles)))
1045 (lines (nth 2 style))
1046 (block (nth 1 style))
1047 (multi (nth 0 style)))
1049 ;; We use `chars' instead of `syntax' because `\n' might be
1050 ;; of end-comment syntax rather than of whitespace syntax.
1051 ;; sanitize BEG and END
1052 (goto-char beg) (skip-chars-forward " \t\n\r") (beginning-of-line)
1053 (setq beg (max beg (point)))
1054 (goto-char end) (skip-chars-backward " \t\n\r") (end-of-line)
1055 (setq end (min end (point)))
1056 (if (>= beg end) (error "Nothing to comment"))
1058 ;; sanitize LINES
1059 (setq lines
1060 (and
1061 lines ;; multi
1062 (progn (goto-char beg) (beginning-of-line)
1063 (skip-syntax-forward " ")
1064 (>= (point) beg))
1065 (progn (goto-char end) (end-of-line) (skip-syntax-backward " ")
1066 (<= (point) end))
1067 (or block (not (string= "" comment-end)))
1068 (or block (progn (goto-char beg) (search-forward "\n" end t)))))
1070 ;; don't add end-markers just because the user asked for `block'
1071 (unless (or lines (string= "" comment-end)) (setq block nil))
1073 (cond
1074 ((consp arg) (uncomment-region beg end))
1075 ((< numarg 0) (uncomment-region beg end (- numarg)))
1077 (setq numarg (comment-add arg))
1078 (comment-region-internal
1079 beg end
1080 (let ((s (comment-padright comment-start numarg)))
1081 (if (string-match comment-start-skip s) s
1082 (comment-padright comment-start)))
1083 (let ((s (comment-padleft comment-end numarg)))
1084 (and s (if (string-match comment-end-skip s) s
1085 (comment-padright comment-end))))
1086 (if multi (comment-padright comment-continue numarg))
1087 (if multi
1088 (comment-padleft (comment-string-reverse comment-continue) numarg))
1089 block
1090 lines
1091 (nth 3 style))))))
1093 ;;;###autoload
1094 (defun comment-box (beg end &optional arg)
1095 "Comment out the BEG .. END region, putting it inside a box.
1096 The numeric prefix ARG specifies how many characters to add to begin- and
1097 end- comment markers additionally to what `comment-add' already specifies."
1098 (interactive "*r\np")
1099 (comment-normalize-vars)
1100 (let ((comment-style (if (cadr (assoc comment-style comment-styles))
1101 'box-multi 'box)))
1102 (comment-region beg end (+ comment-add arg))))
1105 ;;;###autoload
1106 (defun comment-or-uncomment-region (beg end &optional arg)
1107 "Call `comment-region', unless the region only consists of comments,
1108 in which case call `uncomment-region'. If a prefix arg is given, it
1109 is passed on to the respective function."
1110 (interactive "*r\nP")
1111 (comment-normalize-vars)
1112 (funcall (if (save-excursion ;; check for already commented region
1113 (goto-char beg)
1114 (comment-forward (point-max))
1115 (<= end (point)))
1116 'uncomment-region 'comment-region)
1117 beg end arg))
1119 ;;;###autoload
1120 (defun comment-dwim (arg)
1121 "Call the comment command you want (Do What I Mean).
1122 If the region is active and `transient-mark-mode' is on, call
1123 `comment-region' (unless it only consists of comments, in which
1124 case it calls `uncomment-region').
1125 Else, if the current line is empty, insert a comment and indent it.
1126 Else if a prefix ARG is specified, call `comment-kill'.
1127 Else, call `comment-indent'.
1128 You can configure `comment-style' to change the way regions are commented."
1129 (interactive "*P")
1130 (comment-normalize-vars)
1131 (if (and mark-active transient-mark-mode)
1132 (comment-or-uncomment-region (region-beginning) (region-end) arg)
1133 (if (save-excursion (beginning-of-line) (not (looking-at "\\s-*$")))
1134 ;; FIXME: If there's no comment to kill on this line and ARG is
1135 ;; specified, calling comment-kill is not very clever.
1136 (if arg (comment-kill (and (integerp arg) arg)) (comment-indent))
1137 (let ((add (comment-add arg)))
1138 ;; Some modes insist on keeping column 0 comment in column 0
1139 ;; so we need to move away from it before inserting the comment.
1140 (indent-according-to-mode)
1141 (insert (comment-padright comment-start add))
1142 (save-excursion
1143 (unless (string= "" comment-end)
1144 (insert (comment-padleft comment-end add)))
1145 (indent-according-to-mode))))))
1147 ;;;###autoload
1148 (defcustom comment-auto-fill-only-comments nil
1149 "Non-nil means to only auto-fill inside comments.
1150 This has no effect in modes that do not define a comment syntax."
1151 :type 'boolean
1152 :group 'comment)
1154 (defun comment-valid-prefix-p (prefix compos)
1155 "Check that the adaptive-fill-prefix is consistent with the context.
1156 PREFIX is the prefix (presumably guessed by `adaptive-fill-mode').
1157 COMPOS is the position of the beginning of the comment we're in, or nil
1158 if we're not inside a comment."
1159 ;; This consistency checking is mostly needed to workaround the limitation
1160 ;; of auto-fill-mode whose paragraph-determination doesn't pay attention
1161 ;; to comment boundaries.
1162 (if (null compos)
1163 ;; We're not inside a comment: the prefix shouldn't match
1164 ;; a comment-starter.
1165 (not (and comment-start comment-start-skip
1166 (string-match comment-start-skip prefix)))
1168 ;; Accept any prefix if the current comment is not EOL-terminated.
1169 (save-excursion (goto-char compos) (comment-forward) (not (bolp)))
1170 ;; Accept any prefix that starts with the same comment-start marker
1171 ;; as the current one.
1172 (when (string-match (concat "\\`[ \t]*\\(?:" comment-start-skip "\\)")
1173 prefix)
1174 (let ((prefix-com (comment-string-strip (match-string 0 prefix) nil t)))
1175 (string-match "\\`[ \t]*" prefix-com)
1176 (let* ((prefix-space (match-string 0 prefix-com))
1177 (prefix-indent (string-width prefix-space))
1178 (prefix-comstart (substring prefix-com (match-end 0))))
1179 (save-excursion
1180 (goto-char compos)
1181 ;; The comstart marker is the same.
1182 (and (looking-at (regexp-quote prefix-comstart))
1183 ;; The indentation as well.
1184 (or (= prefix-indent
1185 (- (current-column) (current-left-margin)))
1186 ;; Check the indentation in two different ways, just
1187 ;; to try and avoid most of the potential funny cases.
1188 (equal prefix-space
1189 (buffer-substring (point)
1190 (progn (move-to-left-margin)
1191 (point)))))))))))))
1194 ;;;###autoload
1195 (defun comment-indent-new-line (&optional soft)
1196 "Break line at point and indent, continuing comment if within one.
1197 This indents the body of the continued comment
1198 under the previous comment line.
1200 This command is intended for styles where you write a comment per line,
1201 starting a new comment (and terminating it if necessary) on each line.
1202 If you want to continue one comment across several lines, use \\[newline-and-indent].
1204 If a fill column is specified, it overrides the use of the comment column
1205 or comment indentation.
1207 The inserted newline is marked hard if variable `use-hard-newlines' is true,
1208 unless optional argument SOFT is non-nil."
1209 (interactive)
1210 (comment-normalize-vars t)
1211 (let (compos comin)
1212 ;; If we are not inside a comment and we only auto-fill comments,
1213 ;; don't do anything (unless no comment syntax is defined).
1214 (unless (and comment-start
1215 comment-auto-fill-only-comments
1216 (not (interactive-p))
1217 (not (save-excursion
1218 (prog1 (setq compos (comment-beginning))
1219 (setq comin (point))))))
1221 ;; Now we know we should auto-fill.
1222 ;; Insert the newline before removing empty space so that markers
1223 ;; get preserved better.
1224 (if soft (insert-and-inherit ?\n) (newline 1))
1225 (save-excursion (forward-char -1) (delete-horizontal-space))
1226 (delete-horizontal-space)
1228 (if (and fill-prefix (not adaptive-fill-mode))
1229 ;; Blindly trust a non-adaptive fill-prefix.
1230 (progn
1231 (indent-to-left-margin)
1232 (insert-before-markers-and-inherit fill-prefix))
1234 ;; If necessary check whether we're inside a comment.
1235 (unless (or compos (null comment-start))
1236 (save-excursion
1237 (backward-char)
1238 (setq compos (comment-beginning))
1239 (setq comin (point))))
1241 (cond
1242 ;; If there's an adaptive prefix, use it unless we're inside
1243 ;; a comment and the prefix is not a comment starter.
1244 ((and fill-prefix
1245 (comment-valid-prefix-p fill-prefix compos))
1246 (indent-to-left-margin)
1247 (insert-and-inherit fill-prefix))
1248 ;; If we're not inside a comment, just try to indent.
1249 ((not compos) (indent-according-to-mode))
1251 (let* ((comment-column
1252 ;; The continuation indentation should be somewhere between
1253 ;; the current line's indentation (plus 2 for good measure)
1254 ;; and the current comment's indentation, with a preference
1255 ;; for comment-column.
1256 (save-excursion
1257 ;; FIXME: use prev line's info rather than first line's.
1258 (goto-char compos)
1259 (min (current-column) (max comment-column
1260 (+ 2 (current-indentation))))))
1261 (comstart (buffer-substring compos comin))
1262 (normalp
1263 (string-match (regexp-quote (comment-string-strip
1264 comment-start t t))
1265 comstart))
1266 (comment-end
1267 (if normalp comment-end
1268 ;; The comment starter is not the normal comment-start
1269 ;; so we can't just use comment-end.
1270 (save-excursion
1271 (goto-char compos)
1272 (if (not (comment-forward)) comment-end
1273 (comment-string-strip
1274 (buffer-substring
1275 (save-excursion (comment-enter-backward) (point))
1276 (point))
1277 nil t)))))
1278 (comment-start comstart)
1279 (continuep (or comment-multi-line
1280 (cadr (assoc comment-style comment-styles))))
1281 ;; Force comment-continue to be recreated from comment-start.
1282 ;; FIXME: wrong if comment-continue was set explicitly!
1283 ;; FIXME: use prev line's continuation if available.
1284 (comment-continue nil))
1285 (if (and comment-multi-line (> (length comment-end) 0))
1286 (indent-according-to-mode)
1287 (insert-and-inherit ?\n)
1288 (forward-char -1)
1289 (comment-indent continuep)
1290 (save-excursion
1291 (let ((pt (point)))
1292 (end-of-line)
1293 (let ((comend (buffer-substring pt (point))))
1294 ;; The 1+ is to make sure we delete the \n inserted above.
1295 (delete-region pt (1+ (point)))
1296 (end-of-line 0)
1297 (insert comend))))))))))))
1299 (provide 'newcomment)
1301 ;; arch-tag: 01e3320a-00c8-44ea-a696-8f8e7354c858
1302 ;;; newcomment.el ends here