summaryrefslogtreecommitdiff
path: root/doc/ChangeLog
blob: f51883596999f7710adfeabb85ed36094d83b24f (plain)
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
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
2016-08-23         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am (EXTRA_DIST): Add new file, wordlist.
	(spell): New target.
	* wordlist: New file.
	* gawktexi.in: Fix typos, adjust update date.
	* awkcard.in: Update copyright years.

2016-08-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Mark DJGPP port as unsupported.

2016-07-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix a typo. Thanks to Marco Curreli for reporting.

2016-07-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix a typo. Thanks to Antonio Colombo for reporting.

2016-07-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Document GAWK_LOCALE_DIR env var and also to not
	use LANGUAGE env var.

2016-07-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Auto-set): Add example use of multiply function.

2016-06-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix a typo, and replace hard-coded "section" with
	@value{SECTION} where appropriate. Thanks to Antonio
	Giovanni Colombo for the reports.
	(UPDATE-MONTH, PATCHLEVEL): Update to current before release.
	* awkcard.in: Update version.

2016-05-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Typo fix in extension section, thanks to
	 Manuel Collado <mcollado2011@gmail.com>.

2016-05-02         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in: Document new CPP defines gawk_api_major_version and
	gawk_api_minor_version.

2016-04-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkinet.texi: Some general cleanups. Remove stuff commented
	out since 2001, index RFCs, change function name convention to
	match main gawktexi.in. Update the update month.

2016-04-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in, gawkinet.texi: Enable use of braces in
	indexes. Requires Texinfo 6.0 or later.

2016-04-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Two-way I/O): Document that closing the "from"
	end waits for the process to exit, so it's not such a great idea.

2016-03-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkinet.texi: Update UDP client and discussion, update
	modification dates and gawk versions.

2016-03-11         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Improve system() return values documentation.

2016-03-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Document system() return values.
	* gawk.1: Add a pointer to the manual about same.

2016-02-23         Arnold D. Robbins     <arnold@skeeve.com>

	* sidebar.awk: Globally replace [[:space:]] with [ \t] so that
	it will work with old versions of mawk (as found, boo!, on many
	Debian-based distributions).  Thanks to Yehezkel Bernat for
	discovering and reporting the issue.

2016-02-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Bracket Expressions): Add a small note about
	Unicode in bracket expressions.

2016-02-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fixes in wc.awk and in cut.awk. Thanks to David Ward,
	dlward134@gmail.com.  Added an example of use of rewind(), also
	per suggestion from David Ward.
	* gawktexi.in: Update info about Texinfo versions.

