bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#50840: 28.0.50; Support GNU style of multiline comments in C source


From: Juri Linkov
Subject: bug#50840: 28.0.50; Support GNU style of multiline comments in C source code
Date: Sun, 03 Oct 2021 20:02:14 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu)

> But there's no style to take a sequence of lines like this:
>
>      First line
>      continuation line with more text,
>      more text.  And another sentence
>      which continues here.
>
> and make it look like this:
>
>      /* First line
>         continuation line with more text,
>         more text.  And another sentence
>         which continues here.  */

Recently lisp/newcomment.el was fixed in bug#47167 and bug#50226
to handle whitespace in 'comment-continue' with the multi-line style.
So you can get the above with:

  (setq-local comment-style 'multi-line
              comment-continue "   ")

PS: It doesn't add double space at the sentence end
since this is a separate feature.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]