1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
|
/* $NetBSD: lsym_comment.c,v 1.24 2023/06/23 20:59:04 rillig Exp $ */
/*
* Tests for the token lsym_comment, which starts a comment.
*
* C11 distinguishes block comments and end-of-line comments. Indent further
* distinguishes box comments that are a special kind of block comments.
*
* See also:
* opt_fc1.c
* lsym_comment.c
*/
/*-
* TODO: systematically test comments
*
* - starting in column 1, with opt.format_col1_comments (-fc1)
* - starting in column 1, without opt.format_col1_comments (-fc1)
* - starting in column 9, independent of opt.format_col1_comments (-fc1)
* - starting in column 33, the default
* - starting in column 65, which is already close to the default right margin
* - starting in column 81, spilling into the right margin
*
* - block comment starting with '/' '*' '-'
* - block comment starting with '/' '*' '*'
* - block comment starting with '/' '*' '\n'
* - end-of-line comment starting with '//'
* - end-of-line comment starting with '//x', so without leading space
* - block comment starting with '/' '*' 'x', so without leading space
*
* - block/end-of-line comment to the right of a label
* - block/end-of-line comment to the right of code
* - block/end-of-line comment to the right of label with code
*
* - with/without opt.comment_delimiter_on_blank_line (-cdb)
* - with/without opt.star_comment_cont (-sc)
* - with/without opt.format_block_comments (-fbc)
* - with varying opt.max_line_length (32, 64, 80, 140)
* - with varying opt.unindent_displace (-d0, -d2, -d-5)
* - with varying opt.indent_size (3, 4, 8)
* - with varying opt.tabsize (3, 4, 8, 16)
* - with varying opt.block_comment_max_line_length (-lc60, -lc78, -lc90)
* - with varying opt.comment_column (-c0, -c1, -c33, -c80)
* - with varying opt.decl_comment_column (-cd0, -cd1, -cd20, -cd33, -cd80)
* - with/without ps.line_has_decl
*
* - very long comments that overflow the buffer 'com'
* - comments that come from save_com
* - very long word that already spills over the right margin
* - wrap/nowrap comment containing '\n'
* - wrap/nowrap comment containing '\f'
* - wrap/nowrap comment containing '\t'
*/
//indent input
typedef enum x {
aaaaaaaaaaaaaaaaaaaaaa = 1 << 0, /* test a */
bbbbbbbbbbbbbbbbb = 1 << 1, /* test b */
cccccccccccccc = 1 << 1, /* test c */
dddddddddddddddddddddddddddddd = 1 << 2 /* test d */
} x;
//indent end
//indent run-equals-input -bbb
//indent input
/* See FreeBSD r303597, r303598, r309219, and r309343 */
void
t(void) {
/*
* Old indent wrapped the URL near where this sentence ends.
*
* https://www.freebsd.org/cgi/man.cgi?query=indent&apropos=0&sektion=0&manpath=FreeBSD+12-current&arch=default&format=html
*/
/*
* The default maximum line length for comments is 78, and the 'kk' at
* the end makes the line exactly 78 bytes long.
*
* aaaaaa bbbbbb cccccc dddddd eeeeee ffffff ggggg hhhhh iiiii jjjj kk
*/
/*
* Old indent unnecessarily removed the star comment continuation on the next line.
*
* *test*
*/
/* r309219 Go through linked list, freeing from the malloced (t[-1]) address. */
/* r309343 */
}
//indent end
//indent run -bbb
/* See FreeBSD r303597, r303598, r309219, and r309343 */
void
t(void)
{
/*
* Old indent wrapped the URL near where this sentence ends.
*
* https://www.freebsd.org/cgi/man.cgi?query=indent&apropos=0&sektion=0&manpath=FreeBSD+12-current&arch=default&format=html
*/
/*
* The default maximum line length for comments is 78, and the 'kk' at
* the end makes the line exactly 78 bytes long.
*
* aaaaaa bbbbbb cccccc dddddd eeeeee ffffff ggggg hhhhh iiiii jjjj kk
*/
/*
* Old indent unnecessarily removed the star comment continuation on
* the next line.
*
* *test*
*/
/*
* r309219 Go through linked list, freeing from the malloced (t[-1])
* address.
*/
/* r309343 */
}
//indent end
/*
* The first Christmas tree is to the right of the code, therefore the comment
* is moved to the code comment column; the follow-up lines of that comment
* are moved by the same distance, to preserve the internal layout.
*
* The other Christmas tree is a standalone block comment, therefore the
* comment starts in the code column.
*/
//indent input
{
if (1) /*- a Christmas tree *
***
***** */
/*- another one *
***
***** */
1;
}
//indent end
//indent run -bbb
{
if (1) /*- a Christmas tree *
***
***** */
/*- another one *
***
***** */
1;
}
//indent end
/*
* The first Christmas tree is to the right of the code, therefore the comment
* is moved to the code comment column; the follow-up lines of that comment
* are moved by the same distance, to preserve the internal layout.
*
* The other Christmas tree is a standalone block comment, therefore the
* comment starts in the code column.
*/
//indent input
{
if (7) { /*- a Christmas tree *
***
***** */
/*- another one *
***
***** */
stmt();
}
}
//indent end
//indent run -bbb
{
if (7) { /*- a Christmas tree *
***
***** */
/*- another one *
***
***** */
stmt();
}
}
//indent end
//indent input
int decl;/*-fixed comment
fixed comment*/
//indent end
//indent run -di0
int decl; /*-fixed comment
fixed comment*/
//indent end
/*
* XXX: The second line of the above comment contains 11 spaces in a row,
* instead of using as many tabs as possible.
*/
//indent input
{
if (0)/*-first line |
second line |*/
;
}
//indent end
//indent run -di0
{
if (0) /*-first line |
second line |*/
;
}
//indent end
/*
* Ensure that all text of the comment is preserved when the comment is moved
* to the right.
*/
//indent input
int decl;/*-fixed comment
123456789ab fixed comment*/
//indent end
//indent run -di0
int decl; /*-fixed comment
123456789ab fixed comment*/
//indent end
/*
* Ensure that all text of the comment is preserved when the comment is moved
* to the right.
*/
//indent input
{
if(0)/*-first line
123456789ab second line |*/
;
}
//indent end
//indent run -di0
{
if (0) /*-first line
123456789ab second line |*/
;
}
//indent end
/*
* Ensure that all text of the comment is preserved when the comment is moved
* to the left. In this case, the internal layout of the comment cannot be
* preserved since the second line already starts in column 1.
*/
//indent input
int decl; /*-|fixed comment
| minus 12 |
| tabs inside |
|---|
|-----------|
tab1+++ tab2--- tab3+++ tab4--- tab5+++ tab6--- tab7+++fixed comment*/
//indent end
//indent run -di0
int decl; /*-|fixed comment
| minus 12 |
| tabs inside |
|---|
|-----------|
tab1+++ tab2--- tab3+++ tab4--- tab5+++ tab6--- tab7+++fixed comment*/
//indent end
/*
* Ensure that all text of the comment is preserved when the comment is moved
* to the left. In this case, the internal layout of the comment cannot be
* preserved since the second line already starts in column 1.
*/
//indent input
{
if(0) /*-|first line
| minus 12 |
| tabs inside |
|---|
|-----------|
tab1+++ tab2--- tab3+++ tab4--- tab5+++ tab6--- tab7+++fixed comment*/
;
}
//indent end
//indent run -di0
{
if (0) /*-|first line
| minus 12 |
| tabs inside |
|---|
|-----------|
tab1+++ tab2--- tab3+++ tab4--- tab5+++ tab6--- tab7+++fixed comment*/
;
}
//indent end
/*
* Ensure that '{' after a comment is preserved.
*/
//indent input
{
if(0)/*comment*/{
}
}
//indent end
/* Before 2023-05-11, the comment and the '{' swapped places. */
//indent run
{
if (0) /* comment */ {
}
}
//indent end
/*
* The following comments test line breaking when the comment ends with a
* space.
*/
//indent input
/* 456789 123456789 123456789 12345 */
/* 456789 123456789 123456789 123456 */
/* 456789 123456789 123456789 1234567 */
/* 456789 123456789 123456789 12345678 */
/* 456789 123456789 123456789 123456789 */
//indent end
//indent run -l38
/* 456789 123456789 123456789 12345 */
/*
* 456789 123456789 123456789 123456
*/
/*
* 456789 123456789 123456789 1234567
*/
/*
* 456789 123456789 123456789 12345678
*/
/*
* 456789 123456789 123456789
* 123456789
*/
//indent end
/*
* When determining whether the comment fits in a single line, only the first
* trailing space or tab is kept, the others are removed.
*/
//indent input
/* tab: */
/* 456789 123456789 123456789 12345 */
/* 456789 123456789 123456789 123456 */
/* space: */
/* 456789 123456789 123456789 12345 */
/* 456789 123456789 123456789 123456 */
//indent end
//indent run -l38
/* tab: */
/*
* 456789 123456789 123456789 12345
*/
/*
* 456789 123456789 123456789 123456
*/
/* space: */
/* 456789 123456789 123456789 12345 */
/*
* 456789 123456789 123456789 123456
*/
//indent end
/*
* The following comments test line breaking when the comment does not end
* with a space. Since indent adds a trailing space to a single-line comment,
* this space has to be taken into account when computing the line length.
*/
//indent input
/* x . line length 35*/
/* x .. line length 36*/
/* x ... line length 37*/
/* x .... line length 38*/
/* x ..... line length 39*/
/* x ...... line length 40*/
/* x ....... line length 41*/
/* x ........ line length 42*/
//indent end
//indent run -l38
/* x . line length 35 */
/* x .. line length 36 */
/* x ... line length 37 */
/* x .... line length 38 */
/*
* x ..... line length 39
*/
/*
* x ...... line length 40
*/
/*
* x ....... line length 41
*/
/*
* x ........ line length 42
*/
//indent end
/*
* The different types of comments that indent distinguishes, starting in
* column 1 (see options '-fc1' and '-nfc1').
*/
//indent input
/* This is a traditional C block comment. */
// This is a C99 line comment.
/*
* This is a box comment since its first line (the one above this line) is
* empty.
*
*
*
* Its text gets wrapped.
* Empty lines serve as paragraphs.
*/
/**
* This is a box comment
* that is not re-wrapped.
*/
/*-
* This is a box comment
* that is not re-wrapped.
* It is often used for copyright declarations.
*/
//indent end
//indent run
/* This is a traditional C block comment. */
// This is a C99 line comment.
/*
* This is a box comment since its first line (the one above this line) is
* empty.
*
*
*
* Its text gets wrapped. Empty lines serve as paragraphs.
*/
/**
* This is a box comment
* that is not re-wrapped.
*/
/*-
* This is a box comment
* that is not re-wrapped.
* It is often used for copyright declarations.
*/
//indent end
/*
* The different types of comments that indent distinguishes, starting in
* column 9, so they are independent of the option '-fc1'.
*/
//indent input
void
function(void)
{
/* This is a traditional C block comment. */
/*
* This is a box comment.
*
* It starts in column 9, not 1,
* therefore it gets re-wrapped.
*/
/**
* This is a box comment
* that is not re-wrapped, even though it starts in column 9, not 1.
*/
/*-
* This is a box comment
* that is not re-wrapped.
*/
}
//indent end
//indent run
void
function(void)
{
/* This is a traditional C block comment. */
/*
* This is a box comment.
*
* It starts in column 9, not 1, therefore it gets re-wrapped.
*/
/**
* This is a box comment
* that is not re-wrapped, even though it starts in column 9, not 1.
*/
/*-
* This is a box comment
* that is not re-wrapped.
*/
}
//indent end
/*
* Comments to the right of declarations.
*/
//indent input
void
function(void)
{
int decl; /* declaration comment */
int decl; /* short
* multi-line
* declaration
* comment */
int decl; /* long single-line declaration comment that is longer than the allowed line width */
int decl; /* long multi-line declaration comment
* that is longer than
* the allowed line width */
int decl; // C99 declaration comment
{
int decl; /* indented declaration */
{
int decl; /* indented declaration */
{
int decl; /* indented declaration */
{
int decl; /* indented declaration */
}
}
}
}
}
//indent end
//indent run -ldi0
void
function(void)
{
int decl; /* declaration comment */
int decl; /* short multi-line declaration comment */
int decl; /* long single-line declaration comment that
* is longer than the allowed line width */
int decl; /* long multi-line declaration comment that is
* longer than the allowed line width */
int decl; // C99 declaration comment
{
int decl; /* indented declaration */
{
int decl; /* indented declaration */
{
int decl; /* indented declaration */
{
// $ This comment is indented so far to the right that it may overshoot the
// $ right margin. The allowed line length is increased to the starting
// $ indentation of 56 plus a fixed amount of 25 columns, resulting in 81.
// $ The trailing '*' would fit, but the trailing '/' is too much.
int decl; /* indented declaration
*/
}
}
}
}
}
//indent end
/*
* Comments to the right of code.
*/
//indent input
void
function(void)
{
code(); /* code comment */
code(); /* code comment _________ to line length 78 */
code(); /* code comment __________ to line length 79 */
code(); /* code comment ___________ to line length 80 */
code(); /* code comment ____________ to line length 81 */
code(); /* code comment _____________ to line length 82 */
/* $ In the following comments, the line length is measured after formatting. */
code(); /* code comment _________ to line length 78*/
code(); /* code comment __________ to line length 79*/
code(); /* code comment ___________ to line length 80*/
code(); /* code comment ____________ to line length 81*/
code(); /* code comment _____________ to line length 82*/
code(); /* short
* multi-line
* code
* comment */
code(); /* long single-line code comment that is longer than the allowed line width */
code(); /* long multi-line code comment
* that is longer than
* the allowed line width */
code(); // C99 code comment
code(); // C99 code comment ________ to line length 78
code(); // C99 code comment _________ to line length 79
code(); // C99 code comment __________ to line length 80
code(); // C99 code comment ___________ to line length 81
code(); // C99 code comment ____________ to line length 82
if (cond) /* comment */
if (cond) /* comment */
if (cond) /* comment */
if (cond) /* comment */
if (cond) /* comment */
code(); /* comment */
}
//indent end
//indent run -l78
void
function(void)
{
code(); /* code comment */
code(); /* code comment _________ to line length 78 */
code(); /* code comment __________ to line length 79
*/
code(); /* code comment ___________ to line length 80
*/
code(); /* code comment ____________ to line length 81
*/
code(); /* code comment _____________ to line length
* 82 */
/* $ In the following comments, the line length is measured after formatting. */
code(); /* code comment _________ to line length 78 */
code(); /* code comment __________ to line length 79
*/
code(); /* code comment ___________ to line length 80
*/
code(); /* code comment ____________ to line length 81
*/
code(); /* code comment _____________ to line length
* 82 */
code(); /* short multi-line code comment */
code(); /* long single-line code comment that is
* longer than the allowed line width */
code(); /* long multi-line code comment that is longer
* than the allowed line width */
/* $ Trailing C99 comments are not wrapped, as indent would not correctly */
/* $ recognize the continuation lines as continued comments. For block */
/* $ comments this works since the comment has not ended yet. */
code(); // C99 code comment
code(); // C99 code comment ________ to line length 78
code(); // C99 code comment _________ to line length 79
code(); // C99 code comment __________ to line length 80
code(); // C99 code comment ___________ to line length 81
code(); // C99 code comment ____________ to line length 82
if (cond) /* comment */
if (cond) /* comment */
if (cond) /* comment */
if (cond) /* comment */
if (cond) /* comment */
code(); /* comment */
}
//indent end
//indent input
/*
* this
* is a boxed
* staircase.
*
* Its paragraphs get wrapped.
There may also be
lines without asterisks.
*/
//indent end
//indent run
/*
* this is a boxed staircase.
*
* Its paragraphs get wrapped.
*
* There may also be lines without asterisks.
*
*/
//indent end
//indent input
void loop(void)
{
while(cond)/*comment*/;
while(cond)
/*comment*/;
}
//indent end
//indent run
void
loop(void)
{
while (cond) /* comment */;
while (cond)
/* comment */;
}
//indent end
/*
* The following comment starts really far to the right. To avoid that each
* line only contains a single word, the maximum allowed line width is
* extended such that each comment line may contain 22 characters.
*/
//indent input
int global_variable_with_really_long_name_that_reaches_up_to_column_83; /* 1234567890123456789 1 1234567890123456789 12 1234567890123456789 123 1234567890123456789 1234 1234567890123456789 12345 1234567890123456789 123456 */
//indent end
//indent run
int global_variable_with_really_long_name_that_reaches_up_to_column_83; /* 1234567890123456789 1
* 1234567890123456789 12
* 1234567890123456789
* 123
* 1234567890123456789
* 1234
* 1234567890123456789
* 12345
* 1234567890123456789
* 123456 */
//indent end
/*
* Demonstrates handling of line-end '//' comments.
*
* Even though this type of comments had been added in C99, indent didn't
* support these comments until 2021 and instead messed up the code in
* seemingly unpredictable ways. It treated any sequence of '/' as a binary
* operator, no matter whether it was '/' or '//' or '/////'.
*/
//indent input
int dummy // comment
= // eq
1 // one
+ // plus
2;// two
/////separator/////
void function(void){}
// Note: removing one of these line-end comments affected the formatting
// of the main function below, before indent supported '//' comments.
int
main(void)
{
}
//indent end
//indent run
int dummy // comment
= // eq
1 // one
+ // plus
2; // two
/////separator/////
void
function(void)
{
}
// Note: removing one of these line-end comments affected the formatting
// of the main function below, before indent supported '//' comments.
int
main(void)
{
}
//indent end
/*
* Between March 2021 and October 2021, indent supported C99 comments only
* very basically. It messed up the following code, repeating the identifier
* 'bar' twice in a row.
*/
//indent input
void c99_comment(void)
{
foo(); // C99 comment
bar();
}
//indent end
//indent run
void
c99_comment(void)
{
foo(); // C99 comment
bar();
}
//indent end
//indent input
void
comment_at_end_of_function(void)
{
if (cond)
statement();
// comment
}
//indent end
//indent run-equals-input
//indent input
int decl;
// end-of-line comment at the end of the file
//indent end
//indent run-equals-input
/* A form feed in the middle of a comment is an ordinary character. */
//indent input
/*
* AE
*/
/*-AE*/
//indent end
//indent run-equals-input
/*
* Form feeds are seldom used, especially in comments, so treat them as an
* ordinary character.
*/
//indent input
/* comment*/
/*text* comment*/
//indent end
//indent run
/* comment */
/* text* comment */
//indent end
//indent run-equals-prev-output -nsc
//indent run-equals-input -nfc1
/*
* A completely empty line in a box comment must be copied unmodified to the
* output. This is done in process_comment by adding a space to the end of an
* otherwise empty comment. This space forces output_line to add some output,
* but the trailing space is discarded, resulting in an empty line.
*/
//indent input
/*- comment
end */
//indent end
//indent run-equals-input -nfc1
//indent input
/* comment comment comment comment Ümläute */
//indent end
//indent run -l40
/*
* comment comment comment comment
* Ümläute
*/
//indent end
//indent input
int f(void)
{
if (0)
/* 12 1234 123 123456 1234 1234567 123 1234. */;
}
//indent end
/* The comment is too long to fit in a single line. */
//indent run -l54
int
f(void)
{
if (0)
/*
* 12 1234 123 123456 1234 1234567 123
* 1234.
*/;
}
//indent end
/* The comment fits in a single line. */
//indent run
int
f(void)
{
if (0)
/* 12 1234 123 123456 1234 1234567 123 1234. */;
}
//indent end
/*
* Test for an edge cases in comment handling, having a block comment inside
* a line comment. Before NetBSD pr_comment.c 1.96 from 2021-11-04, indent
* wrongly assumed that the comment would end at the '*' '/', tokenizing the
* second word 'still' as a type_outside_parentheses.
*/
//indent input
/* block comment */
// line comment /* still a line comment */ still a line comment
//indent end
//indent run-equals-input
/*
* Tests for comments that are not wrapped.
*/
//indent input
/*- tab space tab space */
/*- very-long-word-that-cannot-be-broken very-long-word-that-cannot-be-broken */
/*- very-long-word-that-cannot-be-broken very-long-word-that-cannot-be-broken */
//indent end
//indent run-equals-input -l5
//indent run-equals-input -l32
/*
* Test for form feeds in nowrap comments.
*/
//indent input
/*-*/
/*-<>*/
//indent end
//indent run-equals-input
/*
* In a comment that is wrapped, one or more empty lines separate paragraphs.
* All of these empty lines are preserved.
*/
//indent input
/* line 1
line 4 */
//indent end
//indent run
/*
* line 1
*
*
* line 4
*/
//indent end
//indent run-equals-input -nfc1
//indent run-equals-input -nfc1 -nsc
//indent run -nsc
/*
line 1
line 4
*/
//indent end
//indent run-equals-input -nsc -ncdb
/*
* Since 2019-04-04 and before pr_comment.c 1.123 from 2021-11-25, the
* function analyze_comment wrongly joined the two comments.
*/
//indent input
/*
*//*
join*/
//indent end
//indent run -nfc1
/*
*/
/*
* join
*/
//indent end
/*
* Since 2019-04-04 and before pr_comment.c 1.123 from 2021-11-25, the
* function analyze_comment generated malformed output by terminating the
* first comment but omitting the start of the second comment.
*/
//indent input
/*
*//*
error*/
//indent end
//indent run -nfc1
/*
*/
/*
* error
*/
//indent end
/*
* Ensure that there is exactly one space between the comment and the
* following binary operator.
*/
//indent input
{
a /* */ > b;
a>b;
}
//indent end
//indent run
{
a /* */ > b;
a > b;
}
//indent end
/*
* Line comments are only related to a code snippet if they are on the same
* line; they cannot be continued in the next lines.
*/
//indent input
int line; // comment line 1
// comment line 2
int block; /* comment line 1
* comment line 2
*/
//indent end
//indent run -di0
int line; // comment line 1
// $ XXX: This comment was probably intended to continue 'comment line 1'.
// comment line 2
int block; /* comment line 1 comment line 2 */
//indent end
// Ensure that '/*/' is not interpreted as a complete comment.
//indent input
/*/ comment? or:not; /* */
//indent end
//indent run
/* / comment? or:not; /* */
//indent end
//indent run-equals-input -nfc1
/*
* The tokens '/' and '*' do not form a comment when they are separated by a
* space.
*/
//indent input
int a = b / *c;
// $ Indent can be tricked into treating '/' as a unary operator, thus turning
// $ some operators into the start of a comment. This only works in
// $ syntactically invalid text.
int a = b + / * c;
//indent end
//indent run -di0
int a = b / *c;
// $ FIXME: Don't merge the two operators; there are enough situations where
// $ indent has to guess whether an operator is unary or binary, and these
// $ heuristics can go wrong.
int a = b + /*c;
//indent end
/*
* Ensure that tab characters that are broken into separate lines are replaced
* with spaces; other tabs are preserved.
*/
//indent input
/* word word word word word word word word word */
//indent end
//indent run -l38
/*
* word word word word word
* word word word word
*/
//indent end
/* In no-wrap comments, every single newline is preserved. */
//indent input
/*-
paragraph 1
paragraph 2
*/
//indent end
//indent run-equals-input
|