2016-02-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Revise for use with Texinfo 6.1.
	Remove ` @c' at the end of inline docbook constructs.
	Remove special @DB*REF macros, not needed anymore.
	Use @sup for superscripts where possible.
	* texinfo.tex: Updated.

2016-02-03         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in (Command-Line Options): Change wording of -M description
	to say "Select" instead of "Force".
	(Arbitrary-Precision Arithmetic Features): Tweak the wording to make
	it clear that MPFR is not used unless the -M option is supplied.

2016-02-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (VMS Running): Improve the Texinfo usage.

2016-01-31         John E. Malmberg     <wb8tyw@qsl.net>

	* gawktexi.in (VMS Running): Add instructions on how to redirect
	gawk data to a VMS command.

2016-01-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Bracket Expressions): Document that '[', '.' and
	'*' are literal inside bracket expressions.
	(Two-way I/O): Add stuff about stdbuf and deadlocks.

2016-01-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Array Sorting Functions): Clean up the code some,
	per suggestion from Michal Jaegermann. Tighten up the prose
	a bit too.

2016-01-14         Arnold D. Robbins     <arnold@skeeve.com>

	* ChangeLog: Remove spurious whitespace.

2016-01-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Array Sorting Functions): Add an example of
	using a function name with asort(). Response to bug report
	Stephane Goujet <stephane.goujet@wanadoo.fr>.

2015-12-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix some @c endfile. Thanks to Antonio
	Giovanni Colombo for the report and patch.

2015-12-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Update description of PROCINFO, and sort it properly.
	* gawktexi.in: Ditto.

2015-11-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add "exit" as synonym for "quit" in the
	debugger.  Suggested by Joep van Delft <joepvandelft@xs4all.nl>.

2015-11-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor edits.

2015-10-30         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am (awkcard.ps): Add options to force paper size
	to letter. This makes the cut marks come out correctly even
	if groff's default paper size is a4.

2015-10-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Put commas outside quoting in regexps to avoid
	confusion. Thanks to Mike Frysinger <vapier@gentoo.org>.

2015-10-07         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Updated to a working version.

2015-10-04         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Revert update. It stopped working. I should learn
	to test these things. Thanks to Antonio Giovanni Colombo for
	the report.

2015-10-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Note that there is no support for SSL.

2015-09-25         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update to latest.

2015-08-28	Daniel Richard G.	<skunk@iSKUNK.ORG>

	* doc/gawktexi.in: Check for the "struct passwd.pw_passwd" and
	"struct group.gr_passwd" fields and conditionalize their use, as
	they don't exist on z/OS.
	* Makefile.am (pdf-local): Renamed from "pdf", as Automake already
	defines "pdf" and warns us as much.

2015-08-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Typo fixes in Appendix A.
	Thanks to Antonio Colombo.

2015-07-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update info on Quiktrim awk; thanks to
	Antonio Colombo for the pointer.

2015-06-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkinet.info: Fix an old arnold@gnu.org.

2015-06-17         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in: Document inplace shortcomings -- it does not preserve
	ACLs, and it may leave temporary files behind if killed by a signal.

2015-06-17         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in: Document new inplace variable to control whether
	inplace editing is active.

2015-06-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Comment out exercise 10.3, since the answer
	is included in the text. Thanks to Antonio Colombo
	for pointing this out.

2015-06-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add another pithy quote from Chet Ramey. Currently
	commented out.

2015-05-30         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Bitwise Functions): Update results of testbits.awk.

2015-05-19         Arnold D. Robbins     <arnold@skeeve.com>

	* 4.1.3: Release tar ball made.

2015-05-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Bump patch level and modified date.
	Move to modern version of @image.
	* texinfo.tex: Update to latest.
	* array-elements.txt: Remove texinfo commands.

2015-05-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add a pithy quote from Chet Ramey. Currently
	commented out.

2015-05-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix description of nextfile within a function. Sigh.

2015-05-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Bugs): Add that email should be in plain
	text and not in HTML.  Sigh.

2015-04-29         Arnold D. Robbins     <arnold@skeeve.com>

	* 4.1.2: Release tar ball made.

2015-04-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update feature history section.

2015-04-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add a minor note to revisit FPAT pattern for CSV
	files at some point.

2015-04-05         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in: Replace http://gawkextlib.sourceforge.net with
	http://sourceforge.net/projects/gawkextlib, since the former link
	contains obsolete info.  Update the gawkextlib build instructions
	to point to http://sourceforge.net/projects/gawkextlib/files for the
	current info.

2015-04-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix a figure caption. Thanks to Antonio Colombo
	for pointing this out.

2015-03-31         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update discussion of calling built-in functions
	indirectly. Small additional fix relating to rand(). Thanks
	to Antonio Colombo.

2015-03-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor fixes from Antonio Colombo and new exercise
	in chapter 16.

2015-03-17         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in: Modify inplace.awk to call inplace_end in BEGINFILE
	and END instead of in ENDFILE. This way, actions in ENDFILE rules
	will be redirected as expected.

2015-03-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Turn "positive" into non-negative as appropriate.
	Thanks to Nicholas Mills <nlmills@clemson.edu> for pointing out
	the issue.

2015-03-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Change quotes to @dfn for pseudorandom.
	A last-minute O'Reilly fix.

2015-02-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update UPDATE-MONTH and copyright year.
	Note that "the guide is definitive" quote is really
	from "The Restaurant at the End of the Universe". Thanks
	to Antonio Colombo for pointing this out.

2015-02-24         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update to most current version.
	* gawktexi.in: Minor edit to match an O'Reilly fix.
	Add some FIXMEs to one day use @sup.

2015-02-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Change 'div' to 'divisor' in some examples.
	This future-proofs against a new function in master.
	Thanks to Antonio Giovanni Colombo for the report.

2015-02-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More O'Reilly fixes. I think it's done!

2015-02-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More O'Reilly fixes.

2015-02-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: A few minor formatting fixes to sync with O'Reilly
	version.

2015-02-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes. Through QC1 review.

2015-02-11         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-02-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor fixes, O'Reilly fixes.

2015-02-09         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Restore a lost sentence. O'Reilly fixes.

2015-02-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-02-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-02-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-02-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-02-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: POSIX requirement that function parameters cannot
	have the same name as a function is now --posix.
	Restore indirectcall example.

	More O'Reilly fixes.

2015-01-30         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Document POSIX requirement that function parameters
	cannot have the same name as a function. Fix indirectcall example.

2015-01-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.
	And still more. Also, fix @code --> @command in a number of places.

2015-01-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-01-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix a bad URL.
	More O'Reilly fixes.

2015-01-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.
	(Glossary): Many new entries from Antonio Giovanni Colombo.

2015-01-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.
	Remove obsolete start/end of range indexing comments.

2015-01-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: O'Reilly fixes.

2015-01-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkinet.texi: Fix capitalization in document title.
	* gawktexi.in: Here we go again: Starting on more O'Reilly fixes.

2014-12-26         Antonio Giovanni Colombo   <azc100@gmail.com>

	* gawktexi.in (Glossary): Really sort the items.

2014-12-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add one more paragraph to new foreword.
	* gawktexi.in: Fix exponentiation in TeX mode. Thanks to
	Marco Curreli by way of Antonio Giovanni Colombo.

	* texinfo.tex: Updated.

2014-12-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor fix.
	Thanks to Teri Price <tjp212@lehigh.edu>.

2014-12-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More minor fixes.

2014-12-09         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More minor fixes.

2014-12-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor fixes.

2014-12-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: A minor fix.

2014-12-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Various minor fixes and updates.

2014-11-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update that RFC 4180 documents CSV data.

2014-11-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Copyedits applied.

2014-11-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Comment out that I need an owner for awk.info.
	I may have found one or two people.

2014-10-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Clarification that debugger reads stdin.
	* gawktexi.in: Ditto, and correctly place the "Braces" entry in
	the Glossary. Thanks to Antonio Colombo for that.

	Unrelated:

	* gawktexi.in: Restore use of @sc. Karl fixed makeinfo. :-)

2014-10-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor typo fixes.

2014-10-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix date in docbook attribution for new Foreword;
	thanks to Antonio Colombo for the catch.  Update latest version
	of gettext.

2014-10-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Fix default value for AWKLIBPATH.
	* gawktexi.in: Revised text for AWKPATH and AWKLIBPATH.

2014-10-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add new Foreword from Mike Brennan.

2014-10-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix example outputs in chapter 2.
	Improve description of SYMTAB.

2014-10-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Revise doc for {INT,STR}_CHAIN_MAX. Remove Pat
	Rankin from VMS duties (per his request). Add a small TeX fix
	for the table in ch 16 for requesting values.

2014-10-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Finished changes!

2014-10-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (EMRED): Renamed from EMISTERED to match original.
	Thanks to Warren Toomey at TUHS for access to archives recording
	the text.

2014-10-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Pretty much done!

2014-10-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More fixes after reading through the MS.

2014-09-30         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More fixes after reading through the MS.

2014-09-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More fixes after reading through the MS.
	And still more fixes.

2014-09-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More fixes after reading through the MS.
	Document the debugger's "where" command.

2014-09-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Lots more fixes after reading through the MS.

2014-09-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Rework the documentation of special files in
	Chapter 5; some reordering as well as rewriting.

2014-09-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktex.in: Continue fixes after reading through the MS.

2014-09-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktex.in: Start on fixes after reading through the MS.

2014-09-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix italics in quotations.  Some docbook special
	cases.

2014-09-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Document that identifiers must use the English
	letters.

2014-09-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More edits during review, minor addition.

2014-09-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Remove text that won't get used.

2014-09-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor cleanups.

2014-09-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Document builtin functions in FUNCTAB and in
	PROCINFO["identifiers"].
	* gawk.1: Ditto.

	Unrelated:

	* gawktexi.in: More stuff from reviewer comments.

2014-09-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Document that indirect calls now work on built-in
	and extension functions.
	* gawk.1: Same.

2014-09-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Further fixes from reviews and bug reports.

2014-09-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Corrections to walkthrough in debugger chapter.
	Thanks to David Ward <dlward134@gmail.com> for the problem report.

2014-09-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add index entry for @ - @load, @include,
	and indirect function calls. Thanks to "Kenny McKormack" in
	comp.lang.awk.

2014-08-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments, and other
	bug fixes, miscellanious improvements.

2014-08-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Use a different mechanism to exclude
	exercises. Remove use of LC_ALL in an example; doesn't seem
	to be needed anymore.

2014-08-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Exercises are excluded from print edition.

2014-08-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments.

2014-08-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments.

2014-08-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments.

2014-08-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments.

2014-08-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments.

2014-08-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Continuing on reviewer comments.

2014-08-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Starting on reviewer comments.
	Update acknowledgements.

2014-08-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Misc minor additions.

2014-08-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: For sprintf %c document that if value is a valid
	wide character, gawk uses the low 8 bits of the value.

	Unrelated:

	* gawktexi.in: Fix doc for API get_record - errcode needs to
	be greater than zero.

2014-07-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Bracket Expressions): Add a note about how to
	match ASCII characters.  Thanks to Hermann Peifer.

2014-06-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update permissions on copyright page per
	latest maintain.texi. Add GPL to print version of book.

2014-06-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Typo fixes and minor corrections.

2014-06-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add thanks to Patrice Dumas and to Karl Berry.
	Per request from Hermann Peifer, try to clarify how local variables
	in functions are initialized.

2014-06-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Split 6.1.4 into subsections. Other minor fixes.

2014-06-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Finish adding exerices.
	Rework chapter 15 on floating point and MPFR.
	Spell check. Fix menues.

2014-06-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Start adding exercises.

2014-06-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Finish up summaries. Improvements in mystrtonum().

2014-06-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix typos from changes of 3 June when macros were
	added for filename, data file, etc. Ooops.

2014-06-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More "Summary" sections. Through chapter 14.

2014-06-11         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More "Summary" sections. Through chapter 10.

2014-06-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update docbook figure markup.

2014-06-09         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More "Summary" sections.
	Judiciously arrange for full xrefs in docbook in a few spots.

2014-06-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Start adding "Summary" sections.

2014-06-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Restore macros for file name vs. filename etc.
	Go through @if... and @ifnot... and fix them up too. Other misc.
	cleanup.

2014-05-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Remove some obsolete bits, fix up some other
	minor stuff.

2014-05-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Edits through the end!

2014-05-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Edits through Appendix A.
	* gawktexi.in: Tweak nested lists for docbook.

2014-05-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Staying current): New section.

2014-05-22         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in (BEGINFILE/ENDFILE): Update doc for getline - any
	redirected form is allowed inside BEGINFILE/ENDFILE.

2014-05-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add comments for where we need full xrefs in
	docbook.

2014-05-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Misc improvements for docbook, consistency
	in table and figure captions.

2014-05-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Edits through Chapter 16.

2014-05-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Edits through Chapter 14.

2014-05-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix displays for docbook, edits through Chapter 11.

2014-05-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix real preface for docbook.

2014-05-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Complete formatting for FOR_PRINT and not FOR_PRINT.

2014-05-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Docbook edits for preface and parts.
	Document AWKBUFSIZE.

2014-05-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Editing progress. Through Chapter 9.

2014-05-05         Michal Jaegermann     <michal@harddata.com>

	* array-elements.fig: Fix subscripts to be aligned
	horizontally.  Regenerate the other files.

2014-05-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Editing progress. Through Chapter 8.
	* array-elements.eps, array-elements.fig, array-elements.pdf,
	array-elements.png array-elements.txt: New files.
	* Makefile.am (EXTRA_DIST): Add them.

2014-04-30         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Editing progress. Through Chapter 5.
	* gawktexi.in: Editing progress. Through Chapter 6 and into
	Chapter 7.

2014-04-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Editing progress. Through Chapter 3.

2014-04-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Start on revisions.

2014-04-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Remove the bit about single character programs overflowing
	the parse stack. It doesn't seem to be true anymore.

2014-04-08         Arnold D. Robbins     <arnold@skeeve.com>

	* 4.1.1: Release tar ball made.

2014-04-08         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update to latest.
	* awkcard.in: Update copyright, patchlevel in download.
	* gawktexi.in: Update patchlevel, update month, spell check.

2014-03-30         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Cleanups to docbook, finish math stuff.

2014-03-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor cleanups to the indexing.

	Unrelated:

	* gawktexi.in: Merge in changes needed for creating valid
	DocBook XML. Works with post-5.2 Texinfo and dblatex!

2014-03-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Finish the massive indexing improvements such that
	functions are indexed the way I want in TeX and the way Eli
	wants in Info.

	Unrelated:

	* gawktexi.in: Add a note in extension chapter that lookup of
	PROCINFO can fail.

2014-03-27         Eli Zaretskii             <eliz@gnu.org>

	* gawktexi.in: First round of massive indexing improvements.

2014-03-27         Antonio Giovanni Colombo   <azc100@gmail.com>

	* gawktexi.in: Redo all the examples using BBS-list to a different
	file that doesn't use out-of-date concepts.

2014-03-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Finish indexing improvements. (For now, anyway.)

	Unrelated:

	* gawk.1: Document the quote flag! (Better late than never.)
	* awkcard.in: Update documentation of quote flag.

2014-03-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor edits to the discussion of the memory allocation
	functions.

2014-03-08         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawktexi.in: Document new extension API functions api_malloc,
	api_calloc, api_realloc, and api_free.

2014-03-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Indexing improvements.

2014-03-02         John E. Malmberg      <wb8tyw@qsl.net>

	* gawktexi.in: Remove paragraph about obsolete VMS
	  compilers.  Update reference about building PCSI kit.

2014-02-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Lots of small fixes throughout, update of
	profiling output.  Finished fixes needed before a release.

2014-02-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add a quote to the alarm clock program.

2014-02-15         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update to latest.

2014-02-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Lots of small edits.

2014-02-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More minor fixes, update UPDATE_MONTH.

2014-02-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More minor fixes, in indexing.

2014-02-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in, gawkinet.texi: Minor fixes, mostly in indexing.
	* texinfo.tex: Update to latest.

2014-01-31         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add `()' to names of extension functions in indexing
	commands and in one place in the text. Consistency, don'tcha know.

