File: ChangeLog.2

package info (click to toggle)
cssc 1.4.0-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,580 kB
  • sloc: cpp: 39,778; sh: 16,917; ansic: 13,769; python: 3,923; makefile: 1,701; perl: 342; awk: 15
file content (2037 lines) | stat: -rw-r--r-- 79,269 bytes parent folder | download | duplicates (4)
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
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2001-11-23  james_youngman  <james_youngman@periwinkle.no.where>

	* /cvsroot/cssc/gnu/CSSC/tests/prs/format.sh:
	Initial version - qworks on Solaris SCCS, not on CSSC.

2001-09-29  james_youngman  <james_youngman@periwinkle.no.where>

	* /cvsroot/cssc/gnu/CSSC/testutils/last-time.c, /cvsroot/cssc/gnu/CSSC/testutils/realpwd.cc, /cvsroot/cssc/gnu/CSSC/testutils/seeker.c, /cvsroot/cssc/gnu/CSSC/testutils/user.c, /cvsroot/cssc/gnu/CSSC/testutils/uu_decode.c, /cvsroot/cssc/gnu/CSSC/testutils/yammer.c, /cvsroot/cssc/gnu/CSSC/testutils/yes.c, /cvsroot/cssc/gnu/CSSC/unused/_chmod.cc, /cvsroot/cssc/gnu/CSSC/unused/dosfile.cc, /cvsroot/cssc/gnu/CSSC/unused/dummy.cc, /cvsroot/cssc/gnu/CSSC/unused/ffsync.cc, /cvsroot/cssc/gnu/CSSC/unused/fsync.cc, /cvsroot/cssc/gnu/CSSC/unused/pipe.cc, /cvsroot/cssc/gnu/CSSC/unused/pipe.h, /cvsroot/cssc/gnu/CSSC/unused/sid_list.cc, /cvsroot/cssc/gnu/CSSC/admin.cc, /cvsroot/cssc/gnu/CSSC/autogen.sh, /cvsroot/cssc/gnu/CSSC/bodyio.cc, /cvsroot/cssc/gnu/CSSC/bodyio.h, /cvsroot/cssc/gnu/CSSC/bsd/sccs.c, /cvsroot/cssc/gnu/CSSC/canonify.cc, /cvsroot/cssc/gnu/CSSC/cap.cc, /cvsroot/cssc/gnu/CSSC/cdc.cc, /cvsroot/cssc/gnu/CSSC/configure.in, /cvsroot/cssc/gnu/CSSC/cssc.h, /cvsroot/cssc/gnu/CSSC/defaults.h, /cvsroot/cssc/gnu/CSSC/delta.cc, /cvsroot/cssc/gnu/CSSC/delta.h, /cvsroot/cssc/gnu/CSSC/delta-iterator.cc, /cvsroot/cssc/gnu/CSSC/delta-iterator.h, /cvsroot/cssc/gnu/CSSC/delta-table.cc, /cvsroot/cssc/gnu/CSSC/delta-table.h, /cvsroot/cssc/gnu/CSSC/docs/gpl.texi, /cvsroot/cssc/gnu/CSSC/dtbl-prepend.cc, /cvsroot/cssc/gnu/CSSC/encoding.cc, /cvsroot/cssc/gnu/CSSC/environment.cc, /cvsroot/cssc/gnu/CSSC/err_no.h, /cvsroot/cssc/gnu/CSSC/except.h, /cvsroot/cssc/gnu/CSSC/fatalsig.cc, /cvsroot/cssc/gnu/CSSC/fdclosed.cc, /cvsroot/cssc/gnu/CSSC/file.cc, /cvsroot/cssc/gnu/CSSC/filediff.cc, /cvsroot/cssc/gnu/CSSC/filediff.h, /cvsroot/cssc/gnu/CSSC/file.h, /cvsroot/cssc/gnu/CSSC/fileiter.cc, /cvsroot/cssc/gnu/CSSC/fileiter.h, /cvsroot/cssc/gnu/CSSC/filelock.h, /cvsroot/cssc/gnu/CSSC/filepos.h, /cvsroot/cssc/gnu/CSSC/fnsplit.cc, /cvsroot/cssc/gnu/CSSC/get.cc, /cvsroot/cssc/gnu/CSSC/ioerr.h, /cvsroot/cssc/gnu/CSSC/linebuf.cc, /cvsroot/cssc/gnu/CSSC/linebuf.h, /cvsroot/cssc/gnu/CSSC/list.cc, /cvsroot/cssc/gnu/CSSC/l-split.cc, /cvsroot/cssc/gnu/CSSC/my-getopt.cc, /cvsroot/cssc/gnu/CSSC/my-getopt.h, /cvsroot/cssc/gnu/CSSC/mylist.h, /cvsroot/cssc/gnu/CSSC/mystring.cc, /cvsroot/cssc/gnu/CSSC/mystring.h, /cvsroot/cssc/gnu/CSSC/pf-add.cc, /cvsroot/cssc/gnu/CSSC/pf-del.cc, /cvsroot/cssc/gnu/CSSC/pfile.cc, /cvsroot/cssc/gnu/CSSC/pfile.h, /cvsroot/cssc/gnu/CSSC/prompt.cc, /cvsroot/cssc/gnu/CSSC/prs.cc, /cvsroot/cssc/gnu/CSSC/prt.cc, /cvsroot/cssc/gnu/CSSC/quit.cc, /cvsroot/cssc/gnu/CSSC/quit.h, /cvsroot/cssc/gnu/CSSC/release.h, /cvsroot/cssc/gnu/CSSC/rel_list.cc, /cvsroot/cssc/gnu/CSSC/rel_list.h, /cvsroot/cssc/gnu/CSSC/relvbr.h, /cvsroot/cssc/gnu/CSSC/rl-merge.cc, /cvsroot/cssc/gnu/CSSC/rmdel.cc, /cvsroot/cssc/gnu/CSSC/run.cc, /cvsroot/cssc/gnu/CSSC/run.h, /cvsroot/cssc/gnu/CSSC/sact.cc, /cvsroot/cssc/gnu/CSSC/sccsdate.cc, /cvsroot/cssc/gnu/CSSC/sccsdate.h, /cvsroot/cssc/gnu/CSSC/sccs-delta.cc, /cvsroot/cssc/gnu/CSSC/sccsfile.cc, /cvsroot/cssc/gnu/CSSC/sccsfile.h, /cvsroot/cssc/gnu/CSSC/sccsname.cc, /cvsroot/cssc/gnu/CSSC/sccsname.h, /cvsroot/cssc/gnu/CSSC/seqstate.cc, /cvsroot/cssc/gnu/CSSC/seqstate.h, /cvsroot/cssc/gnu/CSSC/sf-add.cc, /cvsroot/cssc/gnu/CSSC/sf-admin.cc, /cvsroot/cssc/gnu/CSSC/sf-cdc.cc, /cvsroot/cssc/gnu/CSSC/sf-chkid.cc, /cvsroot/cssc/gnu/CSSC/sf-chkmr.h, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/sf-get2.cc, /cvsroot/cssc/gnu/CSSC/sf-get3.cc, /cvsroot/cssc/gnu/CSSC/sf-get.cc, /cvsroot/cssc/gnu/CSSC/sf-kw.cc, /cvsroot/cssc/gnu/CSSC/sf-prs.cc, /cvsroot/cssc/gnu/CSSC/sf-prt.cc, /cvsroot/cssc/gnu/CSSC/sf-rmdel.cc, /cvsroot/cssc/gnu/CSSC/sf-val.cc, /cvsroot/cssc/gnu/CSSC/sf-write.cc, /cvsroot/cssc/gnu/CSSC/showconfig.cc, /cvsroot/cssc/gnu/CSSC/show-disp.sh, /cvsroot/cssc/gnu/CSSC/sid.cc, /cvsroot/cssc/gnu/CSSC/sid.h, /cvsroot/cssc/gnu/CSSC/sid_list.h, /cvsroot/cssc/gnu/CSSC/sl-merge.h, /cvsroot/cssc/gnu/CSSC/split.cc, /cvsroot/cssc/gnu/CSSC/stack.h, /cvsroot/cssc/gnu/CSSC/strstr.c, /cvsroot/cssc/gnu/CSSC/sysdep.h, /cvsroot/cssc/gnu/CSSC/unget.cc, /cvsroot/cssc/gnu/CSSC/val.cc, /cvsroot/cssc/gnu/CSSC/valcodes.h, /cvsroot/cssc/gnu/CSSC/version.h, /cvsroot/cssc/gnu/CSSC/what.cc, /cvsroot/cssc/gnu/CSSC/writesubst.cc:
	Updated copyright year and FSF address

2001-09-23  james_youngman  <james_youngman@periwinkle.no.where>

	* /cvsroot/cssc/gnu/CSSC/configure.in:
	Updated version number (to identify versions checked out from the CVS
	repository).

	* /cvsroot/cssc/gnu/CSSC/configure.in:
	removed CVSDEVEL tag prior to release

	* /cvsroot/cssc/gnu/CSSC/ChangeLog: updated from checkin messages

	* /cvsroot/cssc/gnu/CSSC/NEWS: Brought up to date with recent changes.

	* /cvsroot/cssc/gnu/CSSC/get.cc:
	Give up privileges while manipulating the g-file, because the g-file
	is owned by the euid of the process which invoked "get", not by the
	set-user-id ownfer of the "get" file.  This is related to Sourceforge
	bug ID 458485.

	* /cvsroot/cssc/gnu/CSSC/file.cc:
	Minor correction to error message in set_file_mode() (don't have a
	newline in the middle of it).

2001-09-23  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/get.cc:
	Give up privileges while manipulating the g-file, because the g-file
	is owned by the euid of the process which invoked "get", not by the
	set-user-id ownfer of the "get" file.  This is related to Sourceforge
	bug ID 458485.

	* /cvsroot/cssc/gnu/CSSC/file.cc:
	Minor correction to error message in set_file_mode() (don't have a
	newline in the middle of it).

2001-09-16  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/pf-add.cc, /cvsroot/cssc/gnu/CSSC/pf-del.cc, /cvsroot/cssc/gnu/CSSC/pfile.h, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/tests/rmdel/basic.sh, /cvsroot/cssc/gnu/CSSC/unget.cc:
	Cope correctly in sccs_pfile::update() if there was no previously existing p-file

	* /cvsroot/cssc/gnu/CSSC/pf-add.cc:
	SF bug #444221: Create the p-file with mode 0644 (not 0666) but still allow concurrent edits

	* /cvsroot/cssc/gnu/CSSC/docs/CREDITS, /cvsroot/cssc/gnu/CSSC/docs/CREDITS.short.txt:
	(Credits for) patch to fix malloc()ed buffer size from Jeff Sheinberg

	* /cvsroot/cssc/gnu/CSSC/bsd/sccs.c:
	Patch to fix malloc()ed buffer size from Jeff Sheinberg

2001-08-30  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/tests/binary/binbasic.sh:
	Executables have different names under Windows.

