-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
2538 lines (1917 loc) · 104 KB
/
ChangeLog
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
2024-12-24 Paul J. Lucas <[email protected]>
* pjl_compile.m4: Added missing $.
2024-12-21 Paul J. Lucas <[email protected]>
* iswpunct.c, stdlib.c: Fixed lib.
* pjl_compile.m4: Removed extraneous '$' -- don't know how it ever worked.
2024-11-13 Paul J. Lucas <[email protected]>
* util.c, util.h: Eliminated use of defined.
2024-11-03 Paul J. Lucas <[email protected]>
* lib/Makefile.am, _Noreturn.h, attribute.h, btoc32.c, c++defs.h,
c32is-impl.h, c32to-impl.h, cdefs.h, errno.in.h, fnmatch.in.h,
getopt-cdefs.in.h, getopt-pfx-core.h, getopt.c, intprops-internal.h,
inttypes.h, inttypes.in.h, libc-config.h, locale.in.h, mbrtoc32.c,
mbsrtoc32s.c, stddef.in.h, stdint.in.h, stdlib.in.h, strerror-override.c,
strerror-override.h, string.in.h, strnlen.c, uchar.in.h,
unicase/tolower.h, unictype.in.h, unictype/ctype_alnum.h,
unictype/ctype_alpha.h, unictype/ctype_blank.h, unictype/ctype_cntrl.h,
unictype/ctype_digit.h, unictype/ctype_graph.h, unictype/ctype_lower.h,
unictype/ctype_print.h, unictype/ctype_punct.h, unictype/ctype_space.h,
unictype/ctype_upper.h, unictype/ctype_xdigit.h, unistd.in.h, verify.h,
warn-on-use.h, wchar.in.h, wctype.in.h, xalloc-oversized.h, 00gnulib.m4,
__inline.m4, absolute-header.m4, alloca.m4, assert_h.m4, btowc.m4,
builtin-expect.m4, c-bool.m4, c32rtomb.m4, codeset.m4, ctype_h.m4,
errno_h.m4, extensions-aix.m4, extensions.m4, extern-inline.m4,
flexmember.m4, fnmatch.m4, fnmatch_h.m4, getopt.m4, gnulib-common.m4,
gnulib-comp.m4, gnulib-tool.m4, include_next.m4, inline.m4, inttypes.m4,
isblank.m4, iswblank.m4, iswctype.m4, iswdigit.m4, iswpunct.m4,
iswxdigit.m4, libunistring-base.m4, limits-h.m4, localcharset.m4,
locale-en.m4, locale-fr.m4, locale-ja.m4, locale-zh.m4, locale_h.m4,
malloc.m4, mbrtoc32.m4, mbrtowc.m4, mbsinit.m4, mbsrtowcs.m4,
mbstate_t.m4, mbtowc.m4, memchr.m4, mempcpy.m4, mmap-anon.m4,
multiarch.m4, musl.m4, nocrash.m4, off64_t.m4, off_t.m4, pid_t.m4,
setlocale_null.m4, ssize_t.m4, std-gnu11.m4, stddef_h.m4, stdint.m4,
stdlib_h.m4, strdup.m4, strerror.m4, string_h.m4, strndup.m4, strnlen.m4,
sys_cdefs_h.m4, sys_socket_h.m4, sys_types_h.m4, sysexits.m4,
threadlib.m4, uchar_h.m4, unicase_h.m4, unictype_h.m4, uninorm_h.m4,
unistd_h.m4, vararrays.m4, visibility.m4, warn-on-use.m4, wchar_h.m4,
wctype.m4, wctype_h.m4, wint_t.m4, wmemchr.m4, wmempcpy.m4, zzgnulib.m4:
Updated GNUlib.
2024-05-22 Paul J. Lucas <[email protected]>
* pjl_config.h, read_conf.c, regex_test.c, util.c, wrap.c, wrapc.c,
wregex.c: s/PJL_IGNORE_RV/PJL_DISCARD_RV/
2024-03-03 Paul J. Lucas <[email protected]>
* markdown.c, util.c, util.h: s/bsearch_str_strptr_cmp/str_ptr_cmp/
* doxygen.c, util.h: s/bsearch_str_dox_cmp/dox_cmd_cmp/
* Makefile.am, bootstrap, configure.ac, pjl_check_typedef.m4,
pjl_compile.m4, makedoc.sh, man/Makefile.am, man/man1/Makefile.am, wrap.1,
wrapc.1, man/man5/Makefile.am, wraprc.5, alias.c, alias.h, align.c,
cc_map.c, cc_map.h, common.c, common.h, doxygen.c, doxygen.h, markdown.c,
markdown.h, options.c, options.h, pattern.c, pattern.h, pjl_config.h,
read_conf.c, read_conf.h, regex_test.c, unicode.c, unicode.h, util.c,
util.h, wrap.c, wrapc.c, wregex.c, wregex.h, test/Makefile.am,
run_test.sh, wrap.css: Updated copyright year.
2024-02-07 Paul J. Lucas <[email protected]>
* options.c: Now using simpler freopen().
2024-01-10 Paul J. Lucas <[email protected]>
* Doxyfile, util.h: Better handling of IS_SAME_TYPE().
2023-12-03 larryhynes <[email protected]>
* wrapc.1: wrapc.1: correct tiny typo
2023-10-10 Paul J. Lucas <[email protected]>
* wrap.c: Added #ifdef DEBUG_MARKDOWN.
* util.c, util.h: Eliminated check_atexit().
* util.c, util.h: Made is_any() matches parameter be const static 2.
* options.c, util.h: Added EPUTS().
* options.c: Added ASSERT_RUN_ONCE().
2023-10-09 Paul J. Lucas <[email protected]>
* options.c: Added missing #include <unistd.h> for dup2(); fixes #6.
2023-10-03 Paul J. Lucas <[email protected]>
* markdown.c, wrap.c, wrapc.c: Now using NO_OP for declarations after case
labels.
2023-09-23 Paul J. Lucas <[email protected]>
* wrapc.c: Now using SOPT(xxx) in fork_exec_wrap().
2023-09-22 Paul J. Lucas <[email protected]>
* util.h: Added explicit != 0 check.
* util.h: Removed DUP().
* options.c, util.c, util.h, wrapc.c: Replaced check_dup2() by DUP2().
* wrap.c: Added `const`.
* wrapc.c: Now using dup2().
* wrapc.c: Eliminated DELIM_NONE.
2023-09-21 Paul J. Lucas <[email protected]>
* wrap.c: Factored out wipc_parse().
* wrap.c: Now ignoring unknown IPC codes.
* wrapc.1: Added mention of Zig.
* doxygen.c: Now doing ++s.
* doxygen.c: Changed @copy* commands to be EOL.
* doxygen.h: Converted dox_cmd_type_t to an enum.
* markdown.h: Added 'u' suffix.
* markdown.c, markdown.h, wrap.c: s/TAB_SPACES_MARKDOWN/MD_TAB_SPACES/
2023-09-20 Paul J. Lucas <[email protected]>
* cc_map.c, cc_map.h: s/'D'/COPT(COMMENT_CHARS)/
* cc_map.h, common.c, common.h, options.h, unicode.c, unicode.h, util.c,
util.h: Fixed inline macros.
* wrapc.c: s/read_wrap/read_wrap_write_stdout/
* alias.c: Sorted functions.
* configure.ac: Added check for __builtin_expect.
* util.h: Now using HAVE___BUILTIN_EXPECT.
2023-09-19 Paul J. Lucas <[email protected]>
* alias.c, alias.h, common.c, pattern.c, pattern.h: Now using atexit() to
automatically call alias_cleanup() and pattern_cleanup().
* align.c, cc_map.c, cc_map.h, doxygen.c, doxygen.h, markdown.c, markdown.h,
options.c, options.h, util.c, util.h, wrap.c, wrapc.c: 1.
s/true_reset/true_clear/ 2. Added MEM_ZERO(), RUN_ONCE, and ATEXIT().
* Doxyfile, Makefile.am, makedoc.sh, wrap.css: Added "make doc" target.
* configure.ac, util.h: Improced ARRAY_SIZE().
* options.c, read_conf.c, regex_test.c, util.c, util.h, wrapc.c: Added () to
STRERROR.
* util.h, wrap.c, wrapc.c: Added ASSERT_RUN_ONCE(); sorted macros.
* wrapc.c: wrap_dox_line() now returns bool.
* wrapc.c: Split out wrap_dox_line().
* alias.c, cc_map.c, options.c, util.h, wrap.c: Eliminated FREE_STR_LATER()
and FREE_STRBUF_LATER().
* options.c: Eliminated VLA.
2023-09-18 Paul J. Lucas <[email protected]>
* options.c: Added `static 2` and assert().
* options.c: Added comment; added unreachable.
* align.c, common.c, options.c, options.h, util.c, util.h, wrap.c, wrapc.c:
Eliminated fin and fout.
* doxygen.c: Unindented code.
* cc_map.c: Now using STATIC_CAST.
* alias.c: Using puts() and putchar().
* wrap.c: Fixed wording in help message and made it more consistent.
* configure.ac: Upped version to 5.9.1.
* wrapc.c: De-nested code.
* doxygen.c: Changed htmlonly to DOX_PRE; changed parblock to DOX_EOL.
* wrap.c: Changed `if ( c == WIPC_CODE_HELLO )` to `while`.
* common.h, wrap.c, wrapc.c: Converted WIPC_CODE_* into an enum.
* common.h, wrap.c, wrapc.c: Renamed WIPC codes to include _CODE.
* alias.c, cc_map.c, pattern.c, read_conf.c, regex_test.c, util.c, wrap.c,
wrapc.c, wregex.c: Added braces and other cosmetic changes.
2023-09-07 Paul J. Lucas <[email protected]>
* Makefile.am, bootstrap, configure.ac, man/Makefile.am,
man/man1/Makefile.am, wrap.1, wrapc.1, man/man5/Makefile.am, wraprc.5,
src/Makefile.am, alias.c, alias.h, align.c, cc_map.c, cc_map.h, common.c,
common.h, doxygen.c, doxygen.h, markdown.c, markdown.h, options.c,
options.h, pattern.c, pattern.h, pjl_config.h, read_conf.c, read_conf.h,
regex_test.c, unicode.c, unicode.h, util.c, util.h, wrap.c, wrapc.c,
wregex.c, wregex.h: Updated copyright year.
* configure.ac: Upped version.
2023-08-06 Paul J. Lucas <[email protected]>
* markdown.c: Added md_ol_digits(); now using snprintf() return value for
new digit length.
* markdown.c: Now using s[0].
* cc_map.c: Now using STATIC_CAST.
2023-05-21 Paul J. Lucas <[email protected]>
* options.c: Added "; use --help or -h for help".
2023-05-20 Paul J. Lucas <[email protected]>
* options.c: Consolidated long options.
* wrap.1, wrapc.1: Sorted options.
* options.c: Added {}.
* options.c: Sorted long options.
* configure.ac, wrap.1, wrapc.1, options.c, options.h, wrap.c, wrapc.c:
Added --help/-h option.
* options.c: Removed wrong call to fatal_error().
* options.h, pjl_config.h, wrap.c, wrapc.c: Added UOPT().
* options.c: Now skipping whitespace in option arguments.
* markdown.c, markdown.h, wrap.c: s/fn_def_text/footnote_def_has_text/
* wrap.c: Replaced `switch` with `if`.
* markdown.c, wrap.c: Replaced default: with explicit cases.
* markdown.c: s/return NULL/break/
2023-05-19 Paul J. Lucas <[email protected]>
* lib/Makefile.am, gnulib-cache.m4, gnulib-common.m4, gnulib-comp.m4,
regex_test.c, util.h, wrap.c, wrapc.c: No longer using deprecated
stdnoreturn.h.
2023-05-18 Paul J. Lucas <[email protected]>
* alias.c, align.c, cc_map.c, markdown.c, options.c, regex_test.c,
unicode.h, util.c, wrap.c, wrapc.c, wregex.c: Using STATIC_CAST more.
* markdown.c: Added ().
* markdown.c: Ensure that STRLIT is really a string literal.
2023-05-11 Paul J. Lucas <[email protected]>
* options.c: Added opt_check_s_mutually_exclusive().
2023-05-07 Paul J. Lucas <[email protected]>
* options.c: Now using PACKAGE_STRING.
* cc_map.c, options.c, options.h: opt_format() now uses internal buffers.
2023-05-03 Paul J. Lucas <[email protected]>
* options.c: Eliminated *_OPTION() macros.
* options.c: Added opt_check_exclusive().
* doxygen.c: Made @par be EOL.
2023-04-12 Paul J. Lucas <[email protected]>
* alias.c, cc_map.c, options.c, pattern.c, pjl_config.h, read_conf.c,
regex_test.c, util.c, util.h, wrap.c, wrapc.c, wregex.c:
s/FATAL_ERR()/fatal_error()/
2023-04-05 Paul J. Lucas <[email protected]>
* wrap.c: Added missing "void".
2023-01-26 Paul J. Lucas <[email protected]>
* markdown.c: c/cur_/curr_/
2022-12-06 Paul J. Lucas <[email protected]>
* align.c, options.c, options.h, util.c, util.h, wrapc.c: Added "const" to
array parameters; added comments.
2022-12-05 Paul J. Lucas <[email protected]>
* alias.c, markdown.c, pattern.c, util.c, util.h, wrap.c, wrapc.c:
s/perror_exit_if/PERROR_EXIT_IF; added check_atexit(); added
initialize-checking code.
2022-12-03 Paul J. Lucas <[email protected]>
* cc_map.c, options.c, options.h, util.h, wrap.c, wrapc.c: Reworked option
parsing.
* configure.ac: Now requiring C11.
2022-11-15 Paul J. Lucas <[email protected]>
* configure.ac: Added more compiler warnings.
2022-11-08 Paul J. Lucas <[email protected]>
* wrap.c: s/for/while/
* configure.ac: Reworked configure.ac to check for optional
headers/libraries only when appropriate.
2022-08-26 Paul J. Lucas <[email protected]>
* wrapc.1: Eliminated double blank lines.
2022-08-18 Paul J. Lucas <[email protected]>
* util.c: Added PJL_IGNORE_RV().
2022-08-17 Paul J. Lucas <[email protected]>
* wrap.c, wrapc.c: Moved noreturn.
* wrap.c, wrapc.c: Now only 1 space after ) in help.
2022-07-26 Paul J. Lucas <[email protected]>
* options.c: Explicit != 0.
2022-07-22 Paul J. Lucas <[email protected]>
* bootstrap: Added bootstrap.
2022-07-15 Paul J. Lucas <[email protected]>
* pjl_config.h: s/__attribute__((unused))/MAYBE_UNUSED/
* alias.c, alias.h, align.c, cc_map.c, cc_map.h, common.h, doxygen.c,
doxygen.h, markdown.c, markdown.h, options.c, options.h, pattern.c,
pattern.h, pjl_config.h, read_conf.c, read_conf.h, unicode.c, unicode.h,
util.h, wrap.c, wrapc.c, wregex.c, wregex.h: Now using attribute.h.
2021-09-04 Paul J. Lucas <[email protected]>
* doxygen.c, markdown.c, util.c, util.h: Replaced bin_search() with standard
bsearch(3).
2021-08-06 Paul J. Lucas <[email protected]>
* run_test.sh: Now distinguishing failed from error.
2021-04-27 Paul J. Lucas <[email protected]>
* configure.ac: Replaced obsolete AC_PROG_CC_C99 with AC_PROG_CC.
2021-02-06 Paul J. Lucas <[email protected]>
* configure.ac: Now using AX_CHECK_COMPILE_FLAG instead of
AX_CFLAGS_GCC_OPTION.
2020-12-21 Paul J. Lucas <[email protected]>
* idx.h: Added idx.h.
2020-12-16 Paul J. Lucas <[email protected]>
* markdown.h: Fixed missing size_t.
2020-12-11 Paul J. Lucas <[email protected]>
* Makefile.am: Added update-gnulib target.
* markdown.c: Fixed #include order.
2020-12-02 Paul J. Lucas <[email protected]>
* pjl_config.h: Removed do { ... } while (0)
2020-11-28 Paul J. Lucas <[email protected]>
* pjl_config.h: Added #ifdef wrap_config_H.
* alias.c, alias.h, align.c, cc_map.c, cc_map.h, common.c, common.h,
doxygen.c, doxygen.h, markdown.c, markdown.h, options.c, options.h,
pattern.c, pattern.h, pjl_config.h, read_conf.c, read_conf.h,
regex_test.c, unicode.c, unicode.h, util.h, wrap.c, wrapc.c, wregex.c,
wregex.h: s/W_/PJL_/ for pjl_config.h macros.
* src/Makefile.am, alias.c, alias.h, align.c, cc_map.c, cc_map.h, common.c,
common.h, doxygen.c, doxygen.h, markdown.c, markdown.h, options.c,
options.h, pattern.c, read_conf.c, regex_test.c, unicode.c, unicode.h,
util.c, util.h, wrap.c, wrapc.c, wregex.c, wregex.h:
s/wrap.h/pjl_config.h/
* configure.ac, unicode.c, unicode.h: Now using char8_t.
2020-10-11 Paul J. Lucas <[email protected]>
* ax_append_flag.m4, ax_check_compile_flag.m4: Updated m4 macros.
2020-09-24 Paul J. Lucas <[email protected]>
* lib/Makefile.am, stdnoreturn.in.h, gnulib-cache.m4, gnulib-comp.m4,
stdnoreturn.m4, regex_test.c, util.h, wrap.c, wrap.h, wrapc.c: Now using
Gunlib's stdnoreturn.h.
2020-08-26 Paul J. Lucas <[email protected]>
* configure.ac, wrapc.1, options.c, test/Makefile.am, hello_01.fs,
hello_04.fs, wrapc--Forth-01.txt, wrapc--Forth-04.txt,
wrapc--Forth-01.test, wrapc--Forth-04.test: Added suppor for Forth \
comments.
* man/man1/Makefile.am: Added show_wrap and show_wrapc targets.
2020-08-02 Paul J. Lucas <[email protected]>
* wrapc.1: Added mention of Chapel and Dart.
2020-06-10 Paul J. Lucas <[email protected]>
* common.c, read_conf.c, regex_test.c: s/(void)/W_IGNORE_RV()/
2020-06-01 Paul J. Lucas <[email protected]>
* configure.ac: Added AX_CFLAGS_WARN_ALL.
* wrapc.c: Removed ARG_SPRINTF().
2020-05-28 Paul J. Lucas <[email protected]>
* wrap.c, wrapc.c: s/--eol=CHAR/--eol=STR/
2020-05-26 Paul J. Lucas <[email protected]>
* wrap.c, wrap.h, wrapc.c, wregex.c: s/C_IGNORE_RV/W_IGNORE_RV/
* configure.ac, doxygen.c: Added support for docbookinclude, maninclude, and
xmlinclude.
2020-05-19 Paul J. Lucas <[email protected]>
* wrapc.c: Added assert() for wrap argument count.
* wrapc.c: s/pre_dox_cmd/prev_dox_cmd/
2020-05-14 Paul J. Lucas <[email protected]>
* configure.ac, markdown.c, options.c, unicode.c, wrap.h: Fixed fallthrough
warning.
2020-04-03 Paul J. Lucas <[email protected]>
* common.c, read_conf.c, regex_test.c: Added (void).
2020-04-01 Paul J. Lucas <[email protected]>
* configure.ac, pjl_compile.m4, wrap.c, wrap.h, wrapc.c, wregex.c: Now using
PJL_COMPILE macro.
2020-03-26 Paul J. Lucas <[email protected]>
* configure.ac, ax_c___attribute__.m4, alias.c, alias.h, align.c, cc_map.c,
cc_map.h, common.c, common.h, doxygen.c, doxygen.h, markdown.c,
markdown.h, options.c, options.h, pattern.c, pattern.h, read_conf.c,
read_conf.h, regex_test.c, unicode.c, unicode.h, util.c, util.h, wrap.c,
wrap.h, wrapc.c, wregex.c, wregex.h: Added gcc attributes.
2020-01-22 Paul J. Lucas <[email protected]>
* configure.ac, alias.c, options.c: Added more warnings.
2019-12-04 Paul J. Lucas <[email protected]>
* wrapc.c: Added (void).
* wrapc.c: Made "if" explicit.
* alias.c, markdown.c, pattern.c, util.c, util.h, wrapc.c: Added IF_EXIT().
2019-12-03 Paul J. Lucas <[email protected]>
* lib/Makefile.am, _Noreturn.h, fnmatch.in.h, glthread/lock.c,
glthread/lock.h, glthread/threadlib.c, intprops.h, stdlib.in.h,
string.in.h, unistd.in.h, verify.h, wchar.in.h, wctype.in.h,
gnulib-common.m4, host-cpu-c-abi.m4, lib-link.m4, lib-prefix.m4,
mbrtowc.m4, threadlib.m4, wchar_h.m4, wctype_h.m4: Updated GNUlib.
* configure.ac, alias.c, alias.h, align.c, cc_map.c, markdown.c, markdown.h,
options.c, regex_test.c, unicode.h, util.c, util.h, wrap.c, wrapc.c,
wregex.c: Added more -W options for gcc and fixed warnings.
2019-11-15 Paul J. Lucas <[email protected]>
* unicode.c: Removed unneeded #include.
* unicode.h: Fixed including of <uchar.h>.
2019-10-29 Paul J. Lucas <[email protected]>
* wrap.h: s/Mac OS X/MacOS/
2019-09-23 Paul J. Lucas <[email protected]>
* lib/Makefile.am, _Noreturn.h, flexmember.h, glthread/lock.c,
glthread/lock.h, glthread/threadlib.c, intprops.h, localcharset.c,
mbrtowc.c, memchr.valgrind, stddef.in.h, stdlib.in.h, string.in.h,
unistd.in.h, verify.h, wchar.in.h, wctype.in.h, windows-initguard.h,
windows-mutex.c, windows-mutex.h, windows-once.c, windows-once.h,
windows-recmutex.c, windows-recmutex.h, windows-rwlock.c,
windows-rwlock.h, extern-inline.m4, flexmember.m4, getopt.m4,
gnulib-common.m4, gnulib-comp.m4, host-cpu-c-abi.m4, lib-ld.m4,
lib-link.m4, lib-prefix.m4, lock.m4, malloc.m4, mbrtowc.m4, memchr.m4,
nocrash.m4, pthread_rwlock_rdlock.m4, strerror.m4, sys_socket_h.m4,
threadlib.m4, unistd_h.m4: Updated GNUlib.
* configure.ac, ax_check_typedef.m4, pjl_check_typedef.m4, unicode.c,
unicode.h, wrap.c, wregex.c: s/codepoint_t/char32_t/
2019-07-15 Paul J. Lucas <[email protected]>
* util.c: s/'\0'/NULL/
2019-07-01 Paul J. Lucas <[email protected]>
* wrap.c, wrapc.c: Now printing help to stdout.
* wrapc.c: Fixed spacing.
* configure.ac, wrap.c, wrapc.c: Reworked help.
2019-04-10 Paul J. Lucas <[email protected]>
* configure.ac: Updated version to 5.4.1.
2019-04-04 Paul J. Lucas <[email protected]>
* run_test.sh: Now ensuring that debugger environment variables are unset.
2019-04-03 Paul J. Lucas <[email protected]>
* wrapc.1: s/B/BR/
* wrap.c: s/pc/pb/
2019-04-02 Paul J. Lucas <[email protected]>
* wrap.c, test/Makefile.am, test_08.c, wrapc--C-08.txt, wrapc--C-08.test:
Fixed additional blank comment line.
* wrapc.c: Added comment.
* util.c: Added unlikely().
* align.c, doxygen.c, unicode.c, wrap.c, wrapc.c: Added asserts.
2019-04-01 Paul J. Lucas <[email protected]>
* unicode.h: Fixed comment.
* unicode.h: FIxed typo.
2019-03-30 Paul J. Lucas <[email protected]>
* configure.ac, markdown.c, test/Makefile.am, md-ol-12s.md,
wrap--Markdown-ol-12s.txt, wrap--Markdown-ol-12s.test: Fixed hang-indent
for ordered lists >= 10.
2019-02-13 Paul J. Lucas <[email protected]>
* cc_map.c, util.c, util.h, wrapc.c: Added STATIC_CAST; using CONST_CAST
more.
* doxygen.c: Fixed @param.
2019-02-05 Paul J. Lucas <[email protected]>
* options.c: Now using C99 VLAs.
2019-01-23 Paul J. Lucas <[email protected]>
* wrapc.c: More explicit checks.
* wrap.c: Made some checks explicit; clean-up.
* regex_test.c: Added regex_compile() error checking.
* options.c: Added braces.
* options.c: Made more explicit.
2019-01-22 Paul J. Lucas <[email protected]>
* cc_map.c: Made test explicit.
* wrap.c: Added {}.
* wrap.c: Added comments.
* wrapc.c: More explicit about condition.
2019-01-11 Paul J. Lucas <[email protected]>
* doxygen.c, doxygen.h, wrap.h: Updated copyright year to 2019, part 2.
* Makefile.am, configure.ac, man/Makefile.am, man/man1/Makefile.am, wrap.1,
man/man5/Makefile.am, wraprc.5, src/Makefile.am, alias.c, alias.h,
common.c, common.h, markdown.c, markdown.h, options.c, options.h,
pattern.c, pattern.h, read_conf.c, read_conf.h, unicode.h, util.c, util.h,
wrap.c, wrapc.c, test/Makefile.am, run_test.sh: Updated copyright year to
2019.
* read_conf.c: Added comment.
2019-01-10 Paul J. Lucas <[email protected]>
* read_conf.c: s/parse_section/section_parse/
* read_conf.c: Added parse_section().
* util.h: Added needed #include <stdint.h>.
2018-12-19 Paul J. Lucas <[email protected]>
* markdown.c: Reordered bin_search_str_strptr_cmp().
* markdown.c, util.c, util.h: Make bin_search() generic.
* options.c: Fixed sorting of opt_eol.
2018-12-18 Paul J. Lucas <[email protected]>
* src/Makefile.am: Added missing wregex.h.
* regex_test.c, wrap.c, wregex.c, wregex.h: regex clean-up.
2018-12-17 Paul J. Lucas <[email protected]>
* wrap.c, data-01.1, wrap-a.txt, wrap-d.txt, wrap-dep.txt: Fixed bug with
two consecutive . lines.
* wrap.c: Added comment for bool args.
* cc_map.c, options.c, util.h: Added FREE_* macros and more comments.
2018-12-14 Paul J. Lucas <[email protected]>
* cc_map.c: Fixed inline.
* options.c, options.h, wrap.c, wrapc.c: s/opt_block_chars/opt_block_delims/
* wrap.c: Made comparisons explicit.
* options.c, options.h, wrap.c, wrapc.c:
s/opt_lead_para_delims/opt_block_chars/
2018-12-07 Paul J. Lucas <[email protected]>
* configure.ac: Upped version to 5.2.1.
* lib/Makefile.am, _Noreturn.h, intprops.h, stdlib.in.h, unistd.in.h,
errno_h.m4, fnmatch.m4, fnmatch_h.m4, gnulib-common.m4, gnulib-comp.m4,
stddef_h.m4, unistd_h.m4: Updated GNUlib.
* src/Makefile.am, alias.c, align.c, cc_map.c, cc_map.h, common.c, common.h,
markdown.c, markdown.h, options.c, options.h, pattern.c, read_conf.c,
regex_test.c, unicode.c, unicode.h, util.c, util.h, wrap.c, wrap.h,
wrapc.c, wregex.c, wregex.h: Now handling "inline" correctly on Mac OS X.
2018-12-05 Paul J. Lucas <[email protected]>
* markdown.c: More explicit checks.
2018-10-02 Paul J. Lucas <[email protected]>
* options.c: Removed unnecessary cast.
2018-09-10 Paul J. Lucas <[email protected]>
* wrapc.1: s/then the/the/
2018-08-29 Paul J. Lucas <[email protected]>
* wrapc.1, options.c: Now mentioning Crystal.
2018-08-13 Paul J. Lucas <[email protected]>
* wrapc.1, options.c: Added mention of Nim.
2018-08-11 Paul J. Lucas <[email protected]>
* util.c: Made comparison more explicit.
* wrapc.1, options.c: Added mention of more programming languages.
* wraprc.5: Added mention that \ can be used to escape #.
2018-07-27 Paul J. Lucas <[email protected]>
* wrapc.c: s/its/it's/
2018-06-28 Paul J. Lucas <[email protected]>
* wrapc.1: s/c/s/ for --align-column.
* wrapc.1: s/comprised/composed/
* wrapc.1, options.c: Added mention of Kotlin.
2018-05-28 Paul J. Lucas <[email protected]>
* markdown.c, options.c, read_conf.c, wrap.c, wrapc.c: Made more checks
explicit.
2018-05-19 Paul J. Lucas <[email protected]>
* lib/Makefile.am, alloca.in.h, arg-nonnull.h, c++defs.h, config.charset,
errno.in.h, flexmember.h, fnmatch.c, fnmatch.in.h, fnmatch_loop.c,
getopt-cdefs.in.h, getopt-core.h, getopt-ext.h, getopt-pfx-core.h,
getopt-pfx-ext.h, getopt.c, getopt.in.h, getopt1.c, getopt_int.h,
gettext.h, hard-locale.c, hard-locale.h, intprops.h, localcharset.c,
localcharset.h, malloc.c, mbrtowc.c, mbsinit.c, mbsrtowcs-impl.h,
mbsrtowcs-state.c, mbsrtowcs.c, memchr.c, ref-add.sin, ref-del.sin,
stdbool.in.h, stddef.in.h, stdlib.in.h, strdup.c, streq.h,
strerror-override.c, strerror-override.h, strerror.c, string.in.h,
strndup.c, strnlen.c, strnlen1.c, strnlen1.h, sys_types.in.h,
sysexits.in.h, unistd.in.h, verify.h, warn-on-use.h, wchar.in.h,
wctype.in.h, 00gnulib.m4, absolute-header.m4, alloca.m4,
builtin-expect.m4, configmake.m4, errno_h.m4, extensions.m4,
extern-inline.m4, fcntl-o.m4, flexmember.m4, fnmatch.m4, getopt.m4,
glibc21.m4, gnulib-cache.m4, gnulib-common.m4, gnulib-comp.m4,
gnulib-tool.m4, hard-locale.m4, include_next.m4, localcharset.m4,
locale-fr.m4, locale-ja.m4, locale-zh.m4, malloc.m4, mbrtowc.m4,
mbsinit.m4, mbsrtowcs.m4, mbstate_t.m4, memchr.m4, mmap-anon.m4,
nocrash.m4, off_t.m4, onceonly.m4, ssize_t.m4, stdbool.m4, stddef_h.m4,
stdlib_h.m4, strdup.m4, strerror.m4, string_h.m4, strndup.m4, strnlen.m4,
sys_socket_h.m4, sys_types_h.m4, sysexits.m4, unistd_h.m4, warn-on-use.m4,
wchar_h.m4, wchar_t.m4, wctype_h.m4, wint_t.m4: Updated GNUlib.
* configure.ac, wrapc.1, options.c, wrapc.c, test/Makefile.am, hello_00.sim,
hello_01.sim, hello_02.sim, hello_03.sim, hello_04.sim, hello_05.sim,
hello_06.sim, wrapc--Simula-00.txt, wrapc--Simula-01.txt,
wrapc--Simula-02.txt, wrapc--Simula-03.txt, wrapc--Simula-04.txt,
wrapc--Simula-05.txt, wrapc--Simula-06.txt, wrapc--Simula-00.test,
wrapc--Simula-01.test, wrapc--Simula-02.test, wrapc--Simula-03.test,
wrapc--Simula-04.test, wrapc--Simula-05.test, wrapc--Simula-06.test: Added
support for Simula comments in wrapc.
* wrapc.c: Simplification for COBOL.
* wrapc.c: Simplification.
* alias.c, align.c, cc_map.c, common.c, markdown.c, options.c, pattern.c,
read_conf.c, regex_test.c, util.c, wrap.c, wrapc.c: Made comparisons more
explicit.
2018-05-18 Paul J. Lucas <[email protected]>
* wrapc.1, options.c: Added more languages that are covered by wrapc: C#,
F#, Mathematica, PL/I, Pure, SQL, and Tcl.
2018-04-24 Paul J. Lucas <[email protected]>
* wrap.c, wrapc.c: s/an/and/ in usage messages.
2018-04-07 Paul J. Lucas <[email protected]>
* run_test.sh: Made color output match standard test-driver.
2018-03-24 Paul J. Lucas <[email protected]>
* util.h: Now doing explicit comparison == '\0'.
2018-03-21 Paul J. Lucas <[email protected]>
* alias.c, align.c, cc_map.c, common.c, markdown.c, options.c, pattern.c,
read_conf.c, regex_test.c, util.c, wrap.c, wrapc.c, wregex.c: Added
close_pipe(); made non-bool tests not use !.
2018-03-10 Paul J. Lucas <[email protected]>
* wraprc.5: Added *.go
2018-02-20 Paul J. Lucas <[email protected]>
* wrap.1: Fixed English.
* wrap.1: s/--markdown/--no-hyphen/
2018-02-18 Paul J. Lucas <[email protected]>
* wraprc.5: Added missing backslash.
* wrapc.c: Added path_buf_t.
2017-12-04 Paul J. Lucas <[email protected]>
* wraprc.5: Now correctly specify allowable characters in alias names.
2017-08-26 Paul J. Lucas <[email protected]>
* lib/Makefile.am, flexmember.h, fnmatch.c, fnmatch_loop.c,
getopt-pfx-core.h, getopt-pfx-ext.h, getopt.c, gettext.h, intprops.h,
localcharset.c, mbrtowc.c, stdlib.in.h, string.in.h, sys_types.in.h,
unistd.in.h, wchar.in.h, wctype.in.h, extensions.m4, fcntl-o.m4,
include_next.m4, mbrtowc.m4, memchr.m4, stdlib_h.m4, strerror.m4,
string_h.m4, sys_types_h.m4, unistd_h.m4, wchar_h.m4, wctype_h.m4,
wint_t.m4: Updated gnulib.
2017-07-19 Paul J. Lucas <[email protected]>
* alias.c, markdown.c, pattern.c, util.c, util.h, wrapc.c: Made
perror_exit() a function.
2017-07-16 Paul J. Lucas <[email protected]>
* alias.c, cc_map.c, common.c, markdown.c, options.c, pattern.c,
read_conf.c, util.c, wrap.c, wrapc.c, wregex.c: Made assert conditions
explicit.
* options.c, read_conf.c, util.c, util.h, wrap.c, wrapc.c: Added likely()
and unlikely().
* unicode.c: Added FALLTHROUGH.
* alias.c, cc_map.c, markdown.c, pattern.c, util.c, util.h: Now using
FREE().
2017-04-27 Paul J. Lucas <[email protected]>
* markdown.c, options.c: Changed "no break;" comment to "FALLTHROUGH" for
gcc >= 7.
2017-04-22 Paul J. Lucas <[email protected]>
* Makefile.am: Added README.md to EXTRA_DIST.
* lib/Makefile.am, arg-nonnull.h, c++defs.h, getopt-cdefs.in.h,
getopt-core.h, getopt-ext.h, getopt-pfx-core.h, getopt-pfx-ext.h,
getopt.c, getopt.in.h, getopt1.c, getopt_int.h, gettext.h, intprops.h,
localcharset.c, mbsinit.c, unistd.in.h, verify.h, warn-on-use.h,
flexmember.m4, getopt.m4, gnulib-common.m4, gnulib-comp.m4: Updated
GNUlib.
* src/Makefile.am: Added headers.
2017-04-10 Paul J. Lucas <[email protected]>
* configure.ac: Fixed typo in comment.
2017-03-11 Paul J. Lucas <[email protected]>
* wrapc.1, align.c, test/Makefile.am, wrapc-A-08c.c, wrapc-A-08c.txt,
wrapc-A-08c.test: Now special-casing # for align.
2017-03-10 Paul J. Lucas <[email protected]>
* wrapc.1, align.c, test/Makefile.am, wrapc-A-08a.c, wrapc-A-08b.pas,
wrapc-A-09a.c, wrapc-A-08a.txt, wrapc-A-08b.txt, wrapc-A-09a.txt,
wrapc-A-08a.test, wrapc-A-08b.test, wrapc-A-09a.test: Now longer aligning
comments after single tokens.
* align.c, test/Makefile.am, wrapc-A-07.c, wrapc-A-07.txt, wrapc-A-07.test:
Fixed within-string comments.
2017-03-05 Paul J. Lucas <[email protected]>
* wrap.c, test/Makefile.am, hyphen-08.txt, wrap--hyphen-08.txt,
wrap--hyphen-08.test: Fixed hyphen wrapping bug.
* alias.h, cc_map.h, common.h, markdown.h, options.h, pattern.h,
read_conf.h, unicode.h, util.h, wregex.h: Added @file comments to header
files.
2017-03-03 Paul J. Lucas <[email protected]>
* wrapc.c: Fixed typo in comment.
* alias.c, common.c, markdown.c, options.c, pattern.c, read_conf.c,
regex_test.c, unicode.c, util.c, wrap.c, wrapc.c, wregex.c: #include
clean-up.
2017-03-02 Paul J. Lucas <[email protected]>
* read_conf.c: Replaced strcpy().
* align.c, cc_map.h: Added cc_is_single() and cc_map_get().
* src/Makefile.am, align.c, cc_map.c, cc_map.h, common.h, util.c, util.h,
wrapc.c: Refactored some wrapc code into separate .c files.
2017-03-01 Paul J. Lucas <[email protected]>
* configure.ac, wrapc.c, test/Makefile.am, wrapc-A-18.c, wrapc-A-19.pas,
wrapc-A-18.txt, wrapc-A-19.txt, wrapc-A-18.test, wrapc-A-19.test: Now
ignoring within-line comments for -A.
2017-02-23 Paul J. Lucas <[email protected]>
* COPYING, Makefile.am, configure.ac, man/Makefile.am, man/man1/Makefile.am,
wrap.1, wrapc.1, man/man5/Makefile.am, wraprc.5, src/Makefile.am, alias.c,
alias.h, common.c, common.h, markdown.c, markdown.h, options.c, options.h,
pattern.c, pattern.h, read_conf.c, read_conf.h, regex_test.c, unicode.c,
unicode.h, util.c, util.h, wrap.c, wrapc.c, wregex.c, wregex.h,
test/Makefile.am, run_test.sh: Updated to GPLv3.
2017-02-13 Paul J. Lucas <[email protected]>
* options.h: Moved OPT_BUF_SIZE.
* options.c, options.h, wrapc.c: Now using format_opt().
2017-02-12 Paul J. Lucas <[email protected]>
* wraprc.5: More examples in conf file.
2017-02-11 Paul J. Lucas <[email protected]>
* options.c, util.c, util.h: Removed tolower_s().
2017-02-10 Paul J. Lucas <[email protected]>
* wrap.1: Fixed line width.
2017-02-09 Paul J. Lucas <[email protected]>
* wrapc.1: Added mention that comments on lines by themselves are passed
through unaltered.
* wrapc.c, test/Makefile.am, wrapc-A-17.c, wrapc-A-17.txt, wrapc-A-17.test:
No longer aligning non-end-of-line comments.
* util.c, util.h, wrapc.c: Fixed --disable-assert build; added
WRAP_DUMP_CC_MAP.
2017-02-08 Paul J. Lucas <[email protected]>
* options.c: Now using strcasecmp().
* configure.ac, wrapc.1, wraprc.5, alias.c, alias.h, markdown.c, options.c,
options.h, pattern.c, pattern.h, read_conf.c, util.c, util.h, wrapc.c,
test/Makefile.am, wrapc-A-01a.c, wrapc-A-01b.c, wrapc-A-02a.c,
wrapc-A-02b.c, wrapc-A-03a.c, wrapc-A-03b.c, wrapc-A-04a.c, wrapc-A-04b.c,
wrapc-A-05a.c, wrapc-A-05b.c, wrapc-A-06.c, wrapc-A-10.c, wrapc-A-11.c,
wrapc-A-12.c, wrapc-A-13.c, wrapc-A-14.c, wrapc-A-14s.c, wrapc-A-15.c,
wrapc-A-16.c, wrapc-A-01a.txt, wrapc-A-01b.txt, wrapc-A-02a.txt,
wrapc-A-02b.txt, wrapc-A-03a.txt, wrapc-A-03b.txt, wrapc-A-04a.txt,
wrapc-A-04b.txt, wrapc-A-05a.txt, wrapc-A-05b.txt, wrapc-A-06.txt,
wrapc-A-10.txt, wrapc-A-11.txt, wrapc-A-12.txt, wrapc-A-13.txt,
wrapc-A-14.txt, wrapc-A-14s.txt, wrapc-A-15.txt, wrapc-A-16.txt,
wrapc-A-01a.test, wrapc-A-01b.test, wrapc-A-02a.test, wrapc-A-02b.test,
wrapc-A-03a.test, wrapc-A-03b.test, wrapc-A-04a.test, wrapc-A-04b.test,
wrapc-A-05a.test, wrapc-A-05b.test, wrapc-A-06.test, wrapc-A-10.test,
wrapc-A-11.test, wrapc-A-12.test, wrapc-A-13.test, wrapc-A-14.test,
wrapc-A-14s.test, wrapc-A-15.test, wrapc-A-16.test, wrapc-Ax-01.test,
wrapc-Ax-02.test, wrapc-D-02.test: Added --align-column.
2017-02-05 Paul J. Lucas <[email protected]>
* wrapc.c: Added more EX_ exit codes.
* markdown.h, options.h, wregex.h: Fixed linking at -O0.
* options.h: Added comments.
* wrapc.c: Fixed whitespace.
* wrapc.c: Simplified str_width().
* wrapc.c: Added closing_char().
2017-02-04 Paul J. Lucas <[email protected]>
* common.c, common.h, regex_test.c, util.c, util.h, wrap.c, wrapc.c: Renamed
macros to match W_FWRITE.
2017-02-03 Paul J. Lucas <[email protected]>
* configure.ac, wrap.1, wrapc.1, options.c, util.c, util.h: Added
--width=term.
2017-02-02 Paul J. Lucas <[email protected]>
* options.c: Moved check_mutually_exclusive().
* configure.ac, wrapc.1, options.c, options.h, test/Makefile.am,
wrapc-D-02.test: Better handling of --comment-chars/-D value.
2017-02-01 Paul J. Lucas <[email protected]>
* wrap.c: Fixed typo in usage message.
2017-01-30 Paul J. Lucas <[email protected]>
* options.c: Can now support non-alpha options.
* src/Makefile.am: Added COMMON_SOURCES.
2017-01-27 Paul J. Lucas <[email protected]>
* options.c: s/int/unsigned/
* unicode.h: Sorted unicode.h.
* common.h: Removed is_windows() -- used only in 1 place.
* options.c, options.h, wrap.c, wrapc.c: s/init_options/options_init/
* common.h, read_conf.c: Added missing "void".
2017-01-25 Paul J. Lucas <[email protected]>
* wrap.c: Variable renaming.
* wrap.c: Removed unneeded #include.
* wrap.c: Function renaming.
2017-01-24 Paul J. Lucas <[email protected]>
* regex_test.c, util.c, util.h, wrap.c: Now setting locale for LC_COLLATE in
addition to LC_CTYPE to UTF-8.
2017-01-23 Paul J. Lucas <[email protected]>
* src/Makefile.am: Now using global LDADD; remove -L from AM_CPPFLAGS.
* regex_test.c, wrap.c, wregex.c, wregex.h: Now using wregex_t typedef.
2017-01-22 Paul J. Lucas <[email protected]>
* common.h: Removed tabs.
* regex_test.c: Fixed tab.
* wrap.1, wrapc.1: Changed .TP 8 to just .TP.
* wrap.1, wrapc.1, options.c: Changed --block to --block-chars.
* wraprc.5: Updated to use long options.
2017-01-21 Paul J. Lucas <[email protected]>
* wraprc.5: Mention the characters comprising alias names.
* configure.ac, wrap.1, wrapc.1, options.c: Added long command-line options.
* wregex.c: Added missing header.
* options.c, options.h: Made COMMENT_CHARS_DEFAULT a constant.
2017-01-20 Paul J. Lucas <[email protected]>
* src/Makefile.am, unicode.c, unicode.h, wregex.c, http.regex:
is_begin_word_boundary() now works with UTF-8.
2017-01-19 Paul J. Lucas <[email protected]>
* configure.ac: AC_HEADER clean-up.
* unicode.c, unicode.h: Replaced cp_is_alpha() and cp_is_space() with isw*()
equivalents.
* regex_test.c, util.c, util.h, wrap.c, wregex.c: Now always setting
LC_CTYPE locale to UTF-8.
* src/Makefile.am, common.c, wrap.c: Moved markdown_cleanup() to
wrap_cleanup() so wrapc no longer depends on markdown.o.
* util.c: Fixed definition of free_now().
* wrapc.c: s/break_loop/done/
* wregex.c: Now printing better error message when can't find UTF-8 locale.
* wregex.c: Now caching known good UTF-8 locale.
* unicode.c, unicode.h: s/unsigned char/uint8_t/
* unicode.c: s/local/inline/
* wrap.1: Added exit codes of 69 and 70.
* unicode.h, wrap.c: Moved cp_is_lead_para_delim() and cp_is_para_delim()
into wrap.c.
* wregex.c: Now also trying en_US.UTF-8.
2017-01-18 Paul J. Lucas <[email protected]>
* markdown.c: Made md_code_indent_min() actually be inline.
* util.c, wrapc.c: Removed _s struct suffix.
* configure.ac, wrap.1, src/Makefile.am, regex_test.c, wrap.c, wregex.c,
wregex.h, test/Makefile.am, regex-http-01.txt, regex-http-02.txt,
wrap--regex-http-01.txt, wrap--regex-http-02.txt, run_test.sh,
e-mail.regex, file.regex, ftp.regex, http.regex, wrap--regex-http-01.test,
wrap--regex-http-02.test: No longer wrap at hyphens within URLs.
2017-01-16 Paul J. Lucas <[email protected]>
* lib/Makefile.am, alloca.in.h, config.charset, flexmember.h, fnmatch.c,
fnmatch.in.h, fnmatch_loop.c, getopt.c, getopt.in.h, getopt1.c,
getopt_int.h, gettext.h, hard-locale.c, hard-locale.h, localcharset.c,
localcharset.h, mbrtowc.c, mbsinit.c, mbsrtowcs-impl.h, mbsrtowcs-state.c,
mbsrtowcs.c, memchr.c, ref-add.sin, ref-del.sin, stdbool.in.h,
stddef.in.h, stdlib.in.h, streq.h, string.in.h, strndup.c, strnlen.c,
strnlen1.c, strnlen1.h, sys_types.in.h, sysexits.in.h, unistd.in.h,
verify.h, wchar.in.h, wctype.in.h, 00gnulib.m4, absolute-header.m4,
alloca.m4, builtin-expect.m4, configmake.m4, extensions.m4,
extern-inline.m4, fcntl-o.m4, flexmember.m4, fnmatch.m4, getopt.m4,
glibc21.m4, gnulib-cache.m4, gnulib-common.m4, gnulib-comp.m4,
gnulib-tool.m4, hard-locale.m4, include_next.m4, localcharset.m4,
locale-fr.m4, locale-ja.m4, locale-zh.m4, mbrtowc.m4, mbsinit.m4,
mbsrtowcs.m4, mbstate_t.m4, memchr.m4, mmap-anon.m4, nocrash.m4, off_t.m4,
onceonly.m4, ssize_t.m4, stdbool.m4, stddef_h.m4, stdlib_h.m4,
string_h.m4, strndup.m4, strnlen.m4, sys_types_h.m4, sysexits.m4,
unistd_h.m4, warn-on-use.m4, wchar_h.m4, wchar_t.m4, wctype_h.m4,
wint_t.m4, snippet/arg-nonnull.h, snippet/c++defs.h,
snippet/warn-on-use.h: Updated GNUlib.
2017-01-10 Paul J. Lucas <[email protected]>
* common.c, common.h, wrap.c, wrapc.c: s/clean_up/common_cleanup/
2017-01-09 Paul J. Lucas <[email protected]>
* wrap.c: s/read_line()/wrap_readline()/
* wrap.c: s/ps/ppc/
* Makefile.am, configure.ac, man/Makefile.am, man/man1/Makefile.am, wrap.1,
wrapc.1, man/man5/Makefile.am, wraprc.5, src/Makefile.am, alias.c,
alias.h, common.c, common.h, markdown.c, markdown.h, options.c, options.h,
pattern.c, pattern.h, read_conf.c, read_conf.h, unicode.c, unicode.h,
util.c, util.h, wrap.c, wrapc.c, test/Makefile.am, run_test.sh: Updated
copyright year to 2017.
* common.c, common.h, read_conf.c, util.c, util.h: util.[ch] are now
wrap-free.
* alias.h, pattern.h: s/_s//
2017-01-06 Paul J. Lucas <[email protected]>
* wraprc.5: Corrected documentation of multiple matches.