2014-01-30         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add a few missing STARTOFRANGE comments.
	* gawk.1: Note that `(i, j) in array' doesn't work in for loops.
	Update the copyright year.

2014-01-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update info for Anders Wallin.

2014-01-25         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Updated to current version.
	* gawktexi.in: Add magic stuff so that PDFs have "dark red"
	links like before.

2014-01-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Feature History): New node.
	(Common Extensions): Update features now in mawk, too.

2014-12-14         John E. Malmberg      <wb8tyw@qsl.net>

	* gawktexi.in: Add information on building VMS PCSI kit.

2014-01-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Full Line Fields): New node.
	Update copyright year.

2013-12-29         John E. Malmberg      <wb8tyw@qsl.net>

	* gawktexi.in: VMS dynamic extensions.

2013-12-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: More minor additions / fixes.
	(Bugs): Add John Malmberg for VMS.

2013-12-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Minor additions / fixes.

2013-12-23         John E. Malmberg      <wb8tyw@qsl.net>

	* gawktexi.in: Document the VMS exit status encoding.

2013-12-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Additional Configuration Options): Document
	the --disable-extensions option.

2013-12-16         John E. Malmberg      <wb8tyw@qsl.net>

	* gawktexi.in: Updates to VMS sections.

2013-12-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix the presentation of asort() and asorti().
	Thanks to Andy Schorr for pointing out the problems.

2013-11-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update quotations to use @author, fix a few
	placements of footnotes.

2013-11-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Update the list of files included in the gawk
	distribution and fix a few typos.

2013-11-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Fix the section and subsection headings in
	the Preface.  Also change the short title page to just
	"GNU Awk".

2013-10-31         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Add @shorttitlepage command.

2013-10-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Contributors): Update with more info.
	(Distributtion contents): Ditto.
	General: Remove all hyphens when used with "multi" prefix.

2013-10-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Other Environment Variables): Document GAWK_MSG_SRC
	variable and fix documentation of *_CHAIN_MAX variables.

2013-10-11         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Conversion, Printf Ordering): Better wording for
	descriptions of CONVFMT. Thanks to Hermann Peifer.

2013-09-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Other Versions): Updated info on MKS awk and
	some other links.

2013-09-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Readfile function): New node.

2013-09-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (FN, FFN, DF,DDF, PVERSION, CTL): Remove macros.
	They have no alternate versions and are just in the way.

2013-06-27         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update from Karl, fixes a formating problem.
	* gawktexi.in (Conversions): Undo @w{} around @option{--posix}.

2013-06-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Type Functions): Add more explanation to isarray(),
	including that it makes no sense to call it at the global level.

2013-06-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Make it crystal clear not to use delete with FUNCTAB,
	or attempt to assign to it.

2013-05-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Internal File Description): Add "devbsize" element
	to stat data array.

2013-05-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawtexi.in: Sample filefuncs.c extension code: Change test from
	ifdef HAVE_ST_BLKSIZE to HAVE_STRUCT_STAT_ST_BLKSIZE.

2013-05-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (Quick Installation): Add a paragraph advising to
	run `make install'. Thanks to Hermann Peifer.

