forked from uncrustify/uncrustify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
commit.log
6724 lines (4548 loc) · 206 KB
/
commit.log
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
commit 2b76d7a8f4d0c80f3917064b2f4e8309ec55cb3a
Author: Ben Gardner <[email protected]>
Date: Mon Dec 22 21:26:42 2014 -0600
Documentation and script updates for version 0.61.
commit df5fe150195d38e63a173727bed8a60a296db4c5
Author: Ben Gardner <[email protected]>
Date: Mon Dec 22 21:16:19 2014 -0600
Bump version to 0.61
commit 15d8f44c4efac3323b991a6db91b4fcb88ace694
Author: Ben Gardner <[email protected]>
Date: Mon Dec 22 21:13:21 2014 -0600
Attempt to get cygwin builds working.
Not tested.
commit c6a251f4329dc6911ba48a4b9cae88a62acb2c45
Author: Ben Gardner <[email protected]>
Date: Mon Dec 22 14:02:50 2014 -0600
Add test for SF#607.
commit d330fda6ab18f77bfe6cb57b6cc64aae4a38b48f
Author: Ben Gardner <[email protected]>
Date: Mon Dec 22 14:02:08 2014 -0600
Do not mark the parent of the brace that contains a CS_PROPERTY as GETSET.
Fixes SF#607
commit 7909e742826539ec3d075df82439c72a6e93ddd6
Author: Ben Gardner <[email protected]>
Date: Mon Dec 22 13:41:33 2014 -0600
C++11 supports the "final" keyword in class declarations.
commit 64439c58dbd8f6f2ce29eac53080823d49880d7d
Merge: ffa7ea0 5814e8d
Author: Ben Gardner <[email protected]>
Date: Thu Dec 18 20:28:08 2014 -0600
Merge pull request #312 from lgauthier/master
Added fix for issue #124
commit 5814e8db5033408759d4f2785ed440a7f364d60d
Author: [email protected] <[email protected]>
Date: Thu Dec 18 19:29:21 2014 -0600
Added fix for issue #124: https://github.com/bengardner/uncrustify/issues/124
commit ffa7ea0fdc2dcdd26042fb814455fa03b58d1a00
Author: Ben Gardner <[email protected]>
Date: Wed Dec 10 20:41:49 2014 -0600
C#: mark a property in "new List<int> { 1, 2, 3 }"
commit af87b4751cf5aabac349152e1307dd8767d0df0e
Merge: 95ba72b e27e624
Author: Ben Gardner <[email protected]>
Date: Sat Nov 22 15:05:32 2014 -0600
Merge branch 'Twigz-feature/add-const-qualifier-rule'
commit e27e624416ba523330879613bcebc410a3ad6232
Author: Ben Gardner <[email protected]>
Date: Sat Nov 22 15:04:39 2014 -0600
Whitespace cleanup
commit 6364871846d53862fa8492217821e11fc838fdd8
Author: Twigz <[email protected]>
Date: Fri Nov 21 11:12:21 2014 -0500
Adds a new test
commit 566d2afdd178477948347e8bafbf91198b236ba6
Author: Twigz <[email protected]>
Date: Fri Nov 21 11:12:04 2014 -0500
Adds a new test
commit b460d25dd6e99b9132631f4bbb9af4fbde49cf81
Author: Twigz <[email protected]>
Date: Fri Nov 21 10:21:08 2014 -0500
Adds qualifier rule for spacing
commit 95ba72baf7f0833edfaaca0b8f29f6b48ef077e6
Author: Ben Gardner <[email protected]>
Date: Wed Nov 12 22:27:05 2014 -0600
D: Treat [ ] like { } as far as indenting content with tabs.
commit 2046245afc355162c1dfecad59f076545c52d9dd
Author: Ben Gardner <[email protected]>
Date: Tue Oct 14 14:50:37 2014 -0500
Update the year in the man page
commit 86079866990368c0f18819f5fcf5cc689d3335ee
Author: Ben Gardner <[email protected]>
Date: Tue Oct 14 14:49:56 2014 -0500
Rework make_win32.sh to build with the latest mingw32.
Add a few more files.
commit 531332f38876a189f849b20f47612958093c0924
Author: Ben Gardner <[email protected]>
Date: Tue Oct 14 14:46:33 2014 -0500
Update BUGS a bit
commit ddbf42b6952a21a067991e716ab88cac974401bc
Author: Ben Gardner <[email protected]>
Date: Tue Oct 14 14:20:07 2014 -0500
Rename variable "interface", as that makes mingw unhappy
commit 51e931879a9844194e15197646be03268bdaa05a
Author: Ben Gardner <[email protected]>
Date: Tue Oct 14 14:17:12 2014 -0500
Fix includes for Windows/mingw build
commit 48001de690daf92d6d272f8ef5c8e71c8f627333
Author: Ben Gardner <[email protected]>
Date: Tue Oct 14 09:33:55 2014 -0500
Add include path to pick up windows_compat.h
commit 03eb1c70fd36c6a0a23a53ad47198cf8335c7ad3
Author: Ben Gardner <[email protected]>
Date: Mon Oct 6 21:56:45 2014 -0500
Update multi-line string test
commit 573fd546db2ec2e5171fb538e95f282fdb75337e
Author: Ben Gardner <[email protected]>
Date: Mon Oct 6 21:44:40 2014 -0500
Handle multi-line string spacing better.
Fixes SF#602
commit 76ab215694fd733877f544635760658c1e021541
Author: Ben Gardner <[email protected]>
Date: Mon Oct 6 21:28:14 2014 -0500
unc_text: Encode NL and CR as unicode for logs
commit da1ab3de1363959adc2d82c0fa17ac008f93aae7
Merge: 0cdc975 b28e364
Author: Ben Gardner <[email protected]>
Date: Mon Oct 6 20:46:59 2014 -0500
Merge pull request #298 from Unity-Technologies/staging
Fix for bug #600
commit b28e364b3778a9ae2ca912302fdb2ab6a24987c3
Author: Scott Bilas <[email protected]>
Date: Mon Oct 6 11:52:03 2014 +0200
Fix for bug #600 (https://sourceforge.net/p/uncrustify/bugs/600/). The nullable type was consuming the CT_QUESTION and appending it to itself, but wasn't also adjusting its end column.
commit 0cdc9750dea4cea8a7db43287707b7c9f264b967
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 21:25:26 2014 -0500
Update semicolon removal test to cover new case.
commit 757e2ad22a820d111758b4e8d0c864295f26ed87
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 21:24:09 2014 -0500
Do not remove the semicolon in '...) {...};'
commit a60da588119327d6888230b1c47267ede3645242
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 21:22:47 2014 -0500
Log which path removed the semicolon
commit 85614066efd65591305f75ad93f47b607209ee61
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 21:22:09 2014 -0500
Add a LOG_FUNC_CALL() to update the line number of the top entry.
commit 72348985ddd768053ed685e503cff5f66734d1cf
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 21:06:59 2014 -0500
Fixed cast detection in "(int *[])value"
commit f11229b716a88f072f6d84d5b1f68cf5a415fcfe
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 17:17:50 2014 -0500
Skip the top function name in log_func_stack_inline()
commit d9f939d3f9aa941f372df26cdb8c554d2c7fbb2f
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 17:15:11 2014 -0500
Add test for multi-line C# @"" strings
commit d236601bd10be25db3d3b52b0dfa147cbeae8b9e
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 17:10:45 2014 -0500
Properly detect multi-line C# @"" strings
commit e97370fc83980b385d961e8a4c27d3c3eb9d9515
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 17:09:59 2014 -0500
Use log_func_stack() instead of passing around the func name/line
commit 5f99e44de4265402f38e989f2f86663fbbb09730
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 17:07:52 2014 -0500
Modify log_func_stack() a bit
commit 94c189d6a50f6609b2c80c6da8d98998398e17ee
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 17:03:53 2014 -0500
Add a bunch of calls to LOG_FUNC_ENTRY();
commit 6b888a6186d38b06196a4ea69482a75fa5654222
Author: Ben Gardner <[email protected]>
Date: Wed Sep 10 16:06:00 2014 -0500
Add a utility functions to track and log certain function calls
commit 419b2a47a8c342226eb6a99b284d8e0ace401b4c
Author: Ben Gardner <[email protected]>
Date: Sun Sep 7 14:49:18 2014 -0500
Add a "file_ext" config option to specify custom file extensions.
commit 172ff959f226e687b3ebb51c1c0fd0a7e90e1079
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 16:50:51 2014 -0500
Update man page for --check option
commit f4a02cb29a863657c83d9f04946e8a9bc3f56866
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 16:28:22 2014 -0500
Fix odd whitespace issue
commit 6f815360cf8003c74078f17e65f398afbe770508
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 16:28:10 2014 -0500
Change log that indicates the detected encoding
commit 7fe2a24d34ef992ab78516d6e55f0edd5221be9a
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 16:27:46 2014 -0500
Add --check option to see if a file changes when uncrustified
commit b9bb1655b24911bc4629126d6121fe559e8b7a02
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:51:21 2014 -0500
Add missing fclose() before exit.
commit c9ccb161739bb0db9b61f4aabcaba09d48ac49f4
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:45:14 2014 -0500
Rename variable 'dq' to 'vv', as it is for a vector, not a deque
commit 888e7ce045feed34d7633386cae050096312a435
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:44:42 2014 -0500
Add a hook to output the file to a byte deque.
commit ff03971ad08da030ca850f5d9cf0916724909bcc
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:41:13 2014 -0500
write_byte: protect against negative ch
commit b3d0212545c278a9a5c8e6dcfb256f5d4ba49c18
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:40:45 2014 -0500
unicode.c: make exactly one place that writes to the output file
commit 9432f7cad9e85cc3001fc933ab8920e373018662
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:34:39 2014 -0500
Don't pass the FILE or encoding to write_char().
Preparing for multiple output paths.
commit 77473c4d192a18bb507f2db8daeeb97feb00c329
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:23:02 2014 -0500
unicode.c: Make all functions static that can be
commit 16160b6ac5bc76a9e4caa39e8de4715b5f9446f6
Author: Ben Gardner <[email protected]>
Date: Sat Sep 6 15:20:20 2014 -0500
Remove unused code: write_string()
commit 54aee73007f4c9141a4fbc2892393d9aa673756b
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 11:27:26 2014 -0500
Add option sp_fparen_dbrace
commit c0a12ac85f3110aaa6c010b2ef2e25075b8c1623
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 11:20:03 2014 -0500
Fix nl_paren_dbrace_open in ')\n{{'
commit 4120cd976bacfe11189795138138030acf65d03d
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 11:14:37 2014 -0500
Add tests for nl_paren_dbrace_open
commit 608543dec51e4ccfd64d5e80116fcf440e89d7a1
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 11:14:04 2014 -0500
Add option nl_paren_dbrace_open
commit 69f926e4797a1f514bc91c878b77b99737dbbb8b
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 11:00:21 2014 -0500
Pass through func/line in set_paren_parent2() and flags_parens2()
commit ae4f4449170dfbcac96db1b9eb695489230cfe53
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 10:59:23 2014 -0500
Mark the double-brace open/close with parent_type=CT_DOUBLE_BRACE
commit 1d723646eaa1069de41dd0649def9a598bc14fca
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 10:52:28 2014 -0500
Clean up the log text for set_chunk_type() and set_chunk_parent()
commit 0e78cafcdfadc0698b2ceb9c11474473e8823505
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 10:39:41 2014 -0500
Use set_chunk_type() instead of direct chunk_t->type assignments
commit 7cdd71589f8c420588228c7ceef5bb31207a1ded
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 10:09:52 2014 -0500
Add function set_chunk_type() to log assignments to chunk_t.type
commit 9f9e1c9944680d5fc064fe3d1f691dcb6d0a1056
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 10:01:36 2014 -0500
Add a log in set_paren_parent()
commit 5d0d28a2eb61ef7eb20f1199dafe10e737db24d1
Author: Ben Gardner <[email protected]>
Date: Wed Sep 3 09:47:01 2014 -0500
Refactor parent_type assignments to use set_chunk_parent() for logging
commit b002966cfc90c6ecd835ea6a1e0241bd8928b563
Author: Ben Gardner <[email protected]>
Date: Tue Sep 2 17:39:08 2014 -0500
Add special handling for Java double brace initializers
commit 2f53e1681fa5d33e3a3a4052671c3d49d464d5ee
Author: Ben Gardner <[email protected]>
Date: Tue Sep 2 17:04:31 2014 -0500
Update namespace indent test results
commit d2f28752fbe980a7e100a6c720308ea46a80c865
Author: Ben Gardner <[email protected]>
Date: Tue Sep 2 17:03:11 2014 -0500
Rework indent_namespace_single_indent, don't indent the namespace
commit adefc45c0f18078c9273607abe20aa2f156f212d
Author: Ben Gardner <[email protected]>
Date: Tue Sep 2 16:46:31 2014 -0500
Add the token parent to the LINDPC log
commit da1a8b2de08c9f7768eb5af7f2ed57ddf171c453
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 22:13:16 2014 -0500
Fix C-Sharp '#property' parsing
commit 12d00abd4c33a04b1a1ddce40cc174a014b3ce84
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 21:53:09 2014 -0500
Add D language "static if" test
commit ec025e4f1e993333b3c3ae4564b972c618115b3c
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 21:49:33 2014 -0500
Add support for D language "static if" by merging the tokens
commit 6218d70859db853bda2ccc0172b6f30dfef35eb3
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 21:21:56 2014 -0500
Update test results for new '( {' indent rule
commit 19b781e661b78dbd88c35e2da549c146ec2d7c90
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 21:20:30 2014 -0500
Change default to have the '{' indent override the '(' indent.
Example:
gtkwidget.enabled.connect((widdget) => {
message("Clicked");
});
The old way would have the brace indent relative to the open paren:
gtkwidget.enabled.connect((widdget) => {
message("Clicked");
});
commit da37c3a85fc898081004d19e3198f6ac3052341e
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 21:07:31 2014 -0500
VALA also has preprocessors (#if/#else/#endif)
commit d814973783c01b047c2911912459ee313f04ff59
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 20:59:06 2014 -0500
Change order of '--update-config' and config file required checks.
commit e7ff01b89b69f47317f02db4c94e3bf5d45f718b
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 20:56:24 2014 -0500
Add a TODO about complaining if --update-config is used with -f, etc
commit ea04e51fdd98c1af67ad3372ca840fa4971571c2
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 20:55:47 2014 -0500
Do not require a config file if generating one
commit 441b3acc1ffef8d02567707d4917529c9aff558b
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 20:34:39 2014 -0500
Fix variable def continuation indent for pointer vars.
Example:
SomeType *a,
*b;
commit da75afc55f5221e1407181c6c84c54c362677539
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 19:26:35 2014 -0500
Update cmt_width test
commit 040cf4036206278db5472cea2d061c9f616bdc81
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 19:22:59 2014 -0500
Do not wrap a comment word if nothing has been written on the line yet
commit e8bf4cd13433216bb61a5f815a30b3bda7724486
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 16:25:00 2014 -0500
Add option sp_enum_paren
commit 0de157e20f7306375fc7eb4da4fd4f9b0e3e5a25
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 15:37:54 2014 -0500
Add test for option indent_namespace_single_indent
commit b536f4268d28f31fe45a03bcd78589f2029d11f0
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 15:37:20 2014 -0500
Add option indent_namespace_single_indent
Thanks to gnoorlanderwork for the idea.
commit 7f3296723c6f97adc7164c1fd3c922b1bd18a35c
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 15:07:23 2014 -0500
Update tests for new align_same_func_call_params functionality
commit 5513771a22ea83c56ddae18839e44c33a6bfa4de
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 15:03:44 2014 -0500
Let align_same_func_call_params() handle "class.func()"
commit 17671d126a7d0285dc10b0db595694cdf611af1c
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 14:30:47 2014 -0500
Don't align stuff after the last comma in align_init_brace()
commit 21e7af10b5ddf3a1f48f4f56ba7edfb457dc462f
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 14:29:30 2014 -0500
Enhance reindent_line() log
commit df323401e80fcd7c86d277820f7c2fd42738d54c
Author: Ben Gardner <[email protected]>
Date: Mon Sep 1 14:28:48 2014 -0500
Add more SPACE logs
commit 7b966dc0b4502f4a1943e258668449837446cbc5
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 23:36:31 2014 -0500
Update tests and results for latest code changes
commit 2007ed17b1336406b81460d2381b8601a67ae0f1
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 23:34:18 2014 -0500
Move the 'force one space before a END comment' from output to space
commit e4e368890b86bda15e1ec230479aefc8363293ed
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 23:33:17 2014 -0500
space: drop vbrace tokens back to the previous and skip them
commit ca1abde6b817dbccadbd81502aa1c2ecbdf9d163
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 23:32:10 2014 -0500
Force a space before a comment if there was a space in the input
Otherwise try to keep them in the same column as the input.
commit bc5e0894f37b0b76d7cc87eef7a60c8dc1b4c683
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 23:30:23 2014 -0500
Enhance the space log a bit (show final column)
commit 8a6b5b51b2da83e9b107ffcba14b3c1e944f7f1a
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 23:06:39 2014 -0500
Fix duplicate rule log for sp_before_semi/sp_special_semi
commit be9ea6a4ac3cfbca60a8e4c09144d74fca3381fc
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 22:21:24 2014 -0500
Keep track of the original whitespace (columns) before a token
commit 6ce863d5a6b2c10d4e2a1580db1b4addb4358deb
Author: Ben Gardner <[email protected]>
Date: Sun Aug 31 16:57:09 2014 -0500
Fix off-by-one error for indent_relative_single_line_comments
commit 7d8e560bd8a67512bb8e17a867e01f3872b727d1
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 22:33:09 2014 -0500
Run update-default-cfg.sh again
commit e1728472645c0dace8f6995e2c3ca0bf5fb5d2ef
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 22:32:17 2014 -0500
Fix typo in indent_paren_open_brace description
commit 02237e57fe852c2a179796777e5a269b50ef8442
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 22:30:55 2014 -0500
Run update-default-cfg.sh
commit 5b1183a3f0af3ef8679698b105bc85561931ebf5
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 22:25:09 2014 -0500
Add test for option cmt_convert_tab_to_spaces
commit 8b04b2cc8943fb2688fa118c413d8b93492f941b
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 22:22:00 2014 -0500
Add option cmt_convert_tabs_to_spaces
commit a76f64c867700babbdecb07e20614a97172072b0
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 22:20:07 2014 -0500
Revert logsev of whole file ifdef log
commit 38c6c324e7cebc04c0831bddcbe80a1b15687120
Merge: 6209e9d 540e0b3
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 21:46:51 2014 -0500
Merge branch 'master' of [email protected]:bengardner/uncrustify.git
commit 6209e9d288a97fbc46c8ea1cd772c906249dfdd0
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 21:46:05 2014 -0500
Update test for latest comment change
commit f02f57730dff061975dfd3339357b0f01c1b780d
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 21:37:11 2014 -0500
The comment continue should be " * " if not combining C++ comments
commit 540e0b37abd802e3c2a92248063583a839d2983f
Merge: 2b81408 3e00ee5
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 16:41:12 2014 -0500
Merge pull request #283 from Speedy37/master
Fix parsing issue with Objective-C message send.
commit 2b81408f08af6be29fa32adea9538759047378dc
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 16:38:43 2014 -0500
Update test results based on other changes
commit a15e4158741a69c51644d2695e68a0ea23f4b89c
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 16:36:59 2014 -0500
Clean up ifdef_over_whole_file() usage a bit.
commit c732f43af8def231f23beb6d523cd52f76504c8c
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 16:30:13 2014 -0500
Cache the results of ifdef_over_whole_file()
commit 6a3d100bdda9075394d09a89ae19d9573c6840ca
Merge: 620747e 86ca62b
Author: Ben Gardner <[email protected]>
Date: Sat Aug 30 16:00:01 2014 -0500
Merge branch 'no_include_guard_indent' of https://github.com/rdan/uncrustify into rdan-no_include_guard_indent
commit 620747ec48e8e8aff87c0de68910b9fe15cd59b2
Author: Ben Gardner <[email protected]>
Date: Thu Aug 28 23:01:32 2014 -0500
Add tests for new '({\n' functionality
commit 1a16cfc6e2d6d40d2b4862ac391e9ebe7c73d409
Author: Ben Gardner <[email protected]>
Date: Thu Aug 28 23:00:33 2014 -0500
Indent by brace in '({\n', add option indent_paren_open_brace to revert
This is mainly for objective C code.
commit c5e9583136dc576805dae5ea1ca2490622d56051
Author: Ben Gardner <[email protected]>
Date: Thu Aug 28 22:50:19 2014 -0500
Make the LINDPC logs much more verbose and easier to read
commit 0f6dbafe9f79c4aad2d5c879ccb19c1a1e31edd1
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 20:00:21 2014 -0500
Add missing config for test 562
commit e85bc5a6eb32106f3d3d05d70d726be5c0492e5c
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 15:20:33 2014 -0500
Update test results based on new comment substitution code
commit 8e1742f64b8d14648d48ddce9126c866b26f0215
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 15:20:08 2014 -0500
Do comment keyword substitution before processing the comment.
commit a91f95312e2b372f40ebca53021c666f15dadd38
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 12:54:43 2014 -0500
Add more tests
commit 96a655df62e6d6ea92533de2906f8ea0367bb91b
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 12:54:30 2014 -0500
Do comment keyword replacement earlier and directly on the comment text.
commit b8d8b0202e31dac687b892f8c9a41fb687ec2024
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 12:53:36 2014 -0500
Enhance unc_text with insert(), erase(), rfind(), and replace().
commit 68c76717b183c4e80fee468e3d317c5be6c02d4a
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 10:57:50 2014 -0500
Fix comment keyword substitution of 'fclass' inside a class
commit 43edc60aa6d58a767193b5e8d43457d9708ec65f
Author: Ben Gardner <[email protected]>
Date: Fri Aug 22 10:27:56 2014 -0500
Clean up index.html a bit
commit 622a0cbe0db7257cfd32f882d88a34e35de5cdc7
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 23:11:26 2014 -0500
Add test for SF#562
commit 0ffb183bd3f6c55a393d1fcf37581d5913a836ec
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 23:10:56 2014 -0500
Fix operator call detection in "baz(&operator[](bar));"
commit a6ac4f0fedd98efe23fdd4f94087361b3eb522a5
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 21:57:21 2014 -0500
make_version.py: no need to split lines of uncrustify_version.h.in
commit f4af8773e815af8f3feae6251f19ac4a7f211cda
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 21:54:36 2014 -0500
Update make_version.py after the configure.ac rename
commit e8e4c21a116fdea29def40aceaa0f4320f6b0d94
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 21:50:27 2014 -0500
Re-run autogen.sh on Ubuntu 14.04
commit f199bd478471e7db1477ac15c5da3af5451d20d9
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 21:45:37 2014 -0500
Rename configure.in to configure.ac
commit 8b3f1083fe074cc14ea2e43ad18374ea1df09f3e
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 21:44:25 2014 -0500
Add a script to update the version
commit 1751709f4026da603f5ac5420669c4dcb50a48f8
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 21:01:32 2014 -0500
Do not remove semicolon in "return {a, b};"
commit f815d6b3964295c5d9864df14988aff6f55d7a5e
Author: Ben Gardner <[email protected]>
Date: Thu Aug 21 20:48:44 2014 -0500
Remove incorrect warning about unmatched VBRACE_OPEN at the EOF
commit 94a2eabf307fc7534c3be3de36a8670ce2623e05
Author: Ben Gardner <[email protected]>
Date: Wed Aug 20 20:47:15 2014 -0500
Add test for GH#287
commit 39914d4e1e593f66f23505ce14cbfd4e5a69adf8
Author: Ben Gardner <[email protected]>
Date: Wed Aug 20 10:32:24 2014 -0500
Add test for SF#588
commit 7234f48a60ac0ec1a1798e1d9e535f4f104eea69
Author: Ben Gardner <[email protected]>
Date: Wed Aug 20 10:29:23 2014 -0500
Add support for VALA numeric identifiers: '@4' is a WORD, not a NUMBER
commit 6f41f0ce00522f0bc3ccb1d475adfb8beb1eef72
Author: Ben Gardner <[email protected]>
Date: Wed Aug 20 10:28:36 2014 -0500
A change in preproc level should reset '<<' aligning.
It probably should reset other aligning, too, but no one has complained.
commit 71417801533cb5e0c7c112fafcd0bdd520c7edfc
Merge: 80b7109 d33176e
Author: Ben Gardner <[email protected]>
Date: Tue Aug 19 22:37:28 2014 -0500
Merge pull request #285 from PerfectCarl/patch-1
Mention VALA in -l option in the help message
commit d33176e1afa755c1a9299fa5893c7179369e4339
Author: PerfectCarl <[email protected]>
Date: Tue Aug 19 11:08:36 2014 +0200
Mention VALA in -l option in the help message
commit 80b7109e9465914721884681bcf7f8aa5d9a5ea4
Author: Ben Gardner <[email protected]>
Date: Mon Aug 18 14:56:47 2014 -0500
Add test for SF#594
commit 18393d0345ecff19da0c4e15c718b1656263b27c
Author: Ben Gardner <[email protected]>
Date: Mon Aug 18 14:56:19 2014 -0500
Do not call tokenize_cleanup for the C language (and a few others).
commit 3e00ee5dcb90f07056a02a995b9052f54fe6c8cb
Author: Vincent Rouillé <[email protected]>
Date: Mon Aug 18 16:29:30 2014 +0200
Fix parsing issue with Objective-C message send.
Parsing message like [(id)obj msg:var] was failing.
commit add39bf18ae0f76f53d9d8703805c7543d61db15
Author: Ben Gardner <[email protected]>
Date: Sat Aug 16 20:30:01 2014 -0500
Add a test for SF#593
commit 1ac4301a450fc238ac4ff4f0a59579dbecb55e27
Author: Ben Gardner <[email protected]>
Date: Sat Aug 16 20:29:04 2014 -0500
indent_continue should also apply to class constructor calls.
Not sure why that was explicitly disabled, but no tests failed after
removing that check.
commit 5d1bfcc1b2512283c1b72a79fd0abcc1a88543f4
Author: Ben Gardner <[email protected]>
Date: Fri Aug 15 16:09:45 2014 -0500
Split FUNC_CLASS into FUNC_CLASS_DEV, FUNC_CLASS_PROTO
commit 05a5d5bcc6d524d3290fbc10deacbf623360adab
Author: Ben Gardner <[email protected]>
Date: Fri Aug 15 15:22:02 2014 -0500
Remove invalid 'namespace' from C test
commit ff21c4ff8dd77444143ce860f34620f71d82c2a6
Author: Ben Gardner <[email protected]>
Date: Fri Aug 15 15:19:58 2014 -0500
"namespace" is not a keyword in the C language.
commit 173e61aa02b98499474b694291d6cb7be70a7434
Author: Ben Gardner <[email protected]>
Date: Fri Aug 15 15:08:07 2014 -0500
Fix null deref if file starts with a newline
commit 8ca5edfa5b30fa55ef72fe5c5cc8d8e268f3edb9
Author: Ben Gardner <[email protected]>
Date: Wed Aug 13 09:39:32 2014 -0500
Missed a ctx.restore() in parse_code_placeholder()
commit 53725db37577296299c3e5df961402cf6d24190b
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:54:36 2014 -0500
Protect trailing space inside a multi-line string
commit 397b2f95193c2ee04a8e9b6d1dbb73e244bfe0c0
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:44:17 2014 -0500
VALA verbatim string: missing setting nl_count
commit 12eb6a6ababa2dab992fe73475c6f8ec34117036
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:34:34 2014 -0500
Rework parse_code_placeholder()
commit 420b06637bb19be1f9dba5a285f07521772cf5e6
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:33:34 2014 -0500
Drop new option dont_protect_xcode_code_placeholders
I don't see how anyone would not want this.
commit a442258c580a71066b7b64cfe6fd033a7decb11c
Merge: c55f777 6059686
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:24:03 2014 -0500
Merge branch 'jgross-xcode-placeholders' of https://github.com/JoshuaGross/uncrustify into JoshuaGross-jgross-xcode-placeholders
Conflicts:
tests/objective-c.test
commit c55f777dda2be74ed7d264f4ec298d7393d0e241
Merge: f28d310 3214eac
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:19:29 2014 -0500
Merge pull request #263 from mys007/master
Fix Issue 262
commit f28d310ae56840e50b22c51d9da5a9e4027b061d
Merge: ade7245 3111f77
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:16:50 2014 -0500
Merge branch 'master' of https://github.com/orudge/uncrustify into orudge-master
Conflicts:
src/punctuators.cpp
commit ade7245cc6b1fda9239d5965bc47e2dfc8f1a369
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:07:14 2014 -0500
Clean up whitespace from merge
commit 4d20bcaeef08eff40d60d389bea9e6e360d84a18
Merge: dbc35fe faa3a8e
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 17:04:56 2014 -0500
Merge branch 'java-try' of https://github.com/Keepun/uncrustify into Keepun-java-try
commit dbc35fee81a99dc1dcda4e92aa991313c2d5a2fa
Merge: 034f7e2 fad09d7
Author: Ben Gardner <[email protected]>
Date: Fri Aug 8 16:58:16 2014 -0500
Merge pull request #277 from tintou/master
Added missing vala punctuators.
commit 034f7e218e3140b2261ae5a0b2b2b7513d9ffc26
Author: Ben Gardner <[email protected]>
Date: Mon Aug 4 22:53:47 2014 -0500
Add basic support for VALA verbatim strings.
It looks like it is stripping trailing spaces in the string, but that is
a separate issue.