2001-08-29  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/testutils/decompress_stdin.sh.in:
	Shell script which decompresses its input.

	* /cvsroot/cssc/gnu/CSSC/tests/binary/eightbit.sh, /cvsroot/cssc/gnu/CSSC/tests/get/sf111140.sh, /cvsroot/cssc/gnu/CSSC/tests/get/sid-select.sh, /cvsroot/cssc/gnu/CSSC/tests/get/subst.sh, /cvsroot/cssc/gnu/CSSC/tests/prt/all-512.sh, /cvsroot/cssc/gnu/CSSC/tests/prt/default.sh, /cvsroot/cssc/gnu/CSSC/tests/prt/nodel.sh, /cvsroot/cssc/gnu/CSSC/autogen.sh, /cvsroot/cssc/gnu/CSSC/configure.in, /cvsroot/cssc/gnu/CSSC/cssc.h, /cvsroot/cssc/gnu/CSSC/docs/Platforms, /cvsroot/cssc/gnu/CSSC/docs/texinfo.tex, /cvsroot/cssc/gnu/CSSC/file.cc, /cvsroot/cssc/gnu/CSSC/file.h, /cvsroot/cssc/gnu/CSSC/get.cc, /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/README, /cvsroot/cssc/gnu/CSSC/sccsfile.cc, /cvsroot/cssc/gnu/CSSC/sccsfile.h, /cvsroot/cssc/gnu/CSSC/sf-add.cc, /cvsroot/cssc/gnu/CSSC/sf-admin.cc, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/sf-rmdel.cc, /cvsroot/cssc/gnu/CSSC/sf-write.cc:
	Changes to support CYGWIN (compiles and builds with B20.1).

	* /cvsroot/cssc/gnu/CSSC/tests/bsd-sccs/driver-basic.sh:
	Altered test case h1 to account for buffering differences on CYGWIN.

	* /cvsroot/cssc/gnu/CSSC/testutils/uu_decode.c:
	Changes for file format compatibility with uuencode.

	* /cvsroot/cssc/gnu/CSSC/INSTALL:
	Updated INSTALL file from automake distribution.

	* /cvsroot/cssc/gnu/CSSC/missing, /cvsroot/cssc/gnu/CSSC/mkinstalldirs:
	Updated the utilities which are distributed but come from the automake
	distribytion (automake -a -c copies them in).

	* /cvsroot/cssc/gnu/CSSC/COPYING:
	Updated address of FSF from COPYING file in automake distribution.

2001-08-28  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/testutils/Makefile.am, /cvsroot/cssc/gnu/CSSC/testutils/uu_decode.c:
	Added uu_decode.c, replacing the system uudecode utility, since not all
	systems have the latter.

2001-08-25  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/docs/Platforms:
	Added remarks about "printf" macro bug in glibc 2.2.3.

	* /cvsroot/cssc/gnu/CSSC/unused/.cvsignore, /cvsroot/cssc/gnu/CSSC/bsd/.cvsignore, /cvsroot/cssc/gnu/CSSC/auxfiles/.cvsignore:
	ignore Makefile.in

	* /cvsroot/cssc/gnu/CSSC/.cvsignore, /cvsroot/cssc/gnu/CSSC/tests/.cvsignore, /cvsroot/cssc/gnu/CSSC/testutils/.cvsignore:
	Added some .cvsignore files to reduce the noise in the output of the update command

	* /cvsroot/cssc/gnu/CSSC/docs/.cvsignore, /cvsroot/cssc/gnu/CSSC/docs/Platforms, /cvsroot/cssc/gnu/CSSC/docs/URLs:
	Added info about how to patch cssc.texi to format it with old versions of Makefinfo, for example on NetBSD

	* /cvsroot/cssc/gnu/CSSC/acconfig.h, /cvsroot/cssc/gnu/CSSC/configure.in, /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/mystring.h:
	Changes to permit compilation with GCC v3 and GLIBC 2.2.3

2001-08-18  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/docs/mailing-list.txt:
	Updated the installation instructions to bring them into line with the
	actual method for subscribing to a Mailman mailng list.

2001-07-31  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/docs/Platforms:
	Added updated info about which versions of Red Hat Linux this has been
	tested on.

	* /cvsroot/cssc/gnu/CSSC/docs/cssc.texi, /cvsroot/cssc/gnu/CSSC/testutils/ekko.c, /cvsroot/cssc/gnu/CSSC/testutils/seeker.c, /cvsroot/cssc/gnu/CSSC/testutils/yammer.c, /cvsroot/cssc/gnu/CSSC/bsd/sccs.c, /cvsroot/cssc/gnu/CSSC/docs/Makefile.am, /cvsroot/cssc/gnu/CSSC/fatalsig.cc, /cvsroot/cssc/gnu/CSSC/file.cc, /cvsroot/cssc/gnu/CSSC/get.cc, /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/pfile.cc, /cvsroot/cssc/gnu/CSSC/quit.cc, /cvsroot/cssc/gnu/CSSC/quit.h, /cvsroot/cssc/gnu/CSSC/run.cc, /cvsroot/cssc/gnu/CSSC/sccsfile.h, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/sf-get2.cc, /cvsroot/cssc/gnu/CSSC/sf-get.cc, /cvsroot/cssc/gnu/CSSC/sf-prs.cc, /cvsroot/cssc/gnu/CSSC/sf-write.cc, /cvsroot/cssc/gnu/CSSC/writesubst.cc:
	Eliminated some compiler warnings (gcc version 2.96 2000073).

2001-07-15  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/admin.cc, /cvsroot/cssc/gnu/CSSC/bodyio.cc, /cvsroot/cssc/gnu/CSSC/bsd/sccs.c, /cvsroot/cssc/gnu/CSSC/configure.in, /cvsroot/cssc/gnu/CSSC/cssc.h, /cvsroot/cssc/gnu/CSSC/defaults.h, /cvsroot/cssc/gnu/CSSC/docs/cssc.texi, /cvsroot/cssc/gnu/CSSC/environment.cc, /cvsroot/cssc/gnu/CSSC/file.cc, /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/NEWS, /cvsroot/cssc/gnu/CSSC/README, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/showconfig.cc, /cvsroot/cssc/gnu/CSSC/tests/common/config-data, /cvsroot/cssc/gnu/CSSC/what.cc:
	As well as allowing binary file support to be turned off and a maximum
	line length setting to be used, allow these to be overridden with
	environment vvariables.

	* /cvsroot/cssc/gnu/CSSC/tests/get/included.sh:
	SourceForge bug number 441423: on NetBSD-1.5W, the sed "a" command
	appears to eat the newline.  Hence we replace the old single-step sed
	command above with a three-step approach which doesn't use "a".

	* /cvsroot/cssc/gnu/CSSC/docs/cssc.texi:
	Added sensible header to HTML output; indicate the version number in
	the top node of the Info file.

2001-07-14  james_youngman  <james_youngman@periwinkle>

	* /cvsroot/cssc/gnu/CSSC/docs/TODO:
	Added all the tasks to the SourceForge task tracker (each task in the
	TODO file is now annotated with its SourceForge task ID).

	* /cvsroot/cssc/gnu/CSSC/NEWS:
	Added SourceForge bug id for the concurrent-edit problem.

	* /cvsroot/cssc/gnu/CSSC/ChangeLog:
	Updated wrt newest checking comments.

	* /cvsroot/cssc/gnu/CSSC/README: Add remark about "--disable-binary".

	* /cvsroot/cssc/gnu/CSSC/acconfig.h, /cvsroot/cssc/gnu/CSSC/admin.cc, /cvsroot/cssc/gnu/CSSC/auxfiles/CSSC.spec.in, /cvsroot/cssc/gnu/CSSC/bodyio.cc, /cvsroot/cssc/gnu/CSSC/docs/config-info.texi.in, /cvsroot/cssc/gnu/CSSC/docs/cssc.texi, /cvsroot/cssc/gnu/CSSC/docs/Makefile.am, /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/NEWS, /cvsroot/cssc/gnu/CSSC/README, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/sf-get2.cc, /cvsroot/cssc/gnu/CSSC/showconfig.cc, /cvsroot/cssc/gnu/CSSC/tests/binary/auto.sh, /cvsroot/cssc/gnu/CSSC/tests/binary/binbasic.sh, /cvsroot/cssc/gnu/CSSC/tests/binary/diff.sh, /cvsroot/cssc/gnu/CSSC/tests/binary/eightbit.sh, /cvsroot/cssc/gnu/CSSC/tests/binary/seeking.sh, /cvsroot/cssc/gnu/CSSC/tests/common/config-data, /cvsroot/cssc/gnu/CSSC/val.cc, /cvsroot/cssc/gnu/CSSC/version.h:
	Provide new configure option, --disable-binary, which removes support
	for creating binary SCCS files.  If we find an existing binary SCCS file,
	we can still work with it.   Also allow the setting of a maximum line length
	in order to provide better interoperability with other SCCS implementations.

	* /cvsroot/cssc/gnu/CSSC/configure.in:
	Allow the disabling of binary file support and the setting of a maximum
	SCCS file line length (for interoperability).

2001-07-10  james_youngman  <jay@gnu.org>

	* /cvsroot/cssc/gnu/CSSC/get.cc, /cvsroot/cssc/gnu/CSSC/sccsfile.h, /cvsroot/cssc/gnu/CSSC/sf-get2.cc:
	SourceForge bug 439146: concurrent edits cause assert failure
	First cut at solving the problem.

	* /cvsroot/cssc/gnu/CSSC/cdc.cc, /cvsroot/cssc/gnu/CSSC/delta.cc, /cvsroot/cssc/gnu/CSSC/get.cc, /cvsroot/cssc/gnu/CSSC/pf-del.cc, /cvsroot/cssc/gnu/CSSC/prs.cc, /cvsroot/cssc/gnu/CSSC/rmdel.cc, /cvsroot/cssc/gnu/CSSC/sccsfile.cc, /cvsroot/cssc/gnu/CSSC/sccsname.h, /cvsroot/cssc/gnu/CSSC/sf-admin.cc, /cvsroot/cssc/gnu/CSSC/sf-delta.cc, /cvsroot/cssc/gnu/CSSC/unget.cc, /cvsroot/cssc/gnu/CSSC/val.cc:
	Various changes relating to correct NULL pointer 'spelling', in the
	interests of greater portability.

2001-07-08  james_youngman  <jay@gnu.org>

	* /cvsroot/cssc/gnu/CSSC/ChangeLog, /cvsroot/cssc/gnu/CSSC/NEWS:
	Updated ChangeLog and NEWS files prior to release.

	* /cvsroot/cssc/gnu/CSSC/configure.in: Bumped version to 0.12alpha.pl0.

2001-07-06  james_youngman  <jay@gnu.org>

	* sid_list.h:
	Source forge bug #438857; coredump if a range list has an empty element (e.g.
	a comma at the end or two commas in a row).

2001-06-26  james_youngman  <jay@gnu.org>

	* docs/cssc.texi: Minor formatting changes

2001-06-03  james_youngman  <jay@gnu.org>

	* tests/get/s.incl_excl_1.input:
	SourceForge BUG 417990: s.incl_excl_1.input missing from CVS.

2000-12-03  james_youngman  <jay@gnu.org>

	* README:
	We now provide "val".  Also include note about unsetting ${sccs}
	before running the test suite.

	* NEWS: Added further info about more additions & bugfixes

	* tests/get/excl_ig_1.sh:
	Added extra test script; one of the tests fails on CSSC but is currently commented out

	* docs/borrowed-files.txt: Added list of files sourced from elsewhere

	* docs/TODO: Reconsidered some decisions.

	* sf-get.cc:
	Removed redundant "0 ||" expression in if statement (leftover from debugging)

	* install-sh, missing, mkinstalldirs:
	Updated various scripts used bu the automake/autoconf stuff with the
	latest versions of those files as obtained from the Automake
	distribution.

	* tests/get/s.incl_excl_1: New file.

2000-12-02  james_youngman  <jay@gnu.org>

	* ChangeLog:
	Updated ChangeLog from CVS repository, including the latest checkin
	comments.

2000-11-26  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/sccsname.cc, /cvsroot/cssc/gnu/CSSC/cap.cc, /cvsroot/cssc/gnu/CSSC/delta-iterator.cc, /cvsroot/cssc/gnu/CSSC/fdclosed.cc, /cvsroot/cssc/gnu/CSSC/my-getopt.cc, /cvsroot/cssc/gnu/CSSC/sid_list.h, /cvsroot/cssc/gnu/CSSC/stack.h:
	Partial fix for SF bug #123246 (GCC-specific assumptions + typos)