2013-05-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in (gawkextlib): Add a note to use make install on
	gawkextlib itself. Thanks to Hermann Peifer.
	(Cut program): Fix test for skipping lines if -s was supplied.
	Thanks to David Ward <bamberward@gmail.com> for the bug report.

2013-05-09         Arnold D. Robbins     <arnold@skeeve.com>

	* 4.1.0: Release tar ball made.

2013-05-09         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in, gawk.1: Document that a regexp constant as the second
	argument to index() produces a fatal error.
	* gawktexi.in: More cleanups. Particularly, cleanup the index.

2013-04-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawktexi.in: Renamed from gawkman.texi.
	Add a reference to Overton's IEEE Math book in MPFR chapter.
	Thanks to Nelson Beebe for the recommendation.
	* Makefile.am, sidebar.awk: Adjusted.

2013-04-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkman.texi: Cleanup in MPFR and API chapters.
	Also minor cleanup in design decisions. Add vim modeline.
	* api-figure2.fig: Minor fix.
	* api-figure2.eps, api-figure2.pdf, api-figure2.png: Regenerated.

2013-04-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Finish cleanup pass.
	* awkcard.in: Document that getline sets RT.
	* gawkman.texi: Ditto.

2013-04-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Start cleanup pass.
	* awkcard.in: Minor addition.
	* gawkman.texi: Minor fixes.

	* gawk.1, gawkman.texi: Document PROCINFO entries for API
	major and minor versions.

2013-04-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkman.texi: Update all the menus. Fix spelling errors. Remove
	some unneeded fakenodes.

2013-04-20         Arnold D. Robbins     <arnold@skeeve.com>

	* awkcard.in: Clean up and bring up to date.

2013-04-17         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am (gawk.ps, gawkinet.ps): Set TEXINPUTS to point
	at $(srcdir) to be able to include various figures if doing a
	build not in the source directory.

2013-04-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawkman.texi: New file. This is now the real source for the
	manual and gawk.texi is generated from it.
	* sidebar.awk: New file to DTRT for sidebars in the manual.
	* Makefile.am (EXTRA_DIST): Update.
	(gawk.texi): Add new rule to create / update it if necessary.

2013-04-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Pretty much finish cleanup. Move i18n chapter to
	after advanced features chapter.
	* texinfo.tex: Updated to current in texinfo SVN.

2013-04-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Continue cleanup.

2013-04-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Add link to 'pawk' - awk for python.
	Further cleanups.

2013-04-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Continue cleanup.

2013-04-11         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Continue cleanup.

2013-04-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Continue cleanup.

2013-04-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Continue cleanup.

2013-04-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Start a simple cleanup pass before the release.

2013-03-15         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Update URL for texinfo, fix a typo.

2013-03-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Getline/Pipe): Add a nice quote from BWK.