2000-11-19  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/seqstate.cc, /cvsroot/cssc/gnu/CSSC/seqstate.h, /cvsroot/cssc/gnu/CSSC/sf-get.cc, /cvsroot/cssc/gnu/CSSC/tests/get/sf111140.sh, /cvsroot/cssc/gnu/CSSC/tests/get/sf111140.wtd, /cvsroot/cssc/gnu/CSSC/tests/get/sf111140_testcase.uue, /cvsroot/cssc/gnu/CSSC/testutils/compare_gets.sh, /cvsroot/cssc/gnu/CSSC/testutils/mogrify.awk, /cvsroot/cssc/gnu/CSSC/NEWS:
	Fix for long-standing bug: we now can correctly extract
	files containing deltas which include other deltas with
	the ^Ai construct (e.g. branch merges).  We may still not
	handle "get -i" correctly yet though.  Also, no similar
	fix for the excluded delta situation (I have no example
	file demonstrating that problem).  This is recorded as
	SourceForge bug 111140.  A test for this bug is also now
	included.

	* /cvsroot/cssc/gnu/CSSC/docs/cssc.texi, /cvsroot/cssc/gnu/CSSC/bsd/COPYING.bsd:
	Updated BSD license & documentation to remove advertising clause

	* /cvsroot/cssc/gnu/CSSC/unused/configs/README:
	Include README file to explain the contents of the directory

	* /cvsroot/cssc/gnu/CSSC/docs/patches.txt:
	Indicate that patches can be submitted via the SourceForge Patch Manager.

	* /cvsroot/cssc/gnu/CSSC/configure.in:
	A test commit, changing the suffix on the version number (to emphasise
	the fact that it's the CVS code).  Real purpose is to test the CVS checkin
	notification facility.

2000-11-12  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/fatalsig.cc:
	Added new file to resolve Sourceforge bug 110909.

	* /cvsroot/cssc/gnu/CSSC/Makefile.am, /cvsroot/cssc/gnu/CSSC/configure.in, /cvsroot/cssc/gnu/CSSC/quit.cc, /cvsroot/cssc/gnu/CSSC/quit.h:
	Delete the z-file when we get a fatal signal (fix for Sourceforge
	bug number 110909).

	* /cvsroot/cssc/gnu/CSSC/sf-get2.cc: Fixed bug 110537.

2000-11-05  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/fileiter.cc:
	Fixed SourceForge bug 121605 (coredump when fileiter is passed a directory
	name ending in a slash).

	* /cvsroot/cssc/gnu/CSSC/tests/admin/locks.sh:
	Test case covering SourceForge bug 111140 (admin -dla coredumps).

	* /cvsroot/cssc/gnu/CSSC/rel_list.cc, /cvsroot/cssc/gnu/CSSC/sf-admin.cc, /cvsroot/cssc/gnu/CSSC/sf-write.cc:
	Fixed SourceForge bug #121599: "admin -dla" crashes

2000-09-17  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/show-disp.sh:
	Removed spurious extra newlines (I wonder when they started appearing?)

2000-08-05  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/show-disp.sh:
	Updated copyright year and added ID header comment.

	* /cvsroot/cssc/gnu/CSSC/show-disp.sh:
	Use the -z3 option to compress data for "cvs status" because we have a
	long link with low bandwidth, often.  However, we don't use -z9
	because that would be worse for faster links.

	* /cvsroot/cssc/gnu/CSSC/NEWS, /cvsroot/cssc/gnu/CSSC/configure.in:
	Added in information about recent changes.

	* /cvsroot/cssc/gnu/CSSC/docs/cssc.texi:
	Resolved conflict on line containing the URL of the CSSC bug reporting page.

	* /cvsroot/cssc/gnu/CSSC/tests/get/sid-select2.sh:
	Added test case for [ Bug #110537 ] Invalid SID got in branch where Rtrunk
	greater than Rbranch

2000-08-04  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/show-disp.sh:
	Cope with CVS servers as well as local filesystem CVSROOTs.

2000-08-03  James Youngman  <james_youngman@users.sourceforge.net>

	* /cvsroot/cssc/gnu/CSSC/docs/cssc.texi, /cvsroot/cssc/gnu/CSSC/README, /cvsroot/cssc/gnu/CSSC/docs/BUGS:
	Fixed some incorrect SourceForge URLs.

	* /cvsroot/cssc/gnu/CSSC/docs/CREDITS: Corrected some spelling errors.

2000-07-18  James Youngman  <jay@gnu.org>

	* /cvsroot/cssc/gnu/CSSC/Makefile.am: Added relvbr.h to noinst_HEADERS.

	* /cvsroot/cssc/gnu/CSSC/docs/cssc.texi:
	Updated with details of the web site and changed the bug-reporting
	procedure.

	* /cvsroot/cssc/gnu/CSSC/ChangeLog:
	Brought into line with recent changes.

	* /cvsroot/cssc/gnu/CSSC/auxfiles/CSSC.spec.in: Updated the URL.

	* /cvsroot/cssc/gnu/CSSC/docs/BUGS:
	Refer to the bug tracking system at SourceForge.

	* /cvsroot/cssc/gnu/CSSC/AUTHORS:
	Inserted reference to file docs/CREDITS in the "AUTHORS" file.

	* /cvsroot/cssc/gnu/CSSC/README:
	Added information about SourceForge to the README.

	* /cvsroot/cssc/gnu/CSSC/configure.in: Bumped the patchlevel.

	* /cvsroot/cssc/gnu/CSSC/NEWS, /cvsroot/cssc/gnu/CSSC/docs/CREDITS.short.txt, /cvsroot/cssc/gnu/CSSC/docs/CREDITS:
	Brought into line with recent changes.

	* /cvsroot/cssc/gnu/CSSC/bsd/sccs.c:
	Patch from Albert John FitzPatrick III  <ajf_nylorac@acm.org>;
	Added support for "unget".

	* /cvsroot/cssc/gnu/CSSC/delta.cc:
	Accept list of MRs on input even if the input is not a TTY since
	allegedly other implementations do this.

2000-03-19  James Youngman  <jay@gnu.org>

	* tests/get/subst.sh, sf-get2.cc, sid.cc, sid.h:
	Patches from Mark Fortescue relating to SID selection and cutoff dates.

	* relvbr.h:
	Removed remarks about MySC, since this file has never been part of MySC.

	* relvbr.h: Fix by Mark Fortescue <mfortescue@transoft.com>.

	* rmdel.cc, cdc.cc: Fix from Frank van Maarseveen <fvm@tasking.nl>:

	A setuid cdc/rmdel will not unlock (i.e. remove the z-file) in
	case of an error. Most obvious error is when the invoker is not
	the creator of the delta.

	Both cdc and rmdel revoke setuid permission when the real user
	is not the creator of the delta. However, this should be restored
	_before_ reaching the end of the 'try' scope because on leaving
	it the z-file is removed indirectly by the sccs_file destructor.

	Attached you will find a patch which solves this problem.

	A more correct solution would be not to swap uid/euid but
	to print something like:

	ERROR [/usr/src/xxx/SCCS/s.main.c]:
	Must be owner of file or <user> to use this command.(rc4)

	* docs/cssc.texi:
	Support for SCCS files in which timestamps have been corrupted by
	non-Y2K-compliant versions of SCCS.  These files are correctly
	understood on reading, and are fixed if the file is ever re-written by
	CSSC.  (The Sun version of SCCS also performs the same fix).  Patches
	to do this were provided by Peter Kjellerstedt

	* delta-table.cc, delta-table.h, sf-get2.cc:
	Sergey Ostashenko provided patches to allow the processing of SCCS
	files with gaps in the chain of used sequence numbers, and to allow
	two deltas to have the same sequence number, on the condition that one
	of them is a removed delta.

	* sccsdate.cc:
	Patch by Peter Kjellerstedt for cleaning up after broken versions of
	SCCS.

	Some non y2k-compliant versions of SCCS will use a ":" in the decade
	field of the date in the year 2000 (since the ASCII code for ':' is
	one greater than that for '0').  Changed the relevant sccs_date
	constructor to figure out the right value in this case.  A warning
	message is issued when this happens.

	* tests/bsd-sccs/driver-basic.sh, tests/cdc/2comment.sh, tests/cdc/4order.sh, tests/delta/basic2.sh, tests/delta/ignored.sh, tests/delta/iterbasic.sh, tests/get/annotate.sh, tests/get/create.sh, tests/get/doubleinc.sh, testutils/lndir.c, testutils/seeker.c, docs/BUGS, docs/CREDITS, docs/CREDITS.short.txt, docs/FIXED, docs/Platforms, docs/cssc.texi, bsd/sccs.c, run.cc, sccsfile.cc, sccsfile.h, sccsname.h, seqstate.cc, seqstate.h, sf-delta.cc, sf-get.cc, sf-get2.cc, sf-get3.cc, sf-prs.cc, val.cc, visibility.cc, ChangeLog, Makefile.am, NEWS, configure.in, file.cc, linebuf.cc, quit.cc:
	Reverted trunk files to same contents as 0.11 patchlevel 3.

1999-12-09  Mark Fortescue <mark@mtfhpc.demon.co.uk> 

	* relvbr.h, sf-get2.cc, sid.cc, sid.h
	Fixed a problem with branching

	* sf-get2.cc, tests/get/subst.sh
	Fixed a problem with Cutoff Dates

1999-06-27  James Youngman  <jay@gnu.org>

	* quit.cc, sccsfile.cc, file.cc:
	Improved the error message which is issued when you try to open a
	nonexistent SCCS file.

	* docs/CREDITS, docs/CREDITS.short.txt, docs/Platforms:
	Bugfixes from Hyman Rosen and Mark Reynolds

	* sf-get.cc:
	Mark Reynolds <mark@aoainc.com>: GCC 2.8.1 on VAX Ultrix 4.2 doesn't
	seem to get this call right.  Since subst_fn is always write_subst
	anyway, we work around it by using the function pointer just as a
	boolean variable.  Yeuch.

	* bsd/sccs.c:
	Mark Reynolds <mark@aoainc.com>: If $LANG is not set, setlocale()
	fails on VAX Ultrix 4.2.

1999-06-26  James Youngman  <jay@gnu.org>

	* tests/admin/lockfail.sh:
	Fail correctly, but don't coredump, when we fail to create a lock file.
	Bug report by Michael Ubell <ubell@mindspring.com>.

	* tests/admin/lockfail.sh: New file.

	* file.cc, sccsname.h:
	Fail correctly, but don't coredump, when we fail to create a lock file.
	Bug report by Michael Ubell <ubell@mindspring.com>.

	* run.cc: Fixed typos.

	* tests/cdc/2comment.sh, tests/cdc/4order.sh:
	Use egrep, not grep, because on SunOS 4.1.3, grep(1) doesn't like the
	long regexps...

	* run.cc: SunOS 4.1.3 doesn't like fflush(NULL). (Mark Reynolds)

	* testutils/seeker.c, testutils/lndir.c:
	Vax Ultrix 4.2 requires <sys/types.h>. (Mark Reynolds)

	* sccsfile.cc: Compatibility fixes provided by Hyman Rosen.

	* val.cc: Fixed the name of the executable passed to set_prg_name().

1999-04-21  James Youngman  <jay@gnu.org>

	* ChangeLog: Added changes to date.

	* docs/Makefile.am: Added texinfo.tex to the distribution.

	* configure.in, sccsfile.cc, sf-delta.cc, sf-get.cc, sf-get2.cc, sf-get3.cc, sf-prs.cc, sf-prt.cc, sf-rmdel.cc, NEWS:
	Removed some dead code.

	* seqstate.h, seqstate.cc: Removed dependency on the STL <list> header.

1999-04-18  James Youngman  <jay@gnu.org>

	* docs/texinfo.tex: Automake likes texinfo.tex to be present.

	* delta.h, dtbl-prepend.cc, fileiter.h, prs.cc, prt.cc,
	rel_list.cc, rel_list.h, rl-merge.cc, rmdel.cc, run.h, sact.cc,
	seqstate.cc, seqstate.h, sf-cdc.cc, sf-chkmr.h, sf-get.cc,
	sf-get3.cc, sf-prs.cc, sf-prt.cc, sf-rmdel.cc, sf-write.cc,
	unget.cc, ChangeLog, delta-table.cc, delta-table.h: Updated
	copyright statements for those files modified this weekend.

	* configure.in:
	Commented out AM_PROG_INSTALL, since automake seems not to like it
	any more.

	* tests/bsd-sccs/driver-basic.sh:
	Disable test h2, since currently we don't pass it.   FIXME!

	* tests/rmdel/basic.sh: *** empty log message ***

	* tests/bsd-sccs/driver-basic.sh:
	Added test for "sccs unedit" ensuring we delete the gotten file.

	* docs/Platforms, docs/TODO, auxfiles/CSSC.spec.in:
	*** empty log message ***

	* pfile.cc, pfile.h, prs.cc, prt.cc, quit.cc, rel_list.cc,
	rel_list.h, rl-merge.cc, rmdel.cc, run.cc, run.h, sact.cc,
	sccsfile.cc, sccsfile.h, seqstate.cc, seqstate.h, sf-admin.cc,
	sf-cdc.cc, sf-chkmr.h, sf-delta.cc, sf-get.cc, sf-get2.cc,
	sf-get3.cc, sf-prs.cc, sf-prt.cc, sf-rmdel.cc, sf-write.cc,
	unget.cc, admin.cc, cdc.cc, delta-table.cc, delta-table.h,
	delta.cc, delta.h, dtbl-prepend.cc, fileiter.h, get.cc,
	l-split.cc, list.cc, mylist.h, mystring.h: Changes for correct
	support of included deltas in branches (a rewrite of seqstate.cc
	and seqstate.h).

	* tests/get/included.sh:
	Enable the test, now that we support included non-ancestor branches.

	* NEWS, README, configure.in: Updates for 0.11alpha.pl0

	* docs/cssc.texi: Updated version for next release.

	* docs/BUGS: Added bug report for "unget" deleting the wrong g-file.

	* bsd/sccs.c: Use tmpfile() rather than mktemp() in unget(), because
	glibc-2.1-0.990311 has a broken mktemp() (it returns an empty string).

1999-03-29  James Youngman  <jay@gnu.org>

	* tests/get/included.sh: Tests for included deltas.

1999-03-21  James Youngman  <jay@gnu.org>

	* Released 0.10beta.pl1.

	* docs/cssc.texi: Updated version for release.

	* docs/CREDITS.short.txt:
	File containing brief list of people who have contributed to CSSC.

	* docs/CREDITS: Added relevant people.

	* configure.in: Bumped version to 0.10beta.pl1

	* auxfiles/CSSC.spec.in:
	Folded in change from Michael Sterrett <msterret@coat.com> and Aron
	Griffis <agriffis@coat.com> which puts symlinks in /usr/bin (or
	whatever directory), pointing at the stuff in /usr/libexec/cssc.
	The effect is to have /usr/bin/get and so on.

	* bsd/sccs.c:
	Applied patch from Greg A. Woods which eliminates compiler warnings
	from sccs.c, without changing how the program works (I hope!).

	* docs/Platforms: Updated with respect to C++ compiler compatibility.

	* configure.in: Moved version.cc to the front of the AC_OUTPUT() list.

	* run.cc: Modification from Greg A. Woods; eliminates compiler warning.

	* docs/cssc.texi: Minor corrections (typos, etc).

	* testutils/README:
	Minor tweak suggested by Greg A. Woods (specify UTC in time)

1999-03-20  James Youngman  <jay@gnu.org>

	* Released 0.10beta.pl0.
	
	* docs/cssc.texi: Updated version number.

	* bsd/sccs.c, docs/cssc.texi, delta.cc, configure.in:
	Updated copyright messages of those files edited so far in 1999.

	* tests/prs/keywords.sh: Use "echo_nonl" instead of "echo -n".

	* configure.in, ChangeLog, NEWS: Go to 0.10beta-pl0 from 0.09alpha-pl4.

	* docs/cssc.texi:
	Cosmetic changes to make texinfo-3.12f happy about my use of @xref.
	(in this case, by adding punctuation after each use).

1999-03-19  James Youngman  <jay@gnu.org>

	* testutils/realpwd.cc, sf-delta.cc, sf-get2.cc, sid.cc, what.cc, bodyio.cc, cdc.cc, delta-iterator.cc, my-getopt.cc, mystring.cc, mystring.h, pfile.h, quit.cc, quit.h, run.cc:
	Fixes to make CSSC compiler under the EPC C++ compiler (and probably
	other C++ compilers, too).

1999-03-15  James Youngman  <jay@gnu.org>

	* Released 0.09alpha.pl4.

	* ChangeLog, NEWS, configure.in: Comments etc. for 0.09alpha.pl4.

	* docs/cssc.texi: Marginally improved documentation for "delta -p"

	* bsd/sccs.c: Fixed "sccs sccsdiff".  Bug reported by Achim Hoffmann.

1999-03-14  James Youngman  <jay@gnu.org>

	* docs/cssc.texi, ChangeLog, delta.cc, sccsfile.h, sf-delta.cc:
	Implemented the -p option of delta.

	* docs/TODO:
	Added tests to make sure we correctly count the number of lines initially inserted by admin -i.

	* bsd/sccs.c: Tweaks to execv() usage in try_to_exec().
	Also, ensure that PREFIX is absolute, and refuse to run otherwise.

	* configure.in: Eliminate duplicate checks for abort() and wait().

	* auxfiles/CSSC.spec.in: Corrected the URL.

	* tests/delta/n-option.sh: Added tests for the -n option of delta.

	* tests/admin/i-option.sh:
	Check that the "initial number of lines" is correct for admin -i.

1999-03-13  James Youngman  <jay@gnu.org>

	* configure.in: Bumped to 0.09alpha.pl3.

	* NEWS: Added NEWS remark regarding the removal of AC_C_CONST.

	* tests/admin/r-option.sh: val has now been implemented.

	* docs/TODO, docs/cssc.texi, docs/missing.txt, sccsfile.cc, sccsfile.h, sf-admin.cc, sf-delta.cc, what.cc, NEWS, admin.cc, configure.in, file.cc, get.cc, pfile.cc, quit.cc, run.cc:
	Allow "admin -ifoo -r1.2.2.1 s.foo", and make it work correctly.
	Also added tests for the -r option.

	* tests/admin/init-mr.sh: Corrected an error message.

1998-12-12  James Youngman  <jay@gnu.org>

	* docs/cssc.texi:
	Warn that "admin -z" may silently fix errors and get it wrong.

	* val.cc, sf-val.cc, sf-write.cc, quit.cc, quit.h, sccsfile.cc, except.h, file.cc, get.cc, bodyio.cc, delta-table.cc:
	Enhancements to "val".

1998-12-10  James Youngman  <jay@gnu.org>

	* configure.in: Went to 0.09alpha.pl2.

1998-12-09  James Youngman  <jay@gnu.org>

	* NEWS: Added news for CSSC-0.09alpha-pl2.

	* sccsfile.h:
	Added declarations of functions implemented in sf-val.cc and also a
	forward declaration of class delta_iterator.

	* what.cc: Duh.  getchar() returns int, remember?

	* sf-prt.cc:
	If a (mystring*) flag in the SCCS file is not NULL, then the flag must
	be set even if the length of the string is zero; consider lines like
	"^Af v" rather than "^A f v ".

	* sid.h, sid.cc: Implemented sid::as_string().

	* sccsfile.cc:
	We have to be careful to not crash on input lines like "^Af v".  That
	is, bufchar(4) may well be zero for a flag line!  Thanks to William
	W. Austin <bill@baustin.alph.att.com> for this diagnosis.

	* sf-val.cc:
	Traverse the delta table checking some things.  Not finished yet.

1998-11-29  James Youngman  <jay@gnu.org>

	* docs/cssc.texi, docs/TODO, val.cc, sf-val.cc, sccsfile.h, Makefile.am, NEWS:
	Initial implementation of "val".

	* sf-admin.cc: Make it possible to delete the "m" flag.

	* valcodes.h: Return codes for "val".

	* docs/CREDITS: Fixed typo.

1998-11-21  James Youngman  <jay@gnu.org>

	* admin.cc: Ensure that if we specified -h, we do *nothing* else.

	* tests/admin/admin-hz.sh:
	Make sure that if we specify -h and -z, we do not update the checksum.

	* tests/admin/admin-hz.sh:
	Added tests for the -h and the -z options of admin.

	* docs/cssc.texi: Elaborated on comments about "admin -z".

	* sf-get.cc:
	For get(), ensure that the file was not opened with the mode
	FIX_CHECKSUM, because that doesn't make sense.

	* sccsfile.cc:
	Emit helpful message if we fail to open the s-file.   If we are doing
	"admin -z", don't complain if the checsum was previously wrong.

	* sccsfile.h: Added new open mode FIX_CHECKSUM.

	* admin.cc: Better operation of the -z (reset checksum) option.

	* sf-write.cc:
	Rethought update_checksum().  It now works even though the s-file is
	mode 444 (which is what it should be).

	* file.cc: Eliminated compiler warning.

1998-11-13  James Youngman  <jay@gnu.org>

	* NEWS: Added changes for 0.09alpha.pl1.

	* configure.in: Bumped up the patchlevel.

	* docs/cssc.texi: Documented sccsdiff.

	* run.cc: Call errormsg_with_errno() correctly.

1998-11-12  James Youngman  <jay@gnu.org>

	* cdc.cc: Reformatted the error message that you get when trying to get
	arguments from stdin without also using the -y option.

1998-11-01  James Youngman  <jay@gnu.org>

	* docs/FIXED: Added fixes from Dick Streefland.

	* testutils/Makefile.am: Added the "yammer" program.

	* docs/Platforms: Also tested on Red Hat 5.1.

	* docs/CREDITS: Added credit to Greg Woods.

	* tests/binary/seeking.sh: Avoid requiring the "nl" utility.

	* testutils/yammer.c:
	This program is not installed as part of CSSC.  It's just used by
	the test suite.  It takes two arguments, the first being a repeat
	count, and the second being a string that should be repeated that
	many times.  For example, "yammer 2 blah" should emit
	  1 blah
	  2 blah

	The program was designed to eliminate the requirement to do
	  yes blah | nl | head -2
	because some systems, for example NetBSD/SPARC 1.3.2, lack the "nl"
	utility.

	* run.cc:
	When calling errormsg_with_errno(), actually pass errno as the first argument.

1998-10-29  James Youngman  <jay@gnu.org>

	* sccsfile.cc:
	Added toleration for some features that Larry is putting into
	BitKeeper.

	* auxfiles/Makefile.am: Added newline at the end of the file.

	* show-disp.sh:
	Don't use the --lint --posix for awk, because only GNU awk likes them.

1998-10-21  James Youngman  <jay@gnu.org>

	* file.cc:
	Use stat(2) rather than fstat(2), so that the file locking does indeed
	work over NFS.

1998-10-20  James Youngman  <jay@gnu.org>

	* auxfiles/Makefile.am:
	Ensure that CSSC.spec and CSSC.spec.in both get distributed.

	* tests/get/no-sfile.sh:
	Added no-sfile.sh, which tests for the existence of a bug pointed out
	by Dick Streefland <dick_streefland@tasking.com> (we core dump when we
	should exit with status 1, if no SCCS file is specified for some
	tools)

	* unget.cc, sf-prs.cc, sf-get2.cc, sact.cc, rmdel.cc, run.cc, prt.cc, prs.cc, get.cc, fileiter.cc, fileiter.h, delta.cc, cdc.cc, admin.cc:
	Patches from Dick Streefland <dick_streefland@tasking.com>:-
	> I'm sending you three patches for CSSC-0.09alpha.pl0. Patch #1 fixes
	> two prototype mismatches. Patch #2 makes sure that "get" and "prs"
	> return a proper exit status in the case of an output file error
	> (e.g.  disk full). Patch #3 fixes the problem that when you invoke
	> one of the tools without an SCCS file, it will abort with a core
	> dump. Abort() is called because an exception is raised that is not
	> handled. I removed the exception, and added explicit tests in each
	> tool.

1998-09-07  James Youngman  <jay@gnu.org>

	* file.h: Added fcreate() flag enum for atomic locking over NFS.

	* file.cc:
	Made the lockfile create more robustly atomic over NFS by using the
	lock-then-stat approach.  Fall back on using the regular open() with
	O_EXCL if it look slike the underlying filesystem does not support
	hard links.

1998-09-06  James Youngman  <jay@gnu.org>

	* sf-delta.cc, pf-del.cc, bodyio.cc:
	Use fcreate() to create files for writing, rather than fopen().
	This allows us to use open(.., O_CREAT|O_EXCL).

	* get.cc:
	If we fail to add the lock to the p-file, delete the gotten editable file.

	* docs/cssc.texi:
	Documented the various prefixes used for files, temporary and otherwise.

	* tests/get/writable.sh:
	Make sure "get -k" produces a writable g-file and "get" without -k
	does not.

	* tests/admin/i-option.sh, sf-write.cc, sf-delta.cc, sccsfile.h, sccsfile.cc, pf-del.cc, get.cc, pf-add.cc, file.cc, bodyio.cc, bodyio.h:
	Take special care to close and delete temporary files if an exception
	is thrown.

	* README: Typo.

1998-09-05  James Youngman  <jay@gnu.org>

	* configure.in:
	Generate auxfiles/CSSC.spec from auxfiles/CSSC.spec.in, to get the
	version number substituted.

	* auxfiles/CSSC.spec.in, auxfiles/CSSC.spec:
	Generate CSSC.spec from CSSC.spec.in, using substitution of @VERSION@.

1998-09-04  James Youngman  <jay@gnu.org>

	* NEWS: UPdated for 0.09alpha.pl0.

	* ChangeLog: Added in the changes for 0.09alpha.pl0.

	* README: Fixed typo.

1998-09-03  James Youngman  <jay@gnu.org>

	* except.h: Declarations of exceptions.

	* Makefile.am: Added except.h.

	* tests/prt/exists.sh:
	Added tests that check for correct behabiour when the s-file is
	absent.

	* sact.cc: Catch exceptions in main().

	* shorter/rmdel.cs, shorter/sact.cs, shorter/unget.cs, shorter/what.cs, shorter/README, shorter/admin.cs, shorter/cdc.cs, shorter/delta.cs, shorter/get.cs, shorter/prs.cs, shorter/Makefile.in:
	We have not been keeping these files up to date and haven't used
	them at all, and we planned not to have to use them.  So they're
	obsolete.

	* tests/get/create.sh:
	Make the test suite miscarry if the test files can not be created.

	* tests/initial/root.sh, tests/Makefile.am:
	Make sure we start the test suite by making sure that we're not
	running as root.

1998-09-02  James Youngman  <jay@gnu.org>

	* tests/common/not-root:
	If the code inside the subshell exits with a nonzero exit status, make
	sure that the "outer" shell does too -- so that the miscarry() takes
	effect.

	* tests/bsd-sccs/driver-basic.sh:
	Remove the SCCS directory too, when the test is finished.

	* sid_list.h, unget.cc, sf-write.cc, sf-prs.cc, sf-get2.cc, sf-kw.cc, sf-get.cc, sf-delta.cc, sf-admin.cc, sccsfile.h, sccsfile.cc, run.cc, quit.h, rel_list.cc, rmdel.cc, prt.cc, quit.cc, pf-add.cc, pfile.cc, prs.cc, filepos.h, get.cc, file.cc, fileiter.cc, delta.cc, configure.in, delta-table.cc, bodyio.cc, cdc.cc, acconfig.h, admin.cc:
	On systems that support exceptions, handle errors by throwing
	exceptions.  On systems that don't support exceptions, handle some
	errors by returning back up the calling sequence, and some by calling
	exit() in quit().  This means that only systems with exceptions will
	allow the second file to be processed if the first fails.

	* docs/cssc.texi:
	"admin -h" is actually unimplemented, rather than just untested.

	* tests/rmdel/exists.sh, tests/unget/exists.sh, tests/prs/exists.sh, tests/prs/keywords.sh:
	Added tests that check for correct behaviour when the s-file does
	not exist.

1998-08-22  James Youngman  <jay@gnu.org>

	* sf-write.cc: Eliminate unused-parameter warning.

1998-08-15  James Youngman  <jay@gnu.org>

	* docs/TODO: We now use getpwuid() instead of getlogin().

1998-08-14  James Youngman  <jay@gnu.org>

	* unget.cc, sf-write.cc, sid_list.h, sf-prs.cc, sf-get3.cc, sf-kw.cc, sf-get2.cc, sf-get.cc, sf-delta.cc, sccsfile.h, rel_list.cc, fileiter.cc, filepos.h, get.cc, file.cc, file.h, delta.cc, admin.cc:
	Use errormsg() or errormsg_with_errno() more, instead of quit().

1998-08-13  James Youngman  <jay@gnu.org>

	* auxfiles/CSSC.spec, configure.in: Bumped to 0.09alpha.pl0.

	* README: Indicate how to generate all the neccesary files after a "cvs
	checkout".

	* bodyio.h, bodyio.cc, sf-delta.cc, sf-admin.cc:
	Handle I/O errors without calling quit().

	* sf-get2.cc:
	Added reminder to check if we handle the %W% keyword correctly.

	* sf-get.cc, l-split.cc, delta.cc:
	Cosmetic changes to the code formatting.

	* sf-prt.cc:
	Use errormsg_with_errno(), not quit(), and return a failure status
	intead of exiting on the spot when there is a problem (so that we can
	continue to process the next file).

	* sf-prs.cc: Cosmetic changes to the code formatting.

	* pfile.cc:
	Added ctor_quit(), a synonym for quit(), which indicates that it is
	being called from a constructor.  These are the failure points that
	can't be replaced with a "return false", but only with an exception.

	* fileiter.cc: Cosmetic changes to the code formatting.

	* cssc.h: Don't need to worry about getlogin() any more.

	* unget.cc: Return a failure status if pfile.update() had failed.

	* sid.cc:
	Use assert(), not quit(), to detect logic errors in the program.

	* sf-write.cc, sf-delta.cc:
	Use errormsg_with_errno(), not quit(), and return a failure status
	intead of exiting on the spot when there is a problem (so that we can
	continue to process the next file).

	* sccsfile.cc:
	Use errormsg_with_errno(), not quit(), and return a failure status
	intead of exiting on the spot when there is a problem (so that we can
	continue to process the next file).

	Added ctor_quit(), a synonym for quit(), which indicates that it is
	being called from a constructor.  These are the failure points that
	can't be replaced with a "return false", but only with an exception.

	* quit.h, quit.cc:
	Added ctor_quit(), a synonym for quit(), which indicates that it is
	being called from a constructor.  These are the failure points that
	can't be replaced with a "return false", but only with an exception.

	* pf-del.cc:
	Use errormsg_with_errno(), not quit(), and return a failure status
	intead of exiting on the spot when there is a problem (so that we can
	continue to process the next file).

	* file.cc: Use getpwuid(), not getlogin(), for get_user_name().

1998-08-12  James Youngman  <jay@gnu.org>

	* pfile.h: Make update() return a boolean indication of success.

1998-06-19  James Youngman  <jay@gnu.org>

	* NEWS, ChangeLog:
	Normal prerelease modifications to ChangeLog, NEWS, etc.

	* configure.in, auxfiles/CSSC.spec: Bumped the patchlevel.

	* mystring.cc:
	re-fixed bug in find_last_of().    First bugfix had a bug.

	* bsd/sccs.c:
	Use our own error code definitions taken from the glibc <sysexits.h>.
	This is to avoid a compiler error due to the redifinition on Solaris
	(with GCC installed).

	* bsd/sccs.1: Documented the various possible error codes.

1998-06-16  James Youngman  <jay@gnu.org>

	* configure.in: Bumped version to 0.08alpha-pl0.

	* ChangeLog: *** empty log message ***

	* auxfiles/CSSC.spec: Changed version to 0.08alpha-pl0.

	* docs/FIXED: Added a report of the mystring::find_last_of() bug.

	* docs/CREDITS: Added apology to Achim Hoffmann.

	* docs/style.txt:
	"f()" vs. "f ()": added plea for any reason to prefer one over the
	other.

	* docs/cssc.texi:
	Indicate that the fatal-exit-on-error problem is being worked on.

	* NEWS: *** empty log message ***

	* docs/cssc.texi:
	Added a short remark about Emacs's VC-mode in the section on delta; if
	an SCCS file has the V flag set, you need to put an -m option in
	vc-checkin-flags in order to be able to check in revisions within
	Emacs.

	* sccsfile.cc:
	Oops.  Include <ctype.h> if STDC_HEADERS is defined, because
	HAVE_CTYPE_H is not defined by our configure.in.

	* mystring.cc:
	Fixed find_last_of().  We were finding the FIRST occurrence of the
	target rather than the last.  Argh!  How stupid is that?

	* tests/prs/keywords.sh: Make sure prs accepts an empty "-r" option.

1998-06-15  James Youngman  <jay@gnu.org>

	* fileiter.cc:
	When reading a list of filenames from stdin, trim off the newline that
	separates the filenames.

	* sf-write.cc, sf-prs.cc, sf-prt.cc, sf-rmdel.cc, sf-get.cc,
	sf-get2.cc, sf-cdc.cc, sf-delta.cc, sccsfile.h, sf-add.cc,
	sf-admin.cc, quit.cc, quit.h, rmdel.cc, file.cc, get.cc, prt.cc,
	cdc.cc, delta.cc, admin.cc:
	Don't use quit(); rather, use errormsg() and make a fatal exit
	from the function which we are now executing.  When this
	propagates up to the top level, remember the error so we cal later
	exit with a return value of 1, but nevertheless continue to
	process command-line arguments.

	* prs.cc:
	Allow the -r option to have no argument, without producing an error.
	When processing SCCS files, allow any of them to fail without this
	causing the whole operation to abort, but remember the fact and exit
	with a return value of 1 (hence use errormsg() rather than quit() for
	producing error messages).

1998-06-14  James Youngman  <jay@gnu.org>

	* unused/Makefile.am, unused/README, quit.cc, configure.in,
	Makefile.am:
	Moved some files into the "unused" directory, which we now add into
	the distribution.   They may be useful for ports or something.

	* unused/sid_list.cc, unused/pipe.cc, unused/pipe.h,
	unused/ffsync.cc, unused/fsync.cc, unused/move-if-change,
	unused/dosfile.cc, unused/dummy.cc, unused/_chmod.cc, dosfile.cc,
	ffsync.cc, move-if-change, pipe.cc, pipe.h, sid_list.cc,
	_chmod.cc, dummy.cc, fsync.cc: 
	Moved some files into the "unused" directory; we don't use them
	any more and keeping them aroung means that they have to be
	considered during global search and replace operations.  That's
	just making more work for myself.  These files are the contents of
	the $(rainyday_src) macro in the makefile.

	* unget.cc, sccsfile.cc, sact.cc, rmdel.cc, run.cc, quit.cc,
	quit.h, prt.cc, pipe.cc, prs.cc, pf-add.cc, pfile.h, get.cc,
	file.cc, delta.cc, admin.cc, cdc.cc:
	Changes to avoid using quit(); rather, we want to emit an error
	message and return an error status to the caller.  This allows an
	SCCS program to process a list of files without quitting
	prematurely because there was somethign wrong with some file early
	in the list.  More changes remain to be done for this to be
	complete.

	* Makefile.am: Added dosfile.cc and ffsync.cc.

	* dosfile.cc, ffsync.cc:
	Moved some system-dependent code out of file.cc.

	* delta.cc:
	Use errormsg() rather than quit() so that if the first file fails, the
	second may still be processed.

1998-06-13  James Youngman  <jay@gnu.org>

	* README:
	Added some basic remarks about configuuring the destination directory
	to the "QuickStart" section of the file.  Also, change the sample test
	script to send the version information too.

	* fdclosed.cc:
	Fixed copyright date and removed extraneous #include of err_no.h.

	* fdclosed.cc: Fixed the comments.

	* Makefile.am, fdclosed.cc:
	Provide a static object constructor that ensures that file descriptors
	0, 1 and 2 are not closed at the start.  Otherwise we might printf()
	to stdout and accidentally modify a file we fopened() for writing.

	* bsd/Makefile.am: Define PREFIX to be $(csscutildir) by default.

1998-06-11  James Youngman  <jay@gnu.org>

	* ChangeLog, NEWS: Final additions for 0.07alpha.pl3.

	* bsd/Makefile.am:
	Even though sccs.1 is in man_MANS, we still need to get it added to
	EXTRA_DIST in order to get it in the distribution.   Argh.

1998-06-10  James Youngman  <jay@gnu.org>

	* configure.in: Bumped the patchlevel.

	* auxfiles/CSSC.spec:
	Fixe dchangelog, added sccs manpage, included all the info files.

	* NEWS, ChangeLog: Added changes for CSSC-0.07alpha-pl3.

	* bsd/Makefile.am:
	Added COPYNG.bsd to the distribution.   Also .ispell_english.
	Added the manual page sccs.1 too.

	* tests/common/test-common, tests/common/not-root,
	tests/bsd-sccs/driver-basic.sh: Ensure the test suite is not run
	by root (because that makes "test -w" return misleading results).

1998-06-09  James Youngman  <jay@gnu.org>

	* auxfiles/CSSC.spec, docs/CREDITS, NEWS, configure.in:
	Bumped to CSSC-0.07alpha-pl2

	* sccsfile.cc:
	Fixes to tolerate spurious arguments on ^AU and ^At lines.
	This problem reported by Marko Rauhamaa <marko@tekelec.com>.

1998-06-08  James Youngman  <jay@gnu.org>

	* NEWS, ChangeLog: Summarised changes for 0.07alpha-pl1.

	* auxfiles/CSSC.spec, configure.in: Bumped to 0.07 patchlevel 1.

	* prompt.cc: Allow newlines to be escaped with a backslash.

	* sf-get.cc:
	Don't warn about keyword substitution not being done for binary files;
	I don't think it should be done in any case.

	* tests/admin/abspath.sh:
	Use a less complicated way of building the command.   We seem to have
	a small problem with this:-  anthonyc@nag.co.uk sees
	"/zome/anthonyc/.../s.bar: no such file or directory".
	  ^ Note that the z for the lockfile name appears here!

	* tests/prt/reportmr.sh:
	Some shells don't like two assignments on one line, for example
	"g=reportmr.1 s=inputs/s.$g".  With these shells, the $g in the second
	assignment expands to nothing.  "ash" version 0.2 is like this. Bash
	version 1.14.7 is not.

	* bsd/sccs.c: Support "sccs cdc".

	If we use "sccs create -b foo", pass the "-b" flag to "admin", but not
	to "get".  Passing it to "get" would mean "create a branch" rather
	than "binary" and we're not checking the file out for editing anyway.
	This at the request of <peter.kjellerstedt@axis.com>.

1998-06-06  James Youngman  <jay@gnu.org>

	* bsd/sccs.c:
	Be as careful about running setgid as we are about running setuid.

	* bsd/sccs.c:
	Insist on the compile-time macro SCCSDIR having been set if the program
	is installed set-user-id (what about set-group-id?).

	* tests/bsd-sccs/driver-basic.sh:
	Unset $LANG so that the tests for sccs(1) don't fail on systems
	which are mosconfigured, just because they are misconfigured.

	* docs/TODO: *** empty log message ***

	* NEWS: Added update for version 0.07alpha-pl0.

	* ChangeLog: Updated for version 0.07alpha-pl0.

	* configure.in: Bumped to version 0.07.

	* auxfiles/CSSC.spec: *** empty log message ***

	* tests/common/command-names:
	Set ${sccs} here in tests/bsd-driver/*, and not this file.  We keep it
	out of command-names since we currently need to run sccs in order to
	decide if we need to pass it the --prefix option.  That would slow all
	the other tests down.

	* tests/bsd-sccs/driver-basic.sh:
	Set ${sccs} here in this file.  We keep it out of common/command-names
	since we currently need to run sccs in order to decide if we need to
	pass it the --prefix option.  That would slow all the other tests
	down.

	* tests/prt/nodel.sh, tests/prt/default.sh:
	Remove s.testfile when the test is complete.

	* bsd/sccs.c, bsd/sccs.1:
	Modified to work with portability hints provided by Automake
	(e.g. sys_siglist[], struct dirent vs. struct direct, and so on); also
	other portability enhancements.

	Modifued some of the string handling for greater protection against
	buffer-overflow.

	Added extra options to sccs (--cssc, --prefix) to allow the
	program to be tested before the sub-programs (edmin, get, etc.)
	are installed in their final positions.  Added --version and -V
	options (which do the same thing).

	Documented this in the manpage; also added a COPYING section and
	added some more entries in the SEE ALSO section.

	Folded pathnames.h into sccs.c.

	* bsd/Makefile.am: Rolled pathnames.h into sccs.c.

	* bsd/.ispell_english: Removed entries containing punctuation or
	digits; ispell doesn't like them.

	* bsd/pathnames.h: Rolled the few remaining definitions into sccs.c

	* bsd/pathnames.h:
	Don't use absolute paths for the locations of the subcommands.

1998-05-30  James Youngman  <jay@gnu.org>

	* tests/bsd-sccs/driver-basic.sh: Added tests for "sccs check".

	* tests/bsd-sccs/driver-basic.sh:
	Added tests for deledit, delget, fix, tell, rmdel, what, enter, edit,
	clean, unedit and info.

	* configure.in, acconfig.h:
	Detect sys_suglist, for bsd/sccs.  Also detect <locale.h>.  Bump
	patchlevel to 9 (though we may end up making a new release instead).

	* sccsfile.cc:
	find_any_delta(sid id): will find even removed deltas.  This is part
	of the "sccs fix" bugfix.

	* tests/common/command-names:
	Oops.  Set sccs=sccs as a last resort if we can't find it.

	* delta-table.cc, sf-get2.cc, sccsfile.h, delta-table.h:
	When getting a delta for editing, and the trunk successor has been
	rmdel'ed, reuse it (this is required for "sccs fix" to work properly,
	and it's the way real-sccs works).

	* tests/rmdel/edit.sh:
	Tests that do "delta" after an "rmdel" to make sure the right things
	happen.

1998-05-28  James Youngman  <jay@gnu.org>

	* bsd/sccs.c:
	Cope in a more portable way with the status return from a child.

	* bsd/sccs.c: Allow "sccs -V -V -V" without generating a coredump.

	* bsd/sccs.c:
	Some portability improvements; don't need sig_t; cope without
	sys_siglist if we don't have it.   This mostly affects Linux with libc
	version 5 and below, I think.

1998-05-27  James Youngman  <jay@gnu.org>

	* bsd/sccs.c, bsd/.ispell_english, bsd/pathnames.h:
	Some range chacking corrections, correctiosn to the PREFIX macro, etc.

	* bsd/COPYING.bsd:
	Explained why part of CSSC is published under the BSD license

	* docs/TODO:
	Added note about considering the use of getpwuid() in preference to getlogin().
	Removed TODO entries from some stuff that's been done.

	* README:
	We now support binary files; remove the statement that we do not...

	* what.cc, sccsfile.cc, bodyio.cc, cssc.h:
	Removed some unused configuration macros.
	Renamed CONFIG_BINARY_FILE to CONFIG_OPEN_SCCS_FILES_IN_BINARY_MODE.

	* scripts/change-suffix, unused/change-suffix:
	change-suffix should be in scripts, not unused :-)

	* unused/change-suffix: Moved change-suffix into "unused".

	* change-suffix: Moved change-suffix unti "unused".

	* tests/bsd-sccs/driver-basic.sh, tests/Makefile.am:
	Added tests for the driver program "sccs".

	* tests/common/test-common: Use ../../testutils/ekko as a fallback.

	* tests/common/command-names: Added entry for the "sccs" command.

1998-05-25  James Youngman  <jay@gnu.org>

	* defaults.h: Removed some unused features.

	* docs/CREDITS:
	Added info about the BSD-derived code (sccs.c and friends).

	* AUTHORS: Added info about the BSD-derived code (sccs.c and firends).

	* docs/cssc.texi:
	Added documentation about sccs.c, the BSD copyright notice, and added
	some more concept index entries.

1998-05-23  James Youngman  <jay@gnu.org>

	* bsd/sccs.c:
	Some attempts at increased security and portability.  No tests for
	this program yet though, so no certainty that this works.

1998-05-12  James Youngman  <jay@gnu.org>

	* tests/prt/inputs/s.reportmr.1:
	Oops.  I'd been working with a different file in the compilation
	directory.

	* ChangeLog: *** empty log message ***

	* configure.in: Moved to 0.06alpha.pl8

	* NEWS: Additions for 0.06pl8.

1998-05-11  James Youngman  <jay@gnu.org>

	* testutils/README: Fixed typo.

	* tests/prt/inputs/s.reportmr.1, tests/prt/reportmr.sh:
	New tests for those cases where there are MRs to be reported.

	* sf-prt.cc, prt.cc:
	Make sure the MR list (etc.) is formatted correctly when we are
	printing one delta per line.

1998-05-10  James Youngman  <jay@gnu.org>

	* bodyio.cc:
	Don't store the result of getc() in a char, use an int -- that way, we
	can detect EOF.

	* sf-write.cc:
	Remove comment discussing broken behaviour with "admin -i" and
	nonseekable binary standard input that has now been fixed.

	* testutils/lndir.c: Ignore CVS directories too.

1998-05-09  James Youngman  <jay@gnu.org>

	* sf-rmdel.cc, sid.cc, sccs-delta.cc, sccsname.cc, prs.cc,
	quit.cc, pipe.cc, fsync.cc, pf-add.cc, file.cc, fileiter.cc,
	delta.cc, cdc.cc, delta-table.cc: 
	Get the name of the file right, in each file's comment header.

	* sf-write.cc, sccsfile.h:
	Fixed some compilation errors; warnings about passing "unsigned *pSum" when "int *pSum" is required.

	* docs/Platforms, docs/CREDITS, docs/FIXED, docs/BUGS:
	Updated lists of outstanding anb fixed bugs, added people to CREDITS,
	and did some housekeeping in Platforms.

	* docs/cssc.texi:
	Added clarification that the file that must be specified on the
	"delta" command line is that of the s-file, not the working file.

1998-05-08  James Youngman  <jay@gnu.org>

	* CSSC-0.06alpha.pl7 released.
	
	* NEWS, configure.in, ChangeLog: Released 0.06alpha.pl7.

	* docs/cssc.texi: Added header for install-info.

	* auxfiles/CSSC.spec:
	Included mods from John Interrante <interran@crd.ge.com>,
	except his patch to pathname.h; must apply that RSN.

	* sf-delta.cc, seqstate.cc, seqstate.h, sccsfile.cc,
	delta-iterator.h, Makefile.am: Fixed bug in seqstate.h that
	manifested with Codemgr SCCS files.  This required the
	introduction of seqstate.cc and a modification to sf-delta.cc as
	well.

1998-05-06  James Youngman  <jay@gnu.org>

	* seqstate.h:
	Reindented to prepare for new code which maintaind the state of the
	"deleting" flag differently.

1998-05-05  James Youngman  <jay@gnu.org>

	* CSSC-0.06alpha.pl6 released.
	
	* NEWS: Added entry about "sccs.c".

1998-05-04  James Youngman  <jay@gnu.org>

	* bsd/sccs.c, bsd/pathnames.h, Makefile.am:
	Attempted to make the location of "sccs" configurable.   Also attempted to add const modifiers where useful.

	* NEWS: Added "-t" option.

	* sccsfile.cc:
	Use signed arithmetic for checksums.    I *think* that matches the
	"real" SCCS.  Also produce what I hope are more useful messages when
	the checksum is incorrect (or even the checksum header is missing).

	* sccsfile.h:
	Use signed arithmetic for checksums.    I *think* that matches the
	"real" SCCS.

	* configure.in: Added the "bsd" directory.

	* tests/get/branch.sh:
	Added note about the SCO version of "unget" being silent.

	* docs/cssc.texi:
	texi2html doesn't expand homegrown macros, so we have to write the
	maintainer's email address out by hand in each place.

	* docs/Platforms: Added note for IRIX.

	* sid.h: Removed a #pragma -- they're not portable anyway.

	* pipe.h: Use "class foo : public bar {}" not "class foo : bar { }".

	* pfile.h: Removed a #pragma -- they're not portable anyway.

	* mystring.h:
	Added comment about functions disalbigiated only by the constness of
	*this.   Some versions of the IRIX C++ compiler don't like that (error
	3392).

	* linebuf.h: Actually remove a #pragma that had been commented out.

	* filelock.h: Explicitly use "private" in inheritance spec
	(e.g. 'class foo : private bar {}') ,
	we can't just leave it out.

	* fileiter.cc:
	If an argument is a directory which is named so as to end in a slash,
	don't coredump.

1998-03-18  James Youngman  <jay@gnu.org>

	* bsd/sccs.c: Reindented with GNU Indent.

	* bsd/sccs.c: Many const-correctness changes.

1998-03-17  James Youngman  <jay@gnu.org>

	* bsd/Makefile.am, bsd/Makefile.bsd, bsd/COPYING.bsd, bsd/Makefile:
	Updated the copyright info.  There is a different copyright situation
	locally in this dir.

	* bsd/sccs.c:
	Eliminated many compiler warnings.  Partial Autoconf conversion.

	* bsd/sccs.c: Use stdarg.h instead of old-style /*VARARGS1*/ etc.

1998-03-16  James Youngman  <jay@gnu.org>

	* bsd/sccs.me, bsd/sccs.c, bsd/pathnames.h, bsd/sccs.1, bsd/Makefile:
	Added files from the Berkeley sccs.c implementation.

1998-03-15  James Youngman  <jay@gnu.org>

	* tests/get/t-option.sh, docs/style.txt, docs/get-spec.txt, docs/cssc.texi, docs/Makefile.am, docs/TODO, sf-get2.cc, get.cc, Makefile.am:
	Implemented the "-t" option of get.

	* tests/get/t-option.sh: Tests for the -t option of get.

1998-03-14  James Youngman  <jay@gnu.org>

	* sccsdate.cc, sccsfile.cc, sf-get.cc, configure.in, file.cc, filediff.cc, admin.cc, bodyio.cc:
	Fixed some compiler warnings, no change in functionality.

	* docs/Makefile.am: Added mailing-list.txt.

	* docs/mailing-list.txt:
	Information about the mailing list for GNU CSSC.

	* docs/patches.txt:
	Requested that people specify the purpose of the submitted patch, and
	delete all editor backup files before generating it.

	* testutils/lndir.c, testutils/ekko.c:
	Eliminate some compiler warnings; falling off the end of int-returning
	functions and that sort of thing.

	* testutils/seeker.c:
	setlinebuf() is not a standard ISO-C library function and SCO Unix
	(for example) does not provide it.  It has an exact setvbuf()
	equivalent, so use that instead.

1998-03-11  James Youngman  <jay@gnu.org>

	* auxfiles/Makefile.am, Makefile.am, configure.in:
	Added the "auxfiles" directory so that CSSC.spec is distributed.

	* ChangeLog, NEWS: Detailed the updates for CSSC-0.06alpha-pl5.

	* auxfiles/CSSC.spec, configure.in: Bumped patchlevel to 5.

	* docs/FIXED, docs/BUGS: Oops.  Left a fixed bug in eocs/BUGS --
	and the patchlevel number for the first fixed version was wrong.
	All better now.

	* tests/rmdel/basic.sh:
	Make sure that the revision we tried to remove is actually now absent.

	* tests/common/command-names, tests/rmdel/basic.sh, docs/BUGS,
	docs/CREDITS, docs/Platforms, tests/Makefile.am, sf-rmdel.cc:
	Fixed bug in "rmdel" reported by Peter Kjellerstedt.  "rmdel" had
	been deleting all the control lines.

1998-03-10  James Youngman  <jay@gnu.org>

	* docs/FIXED, auxfiles/CSSC.spec, NEWS, configure.in, ChangeLog:
	Miscellaneous updates for 0.06-pl4.

	* tests/Makefile.am:
	Don't export CVS directories into the distribution.

	* admin.cc:
	Absolute pathnames now work; bug reported by Wolfhard Straehle.

	* tests/admin/abspath.sh:
	Test for bug reported by Wolfhard Str\"ahle; admin -n /abs/path/s.foo
	fails because the "admin" code checks for an "s." after the first
	slash when in fact it should check for an "s." after the LAST one.

1998-03-10  James Youngman  <jay@gnu.org>

	* get.cc:
	Fixes from Peter Kjellerstedt.  First, correct output when a direcory
	is specified on the command line (get should always print the name of
	the current s-file).  Second, when multiple files are specified on the
	command line, don't corrupt the requested SID value by updating it
	with an actual SID value from some particular s-file.

	* sccsdiff.sh.in: Support for filenames containing spaces.

	* filediff.cc, filediff.h, sf-delta.cc:
	Better support for files whose names have spaces in them.

1998-03-09  James Youngman  <jay@gnu.org>

	* filediff.h, filediff.cc:
	finish() returns a bool; false if the child process returned nonzero.

	* sf-delta.cc, fileiter.cc:
	Make FileDiff::finish() return a bool; it returns false if pclose()
	indicates that the spawned process returned a nonzero exit status.
	[ REVERSED -- this was a BAD idea, diff returns 1 if the 
	  files differ! ]
	
	* sccsdiff.sh.in:
	Bug report from Richard Polton: IRIX's pr(1) requires a space between
	the "-h" and its argument.

1998-03-04  James Youngman  <jay@gnu.org>

	* tests/common/real-thing: Define TESTING_CSSC if $dir points at
	CSSC programs rather than SCCS programs.

	* tests/binary/auto.sh: Use $TESTING_CSSC to determine of we
	should run those tests that CSSC should pass but (some verisions
	of) SCCS cannot, instead of abusing $expect_fail.

	* docs/BUGS, docs/FIXED: Some entries moved from BUGS to FIXED.

1998-03-01  James Youngman  <jay@gnu.org>

	* Version 0.06alpha-pl3

	* auxfiles/CSSC.spec: 0.06alpha-pl3

	* configure.in, ChangeLog, NEWS:
	Updated the NEWS and ChangeLog files (0.06alpha-pl3)

	* tests/binary/auto.sh, tests/binary/seeking.sh:
	Tests for binary files and the "-i" option of admin.

	* docs/cssc.texi:
	Genuine SCCS doesn't always properly recover from finding out that
	the "-i" file for admin needs encoding, after having read some of it.

	* bodyio.cc, admin.cc:
	When generating a new SCCS file using the "-i" option of admin,
	we no longer need to be able to seek on that file if the input
	turns out to need encoding after we have read some of it.

	* tests/admin/i-option.sh: We no longer do fgetpos() on stdin.

1998-02-28  James Youngman  <jay@gnu.org>

	* xalloc.cc, xalloc.h, Makefile.am:
	Removed xalloc.cc and xalloc.h completely.

	* show-disp.sh:
	Cope correctly with locally removed files when the actual working file
	has been deleted.

	* docs/CREDITS, xalloc.cc, sl-merge.h, stack.h, sid_list.cc,
	sid_list.h, sid.cc, run.cc, seqstate.h, pipe.cc, linebuf.cc,
	linebuf.h, delta-table.cc, l-split.cc, cssc.h: Patches from
	Richard Polton to eliminate our xalloc.h wrapper for operator new,
	as various versions of GCC differ on the exception throwing
	specification -- if we don't have to override the operator new, we
	don't have to get the declaration right :-)

	* admin.cc:
	Turn off buffering on stdin, as a workaround for a bug in glibc 2.0.6.

	* tests/common/test-common: success(): Delete temporary files.

	* tests/admin/i-option.sh, tests/admin/t-option.sh:
	Temporarily mark the "admin -i" tests "expect-fail".

1998-02-24  James Youngman  <jay@gnu.org>

	* auxfiles/CSSC.spec: Updated the version.

	* tests/binary/char255.uue:
	This file contains one character (uuencoded), the ASCII code 255.

1998-02-23  James Youngman  <jay@gnu.org>

	* configure.in: Bumped version to 0.06alpha.pl2

	* ChangeLog.1, ChangeLog: *** empty log message ***

	* tests/binary/eightbit.sh, tests/binary/diff.sh, tests/Makefile.am:
	Run the binary-file tests as part of "make check".  Small fixes to
	those tests.

	* tests/binary/eightbit.sh, bodyio.cc, NEWS:
	Fixes to allow the character whose code is 255 to be properly handled.

	* tests/binary/eightbit.sh: Tests involving 8-bit bodies.

	* tests/binary/s.umsp.uue: SCCS file containing 8-bit characters.

	* docs/BUGS, docs/FIXED, sf-write.cc, sccsfile.cc: Checksum is now
	8-bit-clean, due to richardp@scopic.com and
	Peter.Kjellerstedt@axis.com.

	* testutils/Makefile.am:
	Added seeker.c, which tests for a particular bug in GNU libc 2.0.6.

	* unget.cc, what.cc, rmdel.cc, sact.cc, prt.cc, my-getopt.h,
	prs.cc, get.cc, my-getopt.cc, fileiter.h, delta.cc, fileiter.cc,
	admin.cc, cdc.cc: Renamed class getopt to class CSSC_Options, to
	avoid conflict with getopt(3) on systems such as netbsd-1.2 (as
	installed on melange.gnu.org)

	* testutils/seeker.c:
	Test program which determines if fgetpos() works correctly on stdin.

1998-02-21  James Youngman  <jay@gnu.org>

	* auxfiles/CSSC.spec: Corrected source file name.

	* auxfiles/CSSC.spec: Strip the installed binaries.

	* NEWS: Updated for CSSC-0.06devel-pl1.

	* ChangeLog: *** empty log message ***

	* what.cc, sid_list.cc, unget.cc, sf-prt.cc, sf-prs.cc,
	sf-get2.cc, sf-kw.cc, sf-get.cc, sf-chkid.cc, sf-delta.cc,
	sf-cdc.cc, sccsfile.h, sact.cc, sccsfile.cc, run.cc, run.h,
	rel_list.h, rmdel.cc, prt.cc, prompt.cc, prs.cc, pipe.h, pfile.h,
	pipe.cc, mystring.h, pfile.cc, mystring.cc, my-getopt.h, mylist.h,
	linebuf.h, my-getopt.cc, l-split.cc, linebuf.cc, get.cc, ioerr.h,
	fileiter.h, filepos.h, file.cc, delta.cc, encoding.cc, cssc.h,
	defaults.h, bodyio.h, cdc.cc, bodyio.cc: Updated the year in the
	copyright message for all those files modified so far in 1998.

	* docs/FIXED, docs/TODO, docs/BUGS: Added some bug reports.

	* unget.cc, sact.cc, sf-get.cc, rmdel.cc, prs.cc, prt.cc, my-getopt.cc, my-getopt.h, fileiter.h, get.cc, fileiter.cc, cdc.cc, delta.cc, admin.cc:
	Modified option processing so that "get s.foo -Gbaz" is equivalent
	to "get -Gbaz s.foo".

	* configure.in: Bumped version to 0.06-pl1.

	* docs/cssc.texi: Minor punctuation corrections.

	* tests/prs/keywords.sh: Added test for :PN:.

	* Makefile.am, sf-prs.cc:
	The prs keyword :PN: needs to produce the full pathname of the SCCS
	file, not just the name as specified on the command line.

	* tests/get/optorder.sh: Initial version.

1998-02-20  James Youngman  <jay@gnu.org>

	* sf-write.cc:
	Cope in a more user-friendly way with the prior existence of "x.foo".

	* docs/BUGS:
	Some bug reports from Peter Kjellerstedt <peter.Kjellerstedt@axis.com>
	and Dave Bodenstab <imdave@mcs.net>.

	* tests/get/sep_subst.sh:
	Make sure the substitution happens for the actual gotten delta, not
	the delta to which the current line belongs.

	* tests/get/sep_subst.sh: *** empty log message ***

	* tests/get/sep_subst.sh:
	Make sure that the delta information substituted for each line is the
	information for the delta that we are actually getting, not the delta
	information for the delta which last touched that line.

1998-02-12  James Youngman  <jay@gnu.org>

	* ChangeLog: *** empty log message ***

	* auxfiles/CSSC.spec: Updated RPM spec-file for version 0.06alpha.pl0.

	* ChangeLog: *** empty log message ***

	* docs/cssc.texi, docs/Platforms, docs/TODO, auxfiles/CSSC.spec, sf-write.cc, configure.in, sccsfile.cc, NEWS:
	Binary file support.

	* docs/missing.txt: Binary file support is now present.

	* tests/binary/binbasic.sh, filediff.h, sf-delta.cc, filediff.cc, Makefile.am, configure.in:
	First working binary file support.

1998-02-11  James Youngman  <jay@gnu.org>

	* tests/binary/auto.sh:
	Tests that ensure that admin correctly guesses if the original file is
	binary or not.

	* configure.in: Updated the patchlevel.

	* ChangeLog: *** empty log message ***

	* NEWS: Added the latest news.

	* docs/TODO, docs/BUGS, docs/FIXED:
	Updated the lists of bugs fixed, bugs discovered, and things to investigate.

	* pipe.h, pipe.cc:
	Some tidying.  This code seems problematic for binary files.  Some of
	the commented-out tests in tests/binary/binbasic.sh break it.

	* tests/get/create.sh: Corrected a comment.

	* tests/Makefile.am: Added testing fr binary files.

	* testutils/Makefile.am:
	Added "ekko", a substitute echo(1) for systems where the normal
	echo(1) does not support newline suppression and escape codes.

	* encoding.cc, bodyio.cc: Added support for deltaing encoded files.

	* auxfiles/CSSC.spec: Added the spec-file for RPM.

	* tests/delta/basic.sh:
	Make sure diff returns 0 for identical files and 1 for different ones.

	* bodyio.h, sf-kw.cc, linebuf.cc, sf-delta.cc:
	Support for deltaing encoded files.  We have a problem with the Pipe
	class and large input files (broken pipe) though.

	* file.cc, configure.in:
	Use stat() to detect if the g-file is writable, because if we are
	root, access() tells us yes even if the file is read-only.  This makes
	"get" fail, saying that a wrtable gfile exists.  Using stat() fixes
	this.

1998-02-10  James Youngman  <jay@gnu.org>

	* tests/common/test-common:
	Use testutils/ekko if no suitable echo(1) command exitst on the system
	(we need newline suppression and escape codes).

	* testutils/ekko.c:
	An echo(1) replacement for systems whose echo does not support escape
	codes and newline supression.

	* tests/binary/diff.sh, tests/binary/binbasic.sh:
	New tests for binary file support (get/delta etc).

	* docs/cssc.texi:
	Removed remarks about option processing, since we now do this the SCCS
	way.  Also, added remarks about the non-security of CSSC and advice not to install it setuid-root or use it as root.

1998-02-09  James Youngman  <jay@gnu.org>

	* sccsdiff.sh.in:
	Patch from Maurice O'Donnell <mod@tfn.com>: pass "-e" to sed before
	the sed commands.

	* tests/large/admin.sh, testutils/yes.c, testutils/Makefile.am:
	Solaris has no yes(1) utility so we roll our own.

1998-02-01  James Youngman  <jay@gnu.org>

	* bodyio.h: Prototypes for functions in bodyio.cc.

	* bodyio.cc:
	New file; functions for handling the I/O for the body of files
	(i.e. the bits that might be uuencoded).

	* ChangeLog, docs/TODO: *** empty log message ***

	* scripts/rev-freq.sh:
	Added rev-freq.sh, which generates a histogram of the distributon of
	CVS revision numbers.

	* config.h.in:
	This file is automatically generated by "autoheader".  We should not therefore keep it under CVS control, I think.

	* sccsfile.cc, pfile.cc:
	Added TODO comment for the places where we modify the contents of a
	cssc_linebuf nefariously.

	* Makefile.am:
	Added bodyio.cc and encoding.cc to those modules that now need it.

	* sf-get.cc:
	Added a no_decide flag to sccs_file::get() for the use of delta.  We
	need to be able to obtain the body in encoded form so that we can feed
	it to diff(1).

	* sf-delta.cc:
	cssc_linefuf now has its own check_id_keywords() member, as a
	preparatory step to 8-bit-cleanness.

	* sf-admin.cc:
	If body_insert() informs us that the body turned out to be binary, set
	flags.encoded so that sccs_file::end_update() can call
	rehack_encoded_flag() (in sf-write.cc).

	* sccsfile.h:
	Allow sccs_file::get() to be told not to uudecode an encoded file.  We
	do this in order to obtain the still-encoded text in otder for delta
	to feed it to diff.

	* linebuf.h, linebuf.cc:
	Changes for the beginnings of 8-bit-clean support.  We're not
	8-bit-clean yet though.  The class interface currently precludes it.

	* ioerr.h: Added fwrite_failed().

	* cssc.h, defaults.h:
	CONFIG_LINEBUF_CHUNK_SIZE is only used by linebuf.cc and only really
	needs ever to be changed as a tuning issue, so we #define it in
	linebuf.cc.  For the moment, we keep it low as this ensures that we
	debug the reallocation code.

	* configure.in:
	sf-chkid.cc can use memchr() if available, so detect it.

	* sf-chkid.cc: Rewrote check_id_keywords() for 8-bit-cleanness.

1998-01-25  James Youngman  <jay@gnu.org>

	* testutils/README, testutils/last-time.c, testutils/Makefile.am:
	Added last-time.c to the distribution.

	* tests/get/defsid.sh, tests/get/subst.sh: *** empty log message ***

	* tests/admin/flags.sh: Added checks for the default delta flag.

	* docs/TODO, docs/missing.txt, docs/FIXED: *** empty log message ***

	* sf-write.cc, sf-prs.cc, sf-prt.cc, sf-get2.cc, sf-admin.cc,
	sf-get.cc, sccsfile.h, sccsfile.cc, filepos.h, get.cc,
	encoding.cc, cssc.h, defaults.h, README, admin.cc, Makefile.am,
	NEWS, ChangeLog: Preliminary support for binary files; creation
	(initialisation) only.

1998-01-24  James Youngman  <jay@gnu.org>

	* docs/BUGS:
	Removed a bug report (by jay@gnu.org, me) that actually wasn't a bug.

	* tests/get/defsid.sh: Wrote tests for the default-SID flag.

	* tests/admin/flags.sh:
	Since we now emit a couple of error messages relating to the "-b"
	flag, we need to IGNORE some of the stderr output in the tests,
	otherwise we procude unwarranted test failures.

	* tests/sccsdiff/rap.sh:
	We can't count on the precise form of the output, but we can count on
	the exit status of the command.   Tests amended for compatibility with
	SCCS.  SCCS now passes :-)

	* tests/get/branch.sh:
	Since we now emit a couple of error messages relating to the "-b"
	flag, we need to IGNORE some of the stderr output in the tests,
	otherwise we procude unwarranted test failures.

	* sccsdiff.sh.in:
	SCCS compatibility fix -- When "get" fails, exit with value 1, not 2.

	* get.cc: Added warnings for when -b flag is ignored because the b
	(branch-enable) flag is not set, and for when -b is udes without -e
	(which does not make sense and is otherwise ignored).

	* _chmod.cc:
	Removed double leading underscore for #define used to prevent multiple
	inclusion.

	* sf-get2.cc:
	Fixed assertion failure for "get -e -r1.1.1 s.foo.c" when there is a
	revision 1.1.1.1.   Probably needs tidying (or at least
	re-generalising).

	* sf-chkid.cc:
	Export the function is_keyword_letter() so that our later support for
	binary as well as text files can be simplified.

	* sccsfile.h, sccsfile.cc: Added sccs_file::branches_allowed().

1998-01-20  James Youngman  <jay@gnu.org>

	* docs/cssc.texi:
	Added documentation on when and how branches are made.

1998-01-19  James Youngman  <jay@gnu.org>

	* tests/get/branch.sh:
	Added tests for the correct handling of the "-b" flag.

1998-01-18  James Youngman  <jay@gnu.org>

	* encoding.cc:
	First show at the uuencode/uudecode methods for the support of binary files.

1998-01-17  James Youngman  <jay@gnu.org>

	* unget.cc, what.cc, rmdel.cc, prs.cc, get.cc, my-getopt.cc,
	delta.cc, ChangeLog, admin.cc: Removed all colons from getopt()
	option descriptors.  Instead we replace them with "!", which tells
	our custom version of getopt() to parse the options in the SCCS
	style (arguments must follow keyletters and may not be in the next
	argv[] element).

	* cssc.h: Only include <config.h> if HAVE_CONFIG_H is defined.

	* configure.in: Updated the version number.

	* testutils/user.c:
	Added this file (which is broadly the equivalent of the standard Unix
	command "id").

	* NEWS: Changes for version 0.05 (changes in Dec 19997 and Jan 1998).

	* ChangeLog:
	Updated for version 0.05 (changes in Dec 19997 and Jan 1998).

	* docs/CREDITS:
	Added paragraph for Richard Polton, and de-emphasised the role of
	MySC.

	* docs/FIXED:
	Moved a bug report (99999 cap on nu,bers of lines in SCCS files) from
	BUGS to FIXED after fixing it.

	* docs/BUGS: Moved a bug report to the FIXED file after fixing it.

	* docs/missing.txt:
	Indicate that sccs-val and sccs-comb have not been implemented.

	* docs/TODO: *** empty log message ***

	* docs/TESTING:
	Indicated that Richard Polton wrote the first contributed test suite.

	* docs/Platforms:
	Added indication that CSSC has been tested under Red Hat version 5.0.

1998-01-16  James Youngman  <jay@gnu.org>

	* docs/get-spec.txt:
	Updated to reflect the fact that the makefile no longer has a "make
	gtest" target.

1998-01-15  James Youngman  <jay@gnu.org>

	* docs/cssc.texi: Documented sact, cdc, rmdel, prt.

	* tests/Makefile.am: Added the test-cdc target.

	* tests/common/test-common:
	The expected stdout/stderr arguments are quoted when they are output
	to temporary files, to prevent any wildcard characters iin them being
	expanded!

	* mystring.h: typo in comment

	* fileiter.h:
	Provide using_stdin(), which indicates if stdin is already in use for
	reading a list of files to operate on.

	* prompt.cc:
	The prompt should not be issued if stdin is not a terminal.

	* sf-cdc.cc, cdc.cc: Using the new test cases, fixed many bugs!

	* tests/cdc/4order.sh, tests/cdc/2comment.sh, tests/cdc/3MRs.sh,
	tests/cdc/1general.sh: Wrote a fairly comlete set of test cases
	for 'cdc'.

1998-01-10  James Youngman  <jay@gnu.org>

	* tests/Makefile.am: Added tests for "sccsdiff".

	* tests/sccsdiff/rap.sh:
	Export $get so that "sccsdiff" can call the correct "get" program.

	* Makefile.am: Renamed list.h to mylist.h.

	* sccsfile.h, sid_list.cc, run.cc, run.h, pipe.cc, rel_list.h,
	l-split.cc, pfile.h, fileiter.h, mylist.h, list.h: Renamed
	"list.h" to "mylist.h".