2013-02-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Restore centering of text images.

2013-02-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Other Versions): Remove the description of xmlgawk.

2013-02-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: For Info output, don't use @center on text images
	since the new makeinfo doesn't yet center the file as a block.
	Thanks to Karl Berry for the diagnostic.
	* gawk.1: Remove commented out doc for -m option which was for
	compatibility with BWK awk. His awk dropped it back in 2007.

2013-01-31         Arnold D. Robbins     <arnold@skeeve.com>

	* api-figure2.txt, api-figure3.txt: Convert tabs to spaces.
	* gawk.texi (Gory Details): Fix a command that new makeinfo doesn't
	recognize.
	(Conversion): Update example to be in POSIX mode. Thanks to
	Hermann Peifer.

2013-01-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Dynamic Typing): Clarify that gawk dies after the
	first fatal error on the test program. Thanks to Hermann Peifer.

2013-01-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Setting Precision): Fix a typo. 3.322 instead
	of 3.332.  Thanks to Hermann Peifer.

2013-01-09         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Minor edits to documentation for new inplace extension.

2013-01-08         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi: Add documentation for new inplace extension.

2013-01-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi, awkcard.in: Sync what mawk has. Main point of
	interest is that mawk supports the three time functions.

2013-01-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi, awkcard.in: Add Git Hub info for BWK awk.
	Update copyrights.
	* gawk.texi: Add Software Tools quote in chapter on library functions.

2012-12-25         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Remove doc sym_constant() API function.

2012-12-24         Arnold D. Robbins     <arnold@skeeve.com>

	* 4.0.2: Release tar ball made.

2012-12-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Remove an incorrect comment.
	* awkcard.in: Bump patch level.

2012-12-18         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Input Parsers): Add info on read_func.

2012-12-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Move design decisions on new API to appendix C.
	Move section on old extensions to last in the same appendix.

2012-12-15         Arnold D. Robbins     <arnold@skeeve.com>

	* macros: Update to GPL Version 3 and add copyright year.
	* texinfo.tex: Updated, from automake 1.12.6.
	* gawk.texi (Derived Files): A few minor fixes.

2012-12-09         Arnold D. Robbins     <arnold@skeeve.com>

	* awkforai.txt: Changed content to be pointers to the article
	to avoid copyright issues.
	* gawk.texi: Updated description of awkforai.txt.

2012-12-07         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (I/O Functions): Document that fflush() is now part
	of POSIX. Fix in a few other places as well.
	* awkcard.in: Update for fflush().

2012-12-03         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Fix all @tex ... @end tex tables to use a different
	control character than @ so that the new makeinfo won't
	complain about them. Thanks to Karl Berry for the guidance.
	(Old Extension Mechansim): New node.

2012-12-01         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: API chapter. Sync with gawkapi.h

2012-11-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: API chapter. Change command for making shared libs
	to use gcc, not ld. Thanks to Nelson Beebe.
	(I/O Functions): Document new behavior for fflush().
	* gawk.1: Update for fflush().
	* awkcard.in: Ditto. And some general cleanup.

2012-11-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Future Extensions): Point to TODO file in the
	gawk dist.
	(Implementation Limitations): New node, from old LIMITATIONS file.

2012-11-22         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: In API chapter, document the full list of include
	files that need to be included.

2012-11-21         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: In API chapter, update behavior of stat function
	in the filefuncs extension.  Update the code example and prose
	to match the current code.

2012-11-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: In API chapter, update behavior of readdir extension.

2012-11-16         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Minor edits in API chapter.
	Thanks to Nelson Beebe.

2012-11-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Minor edits in API chapter.
	Thanks to Andrew Schorr.

2012-11-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Rearrange chapter order and separate into parts
	using @part for TeX.  Fix capitalization in @caption text.
	(Variable Scope): Document that arrays can be local also.
	Thanks to Denis Shirokov <cosmogen@gmail.com>, for pointing out
	the lack.

2012-11-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Semi-rationalize invocations of @image.

2012-11-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: New chapter on extension API.
	* api-figure1.pdf, api-figure2.pdf, api-figure3.pdf,
	general-program.pdf, process-flow.pdf: New files. Again.
	* Makefile.am (EXTRA_DIST): Update. Again.

2012-11-03         Arnold D. Robbins     <arnold@skeeve.com>

	* api-figure1.pdf, api-figure2.pdf, api-figure3.pdf: Removed.
	* api-figure1.txt, api-figure2.txt, api-figure3.txt,
	api-figure1.png, api-figure2.png, api-figure3.png: New files.
	* Makefile.am (EXTRA_DIST): Update.

	* gawk.texi: Fix up images.
	* general-program.pdf, process-flow.pdf: Removed.
	* general-program.png, process-flow.png,
	general-program.txt, process-flow.txt: New files.
	* Makefile.am (EXTRA_DIST): Update.

2012-10-31         Arnold D. Robbins     <arnold@skeeve.com>

	* api-figure1.eps, api-figure1.fig, api-figure1.pdf,
	api-figure2.eps, api-figure2.fig, api-figure2.pdf,
	api-figure3.eps, api-figure3.fig, api-figure3.pdf: New files.
	* Makefile.am (EXTRA_DIST): Add the above.

2012-10-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Glossary): Document cookie, some cleanup of
	notes at the end.

2012-10-19         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: More doc on SYMTAB.

2012-10-05         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am (LN, install-data-hook, uninstall-hook): Removed. No
	longer needed since dgawk and pgawk are gone.

2012-10-13         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am: Add dgawk.1 to man page links created / removed
	on install / uninstall. (On stable branch.)

2012-10-02         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Glossary). Correct the full name for `ISO' per
	bug report from William Bresler <wbresler@acm.org>. Add a link
	to the ISO website.

	* gawk.texi, gawk.1, awkcard.in: Document FUNCTAB, SYMTAB, and
	PROCINFO["identifiers"]. Including that delete does not work
	on FUNCTAB and SYMTAB.

2012-09-23         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Nextfile Statement): Document that it's now part of POSIX
	and update the title.
	(Delete): Document that `delete array' is now part of POSIX.
	* awkcard.in: Adjust coloring for nextfile and delete array.

2012-09-07         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Updated to version 2012-09-05.06.

2012-08-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Minor edits, fix some spelling mistakes.

2012-08-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: More edits to chapter on arithmetic.
	Primarily English changes.

2012-08-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Emphasize more that floating point behavior is
	not a language issue. Add a pointer to POSIX bc.
	Move arithmetic chapter to later in the book, before chapter
	on dynamic extensions.

2012-08-17         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update infrastructure to Automake 1.12.3.

2012-08-14         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Fixed a math bug in the chapter on multiple
	precision floating point. Thanks to John Haque.

2012-08-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Merged discussion of numbers from Appendix C into
	the chapter on arbitrary precision arithmetic. Did some surgery
	on that chapter to organize it a little better.

2012-08-10         Arnold D. Robbins     <arnold@skeeve.com>

	* awkcard.in, gawk.1, gawk.texi: Updated. Mostly for new API stuff
	but also some other things.
	* gawk.texi (Derived Files): New node.

2012-08-01         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am (install-data-hook): Install a dgawk.1 link to the
	man page also. Remove it on uninstall.

2012-07-29         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi: Document that RT is set by getline.

2012-07-04         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi, gawk.1, awkcard.in: Document that and(), or(), and
	xor() can all take any number of arguments, with a minimum of two.

2012-06-10         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi: Rename gettimeofday function to getlocaltime, since
	the new time extension will provide gettimeofday.

2012-05-24         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi, gawk.1: Replace references to dlload with dl_load.
	But much more work needs to be done on the docs.

2012-05-19         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi, gawk.1: Document new -i option, and describe new default
	.awk suffix behavior.

2012-04-01         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi: Replace documentation of removed functions update_ERRNO and
	update_ERRNO_saved with descriptions new functions update_ERRNO_int,
	update_ERRNO_string and unset_ERRNO.  And fix a couple of examples
	to use update_ERRNO_int instead of update_ERRNO.

2012-03-26         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Minor style edits.

2012-03-21         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi, gawk.1: Document new @load keyword.

2012-03-20         Andrew J. Schorr     <aschorr@telemetry-investments.com>

	* gawk.texi, gawk.1: Add AWKLIBPATH.

2012-08-12         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Ranges and Locales): Clarified ranges and
	locales. Again.

2012-08-05         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (PC Binary Installation): Document Eli Zaretskii's
	site.
	(Records): Update case of RS = "a". It only prints 1 if in
	POSIX mode. Thanks to Jeroen Schot who first reported it.

2012-07-20         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Ranges and Locales): Clarified ranges and
	locales.

2012-07-13         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Getline Notes): Discuss side effects in
	argument expression.

2012-06-29         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi, awkcard.in: Latest mawk understands /dev/stdin.

2012-04-27         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Add that -b affects output.

2012-04-27         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update to latest from automake 1.12.

2012-04-09         Arnold D. Robbins     <arnold@skeeve.com>

	* texinfo.tex: Update to latest from automake 1.11.4.

2012-04-11         John Haque     <j.eh@mchsi.com>

	* gawk.texi: Change RNDMODE to ROUNDMODE.
	* gawk.1, awkcard.in: Ditto.

2012-04-11         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Change --arbitrary-precision to --bignum.
	* gawk.1: Ditto.
	* awkcard.in: Add --bignum, RNDMODE, PREC.

2012-04-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Editing on new chapter on arbitrary precision numbers.

2012-03-31         John Haque     <j.eh@mchsi.com>

	* gawk.texi, gawk.1: Add text on support for arbitrary precision
	numbers.

2012-02-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi, gawk.1: And some minor edits thereunto.

2012-02-03         John Haque     <j.eh@mchsi.com>

	* gawk.texi, gawk.1: Add text on read timeout.

2011-12-28         Arnold D. Robbins     <arnold@skeeve.com>

	* awkcard.in, gawk.1: Minor edits after merge of executables.

2011-12-21         John Haque     <j.eh@mchsi.com>

	* gawk.texi: Updated sections on profiling and debugging
	after merging the exes. Document new options --debug and
	--load, and add a sub-section on loading extension library.
	* gawk.1: Same.
	* awkcard.in: Same.

2012-03-28         Arnold D. Robbins     <arnold@skeeve.com>

	* 4.0.1: Release tar ball made.

2012-02-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi, awkcard.in: Bump patch level.
	* texinfo.tex: Updated from Texinfo CVS.

2011-12-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Various typo fixes from mailing list.

2011-11-10         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Fix some .BR to be .B.

2011-11-08         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Further improvement in the discussion of sorted array
	traversal. Some sections reordered and text edited to suit.

2011-11-06         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Try to improve discussion of sorted array
	traversal.

2011-09-24         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.1: Fix some spelling errors. Thanks to
	Jeroen Schot <schot@A-Eskwadraat.nl>.
	* gawk.texi: Some minor fixes.

2011-08-31         John Haque     <j.eh@mchsi.com>

	* gawk.texi: Updated gawk dynamic extension doc.

2011-07-28         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi (Gory Details): Restore text on historical behavior
	etc. and add explanation on gawk 4.0.x.

2011-07-17         Arnold D. Robbins     <arnold@skeeve.com>

	* gawk.texi: Add reference in node Expressions to node Precedence,
	based on suggestion from Dan Jacobson dated 4 Jun 2001.

2011-07-17  Paul Eggert  <eggert@twinsun.com>

	* gawk.texi: Warn up-front (indirectly) that plain gawk is not
	compatible with SVR4 awk and with POSIX awk.  Describe how
	gawk differs from the GNU standard in its interpretation of
	POSIXLY_CORRECT.  (From mail dated 15 May 2001).

2011-06-24         Arnold D. Robbins     <arnold@skeeve.com>

	* Makefile.am (EXTRA_DIST): Add ChangeLog.0.
	* 4.0.0: Remake the tar ball.

2011-06-23         Arnold D. Robbins     <arnold@skeeve.com>

	* ChangeLog.0: Rotated ChangeLog into this file.
	* ChangeLog: Created anew for gawk 4.0.0 and on.
	* 4.0.0: Release tar ball made.