File: ChangeLog

package info (click to toggle)
scrollz 2.1-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,992 kB
  • ctags: 4,728
  • sloc: ansic: 78,409; tcl: 2,866; makefile: 682; sh: 508
file content (4734 lines) | stat: -rw-r--r-- 171,097 bytes parent folder | download | duplicates (9)
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
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
/*
 * ChangeLog: Dealing with the actual changes of code in ircII, leaving
 * UPDATES for actual user changes.
 *
 * Matthew Green, 1993.
 *
 * Copyright(c) 1993-2003
 *
 * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
 *
 * @(#)$eterna: ChangeLog,v 2.328 2002/03/10 09:30:28 mrg Exp $
 */

20020310
Sun Mar 10 20:10:51 EST 2002 - matthew green <mrg@eterna.com.au>
	source/numbers.c:
		password_sendline: server index is in data not line: PR#547.
	source/server.c:
		add_to_server_list: be careful not to clear valid passwords:
		PR#547.

Sun Mar 10 19:14:11 EST 2002 - matthew green <mrg@eterna.com.au>
	configure.in, configure:
		if we don't find gethostbyname in -lresolv, try -lnsl. PR#537.

Sun Mar 10 18:16:23 EST 2002 - matthew green <mrg@eterna.com.au>
	source/notice.c:
		fix a bug from 8 years ago: don't send flooded notices as
		public notices.  fixes PR#549.
	source/edit.c:	
		display sub-second timer information, from flier in PR#554.
	source/numbers.c:
		add a hack to fix PR#552: set the nick on numeric 001 if
		it is wrong.

Sun Mar 10 01:55:57 EST 2002 - matthew green <mrg@eterna.com.au>
	source/hook.c:
		add fuzzy matching so that, eg, "/on send" will show all the
		current hooks starting with "send".  idea from poxaV.

20020309
Sat Mar  9 02:34:44 EST 2002 - matthew green <mrg@eterna.com.au>
	source/ctcp.c, source/dcc.c:	
		add some beep support, if beep_on_level has CTCP or
		DCC.  from dive@endersgame.net.
	Makefile.in:
		regen depends.

Sat Mar  9 02:05:25 EST 2002 - matthew green <mrg@eterna.com.au>
	source/irc.c, source/input.c, source/screen.c:
		add some debug code.  in input_update() don't overwrite
		buffer_pos or str_start on resize.  use set_current_screen(),
		don't set current_screen manually.  clean up
		screen_wserv_message() some.

20020306
Wed Mar  6 21:18:30 EST 2002 - matthew green <mrg@eterna.com.au>
	source/irc.c:
		fix a Debug().
	source/term.c:
		restructure term_resize() slightly.
	source/screen.c:
		add some debugging to create_additional_screen(). clean up unix
		sockets.  default screen size from the master, not 80x24.
		call recalculate_windows after getting a wserv message.
	source/wserv.c:
		remove ircIIpid and related code, obsolete.  include some more
		headers so we find TIOCGWINSZ where it can be.  fix got_sigwinch()
		bugs.  fixed arg checking bugs.  fixed control socket path bug.
		don't perror with our tty.  call got_sigwinch() at startup.

Tue Jan 22 20:24:56 EST 2002 - matthew green <mrg@eterna.com.au>
	source/vars.c:
		set the default IRCHOST variable.  from flier.

Tue Jan 22 13:46:53 EST 2002 - matthew green <mrg@eterna.com.au>
	script/autoop:
		fix from Bernd Eckenfels <ecki@lina.inka.de> for nicks
		ending in backslash.
	help/alias/special:
		fix an example. from David Murn <davey@doa.org> in
		debian PR#113884.

Tue Jan 22 03:05:27 EST 2002 - matthew green <mrg@eterna.com.au>
	source/irc.c:
		only look at wservin for non-main screen's.
	source/screen.c:
		implement screen_wserv_message().
	source/term.c:
		modify term_resize() to cope with wserv messages.

Tue Jan 22 01:15:29 EST 2002 - matthew green <mrg@eterna.com.au>
	Makefile.in:
		link ircII.1 to irc.1, finally.
	include/screen.h, include/struct.h, source/irc.c, source/wserv.c,
	source/screen.c:
		add a new control socket for WSERV sessions, for coping with
		screen size changes.
	include/config.h.dist, include/var.h, include/var.h.proto,
	include/hook.h, include/hook.h.proto, include/keys.h,
	include/keys.h.proto, source/crypto.c, source/vars.c:
		add a new /set decrypt_program. from flier.
	source/icb.c:
		clear the ICB $userhost() when it isn't known.

Wed Jan 16 00:33:45 EST 2002 - matthew green <mrg@eterna.com.au>
	source/crypt.c:
		put a newline between crypto key & text for external programs.
		noticed by flier <flier@scrollz.com>.

Wed Dec 19 00:54:04 EST 2001 - matthew green <mrg@eterna.com.au>
	source/icb.c:
		don't wipe out the current channel in icb_put_action().
	source/server.c:
		rework logic on what server to choose next to avoid skipping
		one accidentally.

Wed Dec 19 00:11:03 EST 2001 - matthew green <mrg@eterna.com.au>
	source/icb.c, source/edit.c, include/icb.h:
		new icb_put_action() function.  make icb_put_public()
		obey window_display.
	include/ircterm.h, include/struct.h, source/alias.c, source/funny.c,
	source/help.c, source/input.c, source/menu.c, source/output.c,
	source/screen.c, source/status.c, source/term.c, source/window.c:
		move lower_mark, upper_mark, input_line, str_start, zone
		and cursor from screen.c into the per-screen struct.  also
		move the static lines & columns variables from input.c and
		term.c here as well.  this handles the input prompt on other
		screen's properly.  move the CO and LI variables from term.c
		into the per-screen struct as well.  call new_window() at
		the top of init_screen() to setup the master screen structure
		earlier.  TODO: have some way of wserv telling the master
		ircii about screen changes.  but at least for now the input
		prompt should work much better.

Tue Dec 18 17:34:06 EST 2001 - matthew green <mrg@eterna.com.au>
	include/irc_std.h:
		add UPP and CPP macros for char ** conversions.

Mon Dec 17 22:17:22 EST 2001 - Joel Yliluoma <bisqwit@iki.fi>
	source/edit.c, source/irc.c, include/edit.h:
		Added support for microsecond resolution in /TIMER.
		Todo: Add named timers some day.
	source/dcc.c:
		Fixed crashing when closing DCC RAW_LISTEN socket.
	help/exec:
		Updated the documentation (found a flaw).

Mon Dec 17 21:55:24 EST 2001 - matthew green <mrg@eterna.com.au>
	source/alias.c, help/alias/functions:
		new $filestat($file) that returns size, uid, gid, mode,
		filename of passed in $file.  inspired by a change in
		the debian bug database.

20011210
Fri Nov 30 10:03:10 EST 2001 - matthew green <mrg@eterna.com.au>
	script/times:
		add a public_other /on as well
	source/irc.c:
		call check_wait_status until it returns < 0.  from bisqwit.

Tue Sep 18 11:37:03 EST 2001 - matthew green <mrg@eterna.com.au>
	source/alias.c:
		fix $mid(0, ...).  from tristan in private email.

Fri Sep  7 02:49:55 EST 2001 - Joel Yliluoma <bisqwit@iki.fi>
	help/exec, source/alias.c, source/exec.c, include/exec.h,
	include/alias.h:
		Added -FILTER switch to /EXEC, and documented it,
		Now external programs can be scripted to select
		recipients on multiple servers.

Fri Sep  7 02:49:52 EST 2001 - Joel Yliluoma <bisqwit@iki.fi>
	source/server.c, include/hook.h, include/hook.h.proto, source/hook.c,
	help/on/raw_send:
		RAW_SEND -list support had vanished from my last
		update, added it back.
	source/screen.c:
		mIRC-colour codes work better now.
		Rewritten the indent code, colour codes
		now work in CONTINUED_LINE too.
	help/on/msg:
		Updated the documentation of /msg.
	source/screen.c, source/edit.c, source/edit.h:
		Allow multiple different target redirection.

20010807
Tue Aug  7 21:08:32 EST 2001 - matthew green <mrg@eterna.com.au>
	source/window.c, source/screen.c:
		set connect_next_as_irc/connect_next_as_icb before calling
		connect_to_server() always.
	source/alias.c, source/crypt.c, source/ctcp.c, source/dcc.c,
	source/edit.c, source/exec.c, source/funny.c, source/help.c,
	source/hook.c, source/icb.c, source/ignore.c, source/ircaux.c,
	source/ircflush.c, source/ircio.c, source/mail.c, source/names.c,
	source/numbers.c, source/parse.c, source/rijndael.c, source/screen.c,
	source/server.c, source/stack.c, source/status.c, source/translat.c,
	source/vars.c, source/whois.c, source/window.c:
		convert sprintf() to snprintf() now that we have that always.

Tue Aug  7 15:42:19 EST 2001 - matthew green <mrg@eterna.com.au>
	help/icb:
		add a link to http://www.icb.net/
	source/output.c:
		avoid core dumps on empty MOTD lines.  from Bernd Eckenfels
		<ecki@lina.inka.de>.
	include/buffer.h, source/output.c, source/hook.c:
		move PUTBUF macros into new buffer.h, and use them in do_hook.
	configure.in, configure:
		look for sendmail in /usr/sbin first.
	source/output.c:
		use snprintf() everywhere here.

Fri Jul 27 01:19:04 EST 2001 - matthew green <mrg@eterna.com.au>
	source/input.c:
		in update_input(), add some sanity checking on lower_mark,
		upper_mark & str_start.
	source/alias.c:
		fix an underrun in $mid().  pointed out by jnelson@epicsol.org
		in PR#536.

20010720
Fri Jul 20 10:49:26 EST 2001 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		in output_line(), don't fwrite() in the CHARSET & COLOUR tag
		cases, unless we have a greater than zero length.

Fri Jul 20 06:57:28 EST 2001 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		in output_line(), don't blindly step through the string to
		decode the colour or charset tags, make sure we don't step
		past the nul.
	source/lastlog.c:
		in bits_to_lastlog_level(), the max length of the levels is
		closer to 120 than 80.. adjust a buffer size.

20010612
Tue Jun 12 23:12:34 EST 2001 - matthew green <mrg@eterna.com.au>
	source/irc.c, source/window.c, source/server.c:
		provide no default quit message anywere.
	source/parse.c:
		fix is_channel() for ICB.

Sun May 20 06:48:11 EST 2001 - Joel Yliluoma <bisqwit@iki.fi>
	include/vars.h.proto, include/vars.h, include/irc.h,
	include/config.h.dist, source/screen.c, source/vars.c:
		applied the japanese patch (from galibert@mines.u-nancy.fr),
		which also fixes the ^V/^B/^_/color handling over broken lines.
	source/dcc.c, source/irc.c:
		dcc working with masquerades (new -H switch; IPv4 only)
	source/notice.c, source/server.c:
		fixed -q again (prevent also .ircquick)
	source/alias.c, help/alias/functions:
		added new functions: SHELLFIX, URLENCODE functions.
	Makefile.in:
		remove rijndael-alg-ref.c, rijndael-api-ref.c and config.h on
		make distclean.

Mon Feb 12 23:53:22 EST 2001 - matthew green <mrg@eterna.com.au>
	include/server.h, source/funny.c, source/status.c:
		add usermode `z' support.
	doc/ircII.1: document the ircII.servers & ircII.motd files.

Mon Feb 12 23:42:30 EST 2001 - matthew green <mrg@eterna.com.au>
	source/snprintf.c, Makefile.in, acconfig.h, configure, configure.in:
		look for snprintf() and vsnprintf() and provide replacements if
		they do not exist.  nothing uses this (yet).

Tue Jan  2 22:26:14 EST 2001 - matthew green <mrg@eterna.com.au>
	source/server.c:
		don't call get_connected() but just call window_set_server() for
		the relevant windows, if we fail to connect.  fixes PR#227.

Tue Jan  2 17:09:21 EST 2001 - matthew green <mrg@eterna.com.au>
	help/alias/functions, include/ignore.h, include/notify.h,
	source/alias.c, source/ignore.c, source/notify.c:
		4 new functions, inspired by PR#66:
		  IGNORED(NICK TYPE)    Returns "ignored", "highlighted", "dont"
					or "0", depending on what ignore action
					will be applied to this NICK and TYPE of
					ignorance.  TYPE must be one of MSGS,
					PUBLIC, WALLS, WALLOPS, INVITES,
					NOTICES, NOTES, CTCP or CRAP.
		  NOTIFY(TYPE)          Returns either the TYPE "here", "gone"
					or "all" lists, default being "here".
		  SCREENS()             Returns a list of the current screen.
		  WINDOWS()             Returns a list of the current windows.
	inspired by PR#66.
	include/vars.h.proto, include/vars.h, include/config.h.dist,
	source/output.c, source/vars.c, help/set/star_prefix:
		new /set star_prefix variable that replaces the hard coded 
		"*** " prefix from many messages, and replaces it with the
		expanded value of this variable, so that /set star_prefix $Z
		works.  inspired by PR#48.
	source/numbers.c:
		be saner in reset_nickname().  deal with various bugs here.
		inspired by PR#287.

Tue Jan  2 11:50:23 EST 2001 - matthew green <mrg@eterna.com.au>
	include/vars.h.proto, include/vars.h, include/config.h.dist,
	include/names.h, source/alias.c, source/names.c, source/status.c,
	source/vars.c, help/set/status_voice:
		add new /set status_voice and %v status_format modifier,
		part of PR#11.

20010101
Mon Jan  1 22:07:31 EST 2001 - matthew green <mrg@eterna.com.au>
	source/notice.c, irc.c:
		load "global" before .ircrc, when using -b.  fixes PR#498.
	source/window.c:
		avoid a core dump when re-binding a channel.  fixes PR#497.
	script/listidle, help/load/listidle:
		new listidle script from tristan in PR#466.
	source/numbers.c:
		re-do numeric 437 processing.  fixes PR#500.
	source/edit.c:
		handle /me for ICB.  fixes PR#492.
	source/whois.c:
		kill some debug messages.
	source/term.c:
		kill some "#ifdef mips" lossage.

Mon Jan  1 12:34:26 EST 2001 - matthew green <mrg@eterna.com.au>
	acconfig.h, configure, configure.in, include/defs.h.in,
	include/ircterm.h, source/term.c:
		check for fwrite/fputc and only redefine them if they are
		not already present (and if "mips", like it was).  make the
		fake macros more robust and correct.

20001231
Tue Dec 19 16:25:55 EST 2000 - matthew green <mrg@eterna.com.au>
	source/menu.c:
		fix a core dump, noted by "David O'Shea"
		<s341595@student.uq.edu.au> in PR#503.
	source/term.c:
		give cygwin a 2K buffer.

Mon Dec  4 21:34:19 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		apply patch from <jnelson@acronet.net> to avoid sending
		"NAMES " to the server in cases it was not meant. PR#501.

20001120
Mon Nov 20 00:07:40 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		in send_text(), don't do dcc chat/talk or command expansion
		if the target is actually the current channel.  stops things
		like groups named `/quit' from being obnoxious.

Mon Nov  6 02:00:46 EST 2000 - matthew green <mrg@eterna.com.au>
	configure, configure.in:
		add a `--with-efence' option to include the Electric Fence
		malloc debugging library.
	include/ircterm.h:
		support ncurses tputs(3) variant.

Wed Oct 25 08:35:55 EST 2000 - matthew green <mrg@eterna.com.au>
	source/output.c:
		s/buf/putbuf/ in !stdarh.h code. PR#496 from Andreas Ley
		<andy@rz.uni-karlsruhe.de>.

20001024
Tue Oct 24 12:52:46 EST 2000 - matthew green <mrg@eterna.com.au>
	source/names.c:
		in mark_not_connected(), clear the channel status.  fixes
		PR#495.

Fri Oct 13 22:18:52 EST 2000 - matthew green <mrg@eterna.com.au>
	include/crypt.h, source/cast.c, source/crypt.c, source/rijndael.c,
	source/sed.c:
		toss the generic CBC code for now.  make cast.c like it was,
		and use the built-in rijndael CBC code.  generate a 32-byte
		IV for the start of the connection.  disable the rijndael
		code while it doesn't work.
	source/irc.c:
		call srandom() when we start.

20001009
Mon Oct  9 02:13:16 EST 2000 - matthew green <mrg@eterna.com.au>
	Makefile.in:
		regenerate dependancies

Mon Oct  9 02:04:32 EST 2000 - matthew green <mrg@eterna.com.au>
	source/rijndael.c, source/cast.c, source/crypt.c, source/sed.c,
	include/crypt.h:
		further crypto handling simplification.  complete the rijndael
		cipher (using the new generic CBC-mode handling code).

Sun Oct  8 08:47:31 EST 2000 - matthew green <mrg@eterna.com.au>
	source/rijndael/:
		add Rijndael reference source 2.1.
	Makefile.in:
		update for Rijndael support.  clean up some things.
	configure.in, configure:
		remove --with-cast.  crypto is always there now.
	include/crypt.h, source/ctcp.c:
		simplify ctcp crypto handling.

20001007
Sat Oct  7 21:58:27 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c, source/alias.c, source/irc.c, include/irc.h:
		remove internal_version, and make irc_version be this YYYYMMDD
		string instead.

Sat Oct  7 16:36:19 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c, source/alias.c:
		PR#482 & #483 from maximum entropy <entropy@zippy.bernstein.com>
		fix off-by-one error calling getcwd.
	source/irc.c:
		fix some typos
	source/screen.c:
		more robust mIRC code from PR#480 from
		<wiz@danbala.tuwien.ac.at>.
	source/ircaux.c:
		pr#488 from ecki@lina.inka.de: fix off-by-one overflow in
		strmcpy().
	configure.in, configure:
		Reimplemented gethostbyname() check from Arkadiusz Miskiewicz
		<misiek@pld.org.pl> in PR#486.

Tue Sep 19 02:45:35 EST 2000 - matthew green <mrg@eterna.com.au>
	doc/ircII.1, include/irc.h, source/irc.c, source/term.c:
		add new -t command line argument to make ircII not use the
		termcap "ti" and "te" sequences.  fixes PR#484.  add -T to
		turn them on (if present) for completeness.

4.4Z
Thu Aug 31 22:19:55 EST 2000 - matthew green <mrg@eterna.com.au>
	source/window.c:
		fix "/window new move -3".  patch from
		<jnelson@epicsol.org> in PR#477.
	source/flood.c:	
		apply forcer's hack-patch to work around the problem
		described in PR#471.
	source/names.c:
		avoid using CHAN_LIMBO as a bit flag, cuz it isn't.  part
		of PR#472.

Thu Aug 10 10:50:23 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		allocate enough space in the ICB /whois for the string to
		be written.  found by moof/libefence.

4.4Y
Sat Aug  5 22:19:20 EST 2000 - matthew green <mrg@eterna.com.au>
	source/window.c, source/server.c, include/window.h:
		in window_get_connected(), don't kill the current window's
		version of current_channel.  if that is going to happen,
		window_set_server() will do it.  fixes my PR#442.

Sat Aug  5 15:12:39 EST 2000 - matthew green <mrg@eterna.com.au>
	source/window.c, help/window/nostatus:
		implement /window nostatus to entirely disable the
		status line.  can be confusing with mulitle visible windows
		with nostatus!  inspired by PR#455.

Sat Aug  5 14:36:58 EST 2000 - matthew green <mrg@eterna.com.au>
	source/ircaux.c:
		set "err" in all cases, so we know when we have actually
		succeeded.  fixes connections to the local machine.

Fri Aug  4 17:42:13 EST 2000 - matthew green <mrg@eterna.com.au>
	include/config.h.dist, include/vars.h, include/vars.h.proto,
	source/names.c, source/vars.c:
		add /set hide_channel_keys {on|off}, inspired by PR#467
		(whose patch was based on over 5 year old code).

4.4X
Fri Aug  4 12:18:10 EST 2000 - matthew green <mrg@eterna.com.au>
	source/irc.c:
		use a local static "buffer", fixes lossage.

4.4V
Wed Aug  2 18:41:22 EST 2000 - matthew green <mrg@eterna.com.au>
	source/icb.c:
		don't ignore empty fields, fill them in as normal.

Wed Jul 19 03:12:37 EST 2000 - matthew green <mrg@eterna.com.au>
	include/irc.h, source/alias.c, source/ctcp.c, source/edit.c,
	source/exec.c, source/help.c, source/history.c, source/ignore.c,
	source/irc.c, source/lastlog.c, source/mail.c, source/menu.c,
	source/names.c, source/notice.c, source/numbers.c, source/screen.c,
	source/server.c, source/translat.c, source/window.c:
		remove all uses of the global buffer, and delete it.

Sun Jul 16 14:23:48 EST 2000 - matthew green <mrg@eterna.com.au>
	source/names.c:
		don't use the global "buffer".

Thu Jul 13 13:15:08 EST 2000 - matthew green <mrg@eterna.com.au>
	help/on/icb_status, help/on/icb_error:
		document the recently added icb_status and icb_error hooks.
	source/edit.c:
		fix `/join -' dumping core, PR#458.

Sun Jun 11 17:39:05 EST 2000 - matthew green <mrg@eterna.com.au>
	source/icb.c:
		fix my PR#444: moderator sign off message wrongly parsed.

Sun Jun 11 17:17:21 EST 2000 - matthew green <mrg@eterna.com.au>
	include/config.h.dist, include/vars.h, include/vars.h.prot,
	source/irc.c, source/screen.c, source/vars.c
	help/set/foreground_colour, help/set/background_colour:
		add two new /set variables: foreground_colour and
		background_colour, and use these.  add new -r switch to
		reverse the default values.  from forcer@mindless.com,
		and is the best fix for his PR#446.
	help/set/colour:
		document this recent variable.

Sun Jun 11 17:03:16 EST 2000 - matthew green <mrg@eterna.com.au>
	source/term.c, include/ircterm.h:
		use termcap 'ti' and 'te' sequences when starting and leaving
		(or when suspending).  should fix colour reset problems as
		seen in PR#429.
	include/config.h.lynx:
		kill.

Mon May 29 00:35:44 EST 2000 - matthew green <mrg@eterna.com.au>
	help/set/xterm_geomoptstr, help/set/xterm_options, help/set/xterm_path,
	include/config.h.lynx, include/config.h.dist, include/vars.h.proto,
	source/screen.c, source/vars.c, include/vars.h:
		add new /set xterm_geomoptstr variable to change the "-geom"
		option to the xterm program, necessary for, eg, rvxt. fixes
		PR#449 from <jmf@digitalexp.com>.
	include/struct.h, source/names.c:
		remove the 'cached' mode string.  it was getting wrong with
		channel keys and it seems useless now anyway.

4.4U
Thu May 11 13:04:07 EST 2000 - matthew green <mrg@eterna.com.au>
	source/server.c:
		make /disconnect * work.
	source/dcc.c, source/newio.c, source/server.c, source/screen.c,
	source/window.c:
		rename refresh and timeout functions/variables as these
		are defined in most <curses.h> files.
	source/translat.c:
		fopen() likes "r" not "R".
	source/notify.c:
		in do_notify(), don't change from_server and leave it
		changed if we have an ICB server for primary.
	source/edit.c:
		don't send IRC PRIVMSG to ICB servers.
	help/disconnect:
		document this command.

Sat Apr 15 04:57:21 PDT 2000 - matthew green <mrg@eterna.com.au>
	help/lastlog:
		document /lastlog <pattern> <count> <start> support.
	source/edit.c:
		fix ICB /topic.  apply patch from Roman Gollent
		<roman@babe.pobox.com> to make /topic * work.

Tue Apr 11 00:24:12 EST 2000 - matthew green <mrg@eterna.com.au>
	source/names.c:
		fix a problem found by forcer: in remove_channel(), if we can
		work out the refnum of the window this channel is on, pass it
		to is_current_channel(), rather than always passing -1.
	source/output.c:
		do not use a static buffer for vasprintf(). put_it() and
		friends are sometimes re-entrant.  picked up by forcer and
		electric fence.
	configure.in, configure:
		explicitly test for struct sockaddr's "sa_len" member.
	source/alias.c:
		fix off-by-one malloc error.

4.4T
Mon Apr  3 17:43:02 EST 2000 - matthew green <mrg@eterna.com.au>
	Makefile.in, source/irc.c, source/ircaux.c, source/ircio.c,
	source/file.c:
		remove dated, unused and definately insecure PRIV_PORT code.
	include/irc_std.h:
		introduce my_str{len,cpy,ncpy}() macros that (char *)ifiy
		the correct arguments, to avoid warnings from u_char *'s.
	source/alias.c:
		use my_str{len,cpy,ncpy}().
	include/config.h.dist, include/config.h.lynx:
		enable EIGHT_BIT_CHARACTERS by default.

Sat Apr  1 18:10:33 EST 2000 - matthew green <mrg@eterna.com.au>
	include/count.l, include/hook.h, include/hook.h.proto, include/keys.h,
	include/keys.h.proto, include/vars.h, include/vars.h.proto:
		make count preserve $Id strings that are in .proto files, and
		add additional $Id strings for the generated .h files.

Sat Apr  1 17:31:35 EST 2000 - matthew green <mrg@eterna.com.au>
	configure, configure.in, include/alias.h, include/crypt.h,
	include/ctcp.h, include/dcc.h, include/edit.h, include/exec.h,
	include/flood.h, include/funny.h, include/help.h, include/history.h,
	include/hold.h, include/hook.h, include/hook.h.proto, include/icb.h,
	include/if.h, include/ignore.h, include/input.h, include/irc.h,
	include/ircaux.h, include/ircterm.h, include/keys.h,
	include/keys.h.proto, include/lastlog.h, include/list.h, include/mail.h,
	include/menu.h, include/names.h, include/notify.h, include/numbers.h,
	include/output.h, include/parse.h, include/queue.h, include/screen.h,
	include/server.h, include/stack.h, include/status.h, include/struct.h,
	include/translat.h, include/vars.h, include/vars.h.proto,
	include/whois.h, include/window.h, source/alias.c, source/cast.c,
	source/crypt.c, source/ctcp.c, source/dcc.c, source/edit.c,
	source/empty_metakeys.inc, source/exec.c, source/flood.c,
	source/funny.c, source/help.c, source/history.c, source/hold.c,
	source/hook.c, source/icb.c, source/if.c, source/ignore.c,
	source/input.c, source/irc.c, source/ircaux.c, source/keys.c,
	source/lastlog.c, source/list.c, source/mail.c, source/menu.c,
	source/names.c, source/notice.c, source/notify.c, source/numbers.c,
	source/output.c, source/parse.c, source/queue.c, source/reg.c,
	source/screen.c, source/sed.c, source/server.c, source/stack.c,
	source/status.c, source/term.c, source/translat.c, source/vars.c,
	source/whois.c, source/window.c:
		convert from char to u_char for everything that can be.

Fri Mar 31 23:49:42 EST 2000 - matthew green <mrg@eterna.com.au>
	Makefile.in:
		remove $DESTDIR from exec_prefix; it is already in the prefix.

Tui Mar 28 10:31:13 EST 2000 - glen mccready <gkm@pobox.com>
	source/server.c:
		clean up server handling a bit.  fix false "Connected" message.
		should consider removing server_list[].connected in favor of a
		flag and add more status tracking flags.

Sun Mar 26 02:37:03 EST 2000 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		when scrolling backwards, check how many lines in the
		lastlog we have and then make sure we don't scroll
		beyond that.  fixes PR#430.  rewrite a recent fix to
		part of the split_up_window() function.
	source/server.c:
		in /server -delete, call close_server().

Thu Mar 23 17:13:51 EST 2000 - matthew green <mrg@eterna.com.au>
	help/exec, help/set/exec_protection:
		add a reference to /set exec_protection in /help exec, noted
		by matthewa@materna.nl in PR#431.
	script/columns, script/times:
		add an evil hack to let these two be loaded together.  fixes
		PR#425 from Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>.

Tue Mar 21 11:08:26 EST 2000 - matthew green <mrg@eterna.com.au>
	configure.in, configure:
		a fix IPv4-only nodes that have getaddrinfo(), from
		Jun-ichiro itojun Hagino <itojun@iijlab.net>.

4.4S
Fri Mar 17 15:07:25 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		properly fix the terrible bug in send_text().

4.4R
Fri Mar 17 02:19:20 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		fix a terrible bug in send_text().

4.4Q
Thu Mar 16 23:58:40 EST 2000 - matthew green <mrg@eterna.com.au>
	source/ctcp.c:
		avoid using %ld as an argument to send_ctcp_reply().

Thu Mar 16 22:55:12 EST 2000 - matthew green <mrg@eterna.com.au>
	configure, configure.in, Makefile.in:
		use a find & chmod chain to ensure the permissions
		of the installed help files is correct.

Sun Mar  5 08:04:22 EET 2000 - Joel Yliluoma <bisqwit@iki.fi>
	configure, configure.in, acconfig.h:
		add $crypt() function.
		source/screen.c:
		fixed the mirc colour support again.
		(something had broken it)
	help/cat:
		add help file for this.

Wed Feb 23 00:06:05 EET 2000 - Joel Yliluoma <bisqwit@iki.fi>
	source/alias.c, help/alias/functions:
		added crypt() support and help files.

Thu Mar 16 12:36:40 EST 2000 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		deal with /join, /invite, /who, /nick and /topic again.

Wed Mar 15 14:18:30 EST 2000 - glen mccready <gkm@pobox.com>
	include/ircterm.h, source/term.c, source/irc.c, source/screen.c:
		streamline term.c fp handling.  use term_flush()
		where appropriate rather than calling fflush()
		directly.  there's a div by zero work around, too.

4.4P
Wed Mar 15 17:51:07 EST 2000 - matthew green <mrg@eterna.com.au>
	source/screen.c, source/irc.c, include/irc.h:
		in add_to_window(), don't add something to the end
		of a string, but allocate our own buffer to do this,
		and then add the ALL_OFF char.  eliminte the char []
		`global_all_off'.  fixes off-by-one errors caused
		by vasprintf() support for output.c.
	source/irc.c:
		fix PR#428: /set -irchost dumps core.

Sat Mar 11 17:31:43 EST 2000 - matthew green <mrg@eterna.com.au>
	help/encrypt, source/crypt.c:
		unless the new -showkeys option is specified to the
		/encrypt command, do not show the keys for each user.

Sat Mar 11 15:33:06 EST 2000 - matthew green <mrg@eterna.com.au>
	help/set/lastlog_level, include/lastlog.h, script/screen,
	source/lastlog.c, source/output.c:
		add lastlog level HELP, that is where all HELP
		messages are sent to.

Fri Mar  3 20:38:59 EST 2000 - matthew green <mrg@eterna.com.au>
	include/status.h source/alias.c source/irc.c source/status.c:
		change update_clock() to take a buffer and a length to
		write a string to, rather than using a static buffer.
	source/screen.c:
		in rite(), do not increase new_scrolled_lines if we
		are redrawing.
	source/screen.c:
		in split_up_lines(), if we get a string that seems to
		be empty, don't pass it to malloc_strcpy() because we
		don't have a handle on the owner of the string.  in
		this case, we copy " " and then free it later.

Fri Mar  3 12:24:59 EST 2000 - matthew green <mrg@eterna.com.au>
	configure, configure.in, include/crypt.h, include/defs.h.in,
	include/edit.h, include/irc.h, include/ircterm.h, source/alias.c,
	source/cast.c, source/crypt.c, source/edit.c, source/icb.c,
	source/irc.c, source/ircsig.c, source/log.c, source/notify.c,
	source/parse.c, source/screen.c, source/sed.c, source/status.c:
		remove solaris warnings.  part of this changed meant going
		to more unsigned char uses in alias.c.  ideally, we should
		use unsigned chars everywhere but calling stdlib functions
		will cause warnings.
	source/help.c:
		manage the opening and closing of FILE *help_fp in a much
		saner way to stop it ever being used in an unstable fashion.

Fri Mar  3 02:29:06 EST 2000 - matthew green <mrg@eterna.com.au>
	help/bind/meta5_character, help/bind/meta6_character, help/bind/keys,
	help/bind/meta7_character, help/bind/meta8_character, include/edit.h,
	include/keys.h, include/keys.h.proto, include/struct.h, source/edit.c,
	source/empty_metakeys.inc, source/keys.c, source/screen.c:
		add meta[5678]_character /bindings.  we split the
		initialiser for meta[35678] out into empty_makekeys.inc
		because we use it 5 times.

Fri Mar  3 00:59:01 EST 2000 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		in redraw_window(), if we have scrolled lines, lets
		redraw all of the displayed lines, rather than skipping
		the last line.  in scrollback_end(), reset
		new_scrolled_lines to 0 as well.  in scrollback_start(),
		call a series of next_line_back() calls to find out how
		many (output) lines there are in the last log (as opposed
		to individual lastlog entries, which may span several
		output lines), so that scrollback_start() can actually
		work correctly now.

4.4O
Thu Mar  2 23:15:18 EST 2000 - matthew green <mrg@eterna.com.au>
	source/debug.c:
		fflush(stderr); at the end of debug() -- just to make
		sure debug messages get written out in a timely fashion.
	include/screen.h, source/screen.c:
		make redraw_window() static to screen.c; it was the only
		user anyway.
	source/screen.c:
		modify redraw_window() to take an additional "backscroll"
		parameter and pass true in this parameter when calling the
		function from back/forward scrolling functions, and false
		elsewhere.  remove the "int skip" parameter from the
		next_line_back() function.  it causes the function to skip
		lines for what appears to be no good reason, and this is,
		in addition to the above change to redraw_window() have
		cause the majority of scroll bugs.

Thu Mar  2 00:17:18 EST 2000 - matthew green <mrg@eterna.com.au>
	source/server.c:
		add support for [server]:port addreses, including
		[IP:v6] style ones, so that one can use IPv6 addresses
		as well as ports, nicks, etc.
	include/irc.h, include/vars.h.proto, include/vars.h, source/irc.c,
	source/vars.c:
		implement /set irchost; from <tristan@ethereal.net>
	help/set/irchost:
		add documentation for above.
	include/config.h.dist, include/config.h.lynx, include/vars.h,
	include/vars.h.proto, source/numbers.c, source/vars.c,
	help/set/no_ask_nickname:
		implement /set no_ask_password on; stops reset_nickname()
		in numbers.c from prompting the user for a password, so
		that a script can take care of the error instead.
	include/output.h, include/status.h, source/irc.c,
	source/output.c, source/screen.c, source/status.c:
		convert all signal handlers (except for coredump()) to
		the `set a variable, return, and let someone else perform
		the task we want' style.  ie, don't be unsafe in signal
		handlers and call things like stdio and malloc!
	source/icb.c:
		handle many /ignore requests.

Wed Mar  1 21:17:19 EST 2000 - matthew green <mrg@eterna.com.au>
	Makefile.in, configure, configure.in:
		ignore CVS dirs when installing things more
		carefully.  support `$DESTDIR' in Makefile.in
		(this from Arkadiusz Miskiewicz <misiek@pld.org.pl>),
		and use @libdir@ and @mandir@ rather than using
		${prefix}/foo for these.
	source/ircaux.c:
		use index(foo, ' '); over sindex(foo, " "); from
		Mark Mielke <mark@mielke.cc>.
	source/edit.c, help/exec.c:
		fix typos; from Mark Mielke <mark@mielke.cc>.
	source/status.c:
		remove the uses of the global "buffer" from status.c.
		inspired by a PR from Mark Mielke <mark@mielke.cc>
	source/edit.c, source/screen.c:
		make sure we translate everything, even in dumb mode,
		everywhere.  from: Alexander Trump <assa@assa.tlt.ru>.
	source/edit.c:
		fix /set auto_unmark_away variable; it has been broken
		for at least 5 years.  fixes PR#377.
	source/alias.c, help/alias/functions:
		implement wincols() and winrows() functions that return
		the number of columns and rows (respectively) in the
		current window, or -1.
	source/wserv.c, configure.in, configure, acconfig.h:
		fix AIX support.  mostly from Graovac
		<ddavid@lamar.ColoState.EDU>.
	source/server.c, source/window.c:
		server_itsname() return "<None>" for no server name.
	source/edit.c:
		yell() not say() when we don't load an executable file.
	script/2.8script:
		remove some damage.
	source/names.c:
		avoid adding channel "0" to the channel list. PR#277
	source/exec.c:
		/exec output is level crap by default; make it so.
	source/dcc.c:
		if a /dcc get fails because we couldn't create the
		local file, _don't_ delete the offer from our list!
	source/queue.c:
		for `/queue' when no queue commands have ever been
		run, we used to dump core from calling toupper("Top").
		call toupper() on the copied string rather than on
		the passed in string.h, and then copying.  PR#403
	source/names.c, include/names.h:
		add support for +c (colourless) and +R (registered
		users only) channel modes.  from jim efaw in PR#420.
	source/names.c:
		add support to properly join !channels.
	source/crypt.c:
		fix /encrypt -sed when cast support also enabled.
		from Jim Efaw <jimefaw@eggroll.com>.

Tue Feb 29 19:52:50 EST 2000 - matthew green <mrg@eterna.com.au>
	acconfig.h, configure, configure.in, include/defs.h.in,
	source/output.c:
		add checks for vasprintf(3), vsnprintf(3) and
		snprintf(3) (the latter not used in the ircII
		yet?).  rework the screen output routines (yell(),
		say(), put_it() and help_put_it() to use vasprintf()
		if it exists, then fallback vsnprintf() and finally
		back to vsprintf() like the old code.  this should
		allow lines with extremely large output (such as
		many-kilobyte aliases) to be displayed correctly
		(vasprintf()) or at least truncated (vsnprintf())
		and not dumping core.

Mon Feb 28 12:09:24 EST 2000 - matthew green <mrg@eterna.com.au>
	include/alias.h, source/alias.c, source/irc.c:
		malloc_str*() the space for char *command_line,
		rather than having a buffer in bss.
	include/ircaux.h, source/ircaux.c:
		add a malloc_strcat_ue() that unescapes backslashes
		(like strmcat_ue()).
	source/alias.c:
		modify expander_addition() and alias_special_char()
		to take a malloc() maintained buffer, rather than a
		BIG_BUFFER_SIZE one, by replacing str*() calls with
		malloc_str*() calls in many places.  remove a hack
		that would try to stop core dumps when this buffer
		became overflowed that now should never happen.
		modify alias_expand() to use the changed functions
		from above, including malloc_strcat_ue().  also,
		remove BIG_BUFFER_SIZE from the rest of alias.c:
		alias_currdir(), function_strip(), function_encode(),
		function_decode(), function_dcclist(), 
		function_chatpeers(), function_chanusers(),
		note: function_pid(), function_ppid() and
		function_idle() all use the global "buffer" still.
	source/edit.c:
		remove a dependancy on BIG_BUFFER_SIZE in parse_line().
		note all the uses of BIG_BUFFER_SIZE and the global
		"buffer".  yes, it is time to get rid of the global
		buffer and the BIG_BUFFER_SIZE define.


Sun Feb 27 18:46:01 EST 2000 - matthew green <mrg@eterna.com.au>
	source/window.c, include/window.h:
		add a 'Win_Trav' that we use in window_traverse()
		now, as our status of where we are in traversal.
		note that we have to set:
			Win_Trav stuff;
			stuff.flag = 1;
		before calling window_traverse initially.
	include/vars.h.proto, include/vars.h, source/screen.c,
	source/vars.c, help/set/xterm_path:
		add /set xterm_path <path>

Sun Feb 27 18:02:08 EST 2000 - matthew green <mrg@eterna.com.au>
	source/window.c:
		fix window_get_connected() to note the nick to use
		once a server is found, if the nick isn't already
		specified.  fixes problem with multiple server:port
		combinations with different nicks.

4.4N
Sun Feb 27 12:36:35 EST 2000 - matthew green <mrg@eterna.com.au>
	include/window.h, source/server.c, source/window.c:
		rename set_window_server() to window_set_server().
	source/window.c, source/server,c. source/notice.c,
	source/irc.c, source/numbers.c, include/server.h:
		retire WIN_OLDCONN flag.  this means we can revert
		get_connected() to take only one argument.  in
		window_set_server(), always transfer the channels
		to the new server if WIN_TRANSFER, because
		WIN_OLDCONN is now gone.

Sat Feb 26 13:41:31 EST 2000 - matthew green <mrg@eterna.com.au>
	script/icb, source/edit.c:
		deal with /join, /invite, /who, /nick and /topic in
		the script.
	source/parse.c:
		give all static functions a `p_' prefix like about
		1/2 of them already have.

Sun Feb 13 03:00:37 EST 2000 - matthew green <mrg@eterna.com.au>
	include/hook.h, include/hook.h.proto, source/hook.c,
	source/window.c, help/on/window_swap:
		add new hook WINDOW_SWAP that is triggered when ever
		a window is swapped.
	include/struct.h, source/edit.c, source/names.c, source/screen.c,
	source/window.c:
		revert /window bind to original behavior: property of
		a window, not a channel.

Tue Feb  1 16:40:18 EST 2000 - matthew green <mrg@eterna.com.au>
	source/icb.c:
		deal with the fact that ICB groups can be renamed.

Mon Jan 31 15:01:41 EST 2000 - matthew green <mrg@eterna.com.au>
	source/icb.c, source/edit.c:
		change icb_put_msg2() to honour window_dislay, and
		using this implement /whois for ICB mode (as
		"/m server whereis").

4.4M
Fri Jan  7 09:55:29 EST 2000 - matthew green <mrg@eterna.com.au>
	acconfig.h, configure, configure.in, include/defs.h.in,
	source/irc.c, source/ircaux.c, source/server.c:
		add IPv6 support from Arkadiusz Miskiewicz
		<misiek@misiek.eu.org> as given in PR#402.
	source/icb.c:
		make SHOW_CHANNEL_NAMES work on ICB.

Tue Dec 21 02:38:00 EET 1999 - Joel Yliluoma <bisqwit@iki.fi>
	source/edit.c, help/cat:
		added /CAT command to easify avoiding security
		risks when otherwise /exec cat would be used.
		/CAT adds a line to specified file (to end).

Sat Dec 18 22:32:18 EST 1999 - matthew green <mrg@eterna.com.au>
	help/icb:
		fix some typoes from <kleink@serpens.swb.de> in
		PR#395.
	Makefile.in:
		regenerate dependancies after adding ircflush.c
		to the list of them.  this fixes PR#396.
	configure.in:
		s/PREFIX/prefix/ so that it it works.
	ircbug.in:
		automatically determine how to suppress newlines,
		fixing PR#398.
	source/edit.c:
		re-set from_level correctly in my_echo; fixes PR#387,
		#399 and #412 (patch supplied in this one from Hans
		Hasselaar <hansh@ircnet.dk>).

Thu Dec  9 21:42:41 EST 1999 - matthew green <mrg@eterna.com.au>
	script/default:
		new script that is a suggested default `.ircrc'
		for people to use.
	script/times:
		new script that adds times to msgs, dcc and channel
		traffic.
	script/otherstatus:
		new script to let you have a bold or underlined
		status bar.
	all the above are derived from parts of mrg's setup.

Thu Dec  9 15:08:09 EST 1999 - matthew green <mrg@eterna.com.au>
	soruce/icb.c:
		one can now send long lines and have them broken
		up correctly. 

Sat Oct 23 06:10:21 EEST 1999 - Joel Yliluoma <bisqwit@iki.fi>
        source/screen.c
                fixed the mirc colour support, did not work correctly.
        help/set/make_notice_msg
                described MAKE_NOTICE_MSG

Wed Oct 20 21:11:56 EST 1999 - matthew green <mrg@eterna.com.au>
	help/load/screen, help/load/tabkey, scripts/tabkey,
	scripts/screen:
		move default ^X^X binding to `screen' script, and
		make it swap scripts, like screen(1) does.

Wed Sep  8 03:07:24 EEST 1999 - Joel Yliluoma <bisqwit@iki.fi>
        source/parse.c, source/vars.c, include/vars.h.proto
                added boolean set MAKE_NOTICE_MSG
                
Sat Sep  4 19:03:22 EEST 1999 - Joel Yliluoma <bisqwit@iki.fi>
        help/alias/functions
                described the hasvoice() and dcclist() functions.
                described the chatpeers() function.
        source/alias.c
                added chatpeers() function.

Sun Jul 25 05:50:15 EEST 1999 - Joel Yliluoma <bisqwit@iki.fi>
        source/alias.c, source/names.c, source/irc.c
                added .ircquick file support.
                added hasvoice() and dcclist() functions.

4.4L
Mon Aug 23 21:43:51 EST 1999 - matthew green <mrg@eterna.com.au>
	configure.in, configure, source/ircaux.c, include/config.h.dist,
	include/config.h.lynx, include/defs.h.in:
		fix up ZCAT/ZSUFFIX auto-finding support to work and
		be used.
	Makefile.in:
		set help & translation paths properly when building
		both help.c and translation.c.

Mon Aug 23 19:52:26 EST 1999 - matthew green <mrg@eterna.com.au>
	configure.in, configure, acconfig.h, include/defs.h.in:
		add SOCKS version 5 support (from agc@netbsd.org).
	Makefile.in:
		fix some more $(srcdir) lossage with autoconf
		and autoheader runs.
	source/server.c:
		make sure varaiable is not uninitialised (from
		agc@netbsd.org).

Mon Aug 23 12:30:29 EST 1999 - matthew green <mrg@eterna.com.au>
	configure.in, configure, Makefile.in, include/Makefile.in,
	include/config.h, source/Makefile.in:
		add support for building outside of the source
		tree, largely from glen.  config.h.dist is copied
		to the build tree now.  neat.

4.4K
Sun Aug 22 04:07:03 EST 1999 - matthew green <mrg@eterna.com.au>
	source/irc.c:
		fix usage string to be a real C string again.
	source/icb.c:
		fix an off by one error in long msg handling.

Sun Aug 22 01:32:35 EST 1999 - matthew green <mrg@eterna.com.au>
	INSTALL, configure, configure.in, include/irc.h, source/help.c,
	source/mail.c, source/wserv.c:
		add patches from Gerben_Wierda@RnA.nl to fix NeXT
		support.
	source/window.c:
		apply PR#378 from forcer: WINDOW KILL_OTHERS crashes
		with more than 2 windows.
	source/ircaux.c:
		do not copy a string onto itself.  it fails.  fixes
		several PRs: 379, 380, 381, 385, 386, 388 and 390.
	include/ircterm.h
		FreeBSD uses int/int for tputs function too.  maybe
		ncurses does?
	acconfig.h, configure, configure.in, include/defs.h.in:
		apply patch from Tod McQuillin <devin@lm.com> in
		PR#382 to fake a `ssize_t' for older systems.
	source/window.c:
		deal with CHANNEL_NAME_WIDTH == 0.  fixes PR#384.
	configure, configure.in:	
		--datadir is now used and sets where $IRCLIB exists
		(as ${datadir}/irc).  fixes PR#383.

Wed Jul 21 09:48:45 EST 1999 - matthew green <mrg@eterna.com.au>
	source/edit.c, help/brick:
		add `/brick channel nick' command.

4.4J
Thu Jul 15 12:18:44 EST 1999 - matthew green <mrg@eterna.com.au>
	help/load/icb, script/icb:
		add `/register'
	include/config.h*, include/server.h, include/icb.h,
	source/irc.c, source/server.c, doc/ircII.1:
		add -P switch to set deafult ICB port.  have a
		define `ICB_PORT' (that is 7326) for the default.
	source/cast.c, source/dcc.c, include/irc_std.h,
	include/cast_sbox.h:
		replace 'cast_t' with 'castkey' and 'u_32int_t'
		with 'u_32int' as _t is not my name space.
	source/cast.c:
		fix several bugs noted by Michael Katzenmayer
		<katzenmayer@erfnet.com>:  castkey had u_char instead
		of u_int, and some packaging problems introduced since
		the CBC changes.

Thu Jun 17 16:38:34 EST 1999 - matthew green <mrg@eterna.com.au>
	source/alias.c, help/alias/functions:
		new $SERVERTYPE() function that returns either
		`IRC2.X' (X between 5 and 11 so far), or `ICB'.
		idea from tristan@ethereal.net.

4.4I
Sat May 22 00:00:11 EST 1999 - matthew green <mrg@eterna.com.au>
	include/crypt.h:
		rename CAST128ED to CAST128ED-CBC so that newer
		implementations will fail to operate with prior
		versions, rather than attempt to work and lose.

Fri May 21 18:29:15 EST 1999 - matthew green <mrg@eterna.com.au>
	configure, configure.in, acconfig.h, include/defs.h.in,
	source/crypt.c:
		use /dev/urandom if possible.  avoid using the
		implementation namespace a bit...
	source/wserv.c:
		fix this for unix domain 4.4BSD machines.
	source/term.c:
		ensure we catch all ESC aliases...
	source/parse.c:
		let older /on join's work again.
	source/icb.c:
		make sure we properly disconnect a server.  for
		public and private messages, be sure not to overflow
		the 255 byte ICB limit.
	source/exec.c:
		for /exec's that have output elsewhere, make sure
		that they go to the right server.
	source/cast.c:
		change CAST-128 implmentation from EBC mode to CBC
		mode.  this is incompatible with previous versions
		but as EBC is less secure, too bad.

Mon Mar  8 14:13:54 EST 1999 - matthew green <mrg@eterna.com.au>
	configure, configure.in, acconfig.h, include/defs.h.in,
	source/cast.c, source/crypt.c:
		look for and, if we find it, use /dev/random as
		a source of randomness for crypto code.
	source/icb.c, source/edit.c, include/icb.h:
		add a new icb_put_funny_stuff() that handles doing
		irc-like /names and /list.
	script/global:
		load tabkey & icb by default.

Fri Mar  5 15:24:11 EST 1999 - matthew green <mrg@eterna.com.au>
	include/server.h, script/icb, source/edit.c, source/icb.c,
	source/irc.c, source/parse.c, source/server.c,
	source/whois.c source/window.c:
		add an extra argument to the parse_server_info()
		stuff, that returns anything beyond the nick.
		this is used by the ICB code to set default group
		and mode.  you can specify that a server is ICB
		in the IRCSERVER and related lists by prepending
		it with IRC/.  eg set IRCSERVER to:
		`ICB/icb.network.net:7326::mynick:channel'.

4.4H
Thu Mar  4 19:42:31 EST 1999 - matthew green <mrg@eterna.com.au>
	include/server.h, source/numbers.c, source/server.c,
	source/window.c:
		connect_to_server() and find_in_server_list() both
		take a "nick" argument now.  server lists are unique
		now only if the nickname is the same.
	source/icb.c:
		parse status messages for signon/signoff/arrive/depart
		and convert them to join/leave hooks.
	source/screen.c:
		deal with no current_screen.  helps with output
		functions run during client startup not dumping core.
		update fwrite() tests to be consistent.

Thu Mar  4 18:54:08 EST 1999 - matthew green <mrg@eterna.com.au>
	include/hook.h, include/hook.h.proto, source/edit.c,
	source/hook.c, source/icb.c, source/irc.c, source/server.c:
		add hooks for ICB stuff.  implement two new hooks
		for ICB only stuff: ICB_STATUS and ICB_ERROR, for
		icb status and error messages.  all others go via
		server_notice, msg, public, send_msg, send_public
		which exist.  more to come.

Thu Mar  4 17:56:26 EST 1999 - matthew green <mrg@eterna.com.au>
	source/irc.c, source/icb.c, source/server.c, 
	include/server.h:
		fix -irc/-icb args to skip the rc/cb bit.  add
		a icb group concept, separate to the irc channels.

Thu Mar  4 14:24:25 EST 1999 - matthew green <mrg@eterna.com.au>
	include/irc.h, include/server.h, source/irc.c,
	source/server.c, source/window.c:
		if run as "icb", default to icb.  add -irc/-icb
		switch to the command line, and -irc to both
		/window server and /server.

Thu Mar  4 13:10:41 EST 1999 - matthew green <mrg@eterna.com.au>
	source/ctcp.c:
		dcc actions to the right window. from forcer.
	configure, configure.in:
		cast recv() address argument to (struct sockaddr *)
		to let it compile, and let the nonblock test have a
		chance at working.  from forcer.
	source/numbers.c:
		print a channel not available message even if we
		don't understand it properly, so that the user gets
		the message anyway.
	contrib/README, (removed contrib/colour and contrib/colour.orig),
	include/config.h*, include/irc.h include/vars.h.proto,
	include/vars.h, source/screen.c, source/vars.c:
		add a /set colour to mimic mIRC-style colours.  it
		does not use termcap colour stuff, as no one uses
		those anyway.  at least on IRC.  this is sarayans
		original patch as maintained by forcer, and what
		was originally in the contrib directory.
	source/dcc.c:
		print ip:port for dcc send.  from forcer.

Wed Mar  3 18:06:17 EST 1999 - matthew green <mrg@eterna.com.au>
	source/newio.c, include/newio.h:
		add a "dgets_separator" that lets you change the
		"end of line" charater. this is useful for ICB
		where it is a nul, not a newline.
	help/icb, include/icb.h, include/server.h, script/icb,
	source/Makefile.in, source/edit.c, source/icb.c, source/irc.c,
	source/notify.c, source/server.c, source/window.c:
		add elementary ICB support.  /server -icb host port
		should do the right thing, and let you join channels,
		see messages, send then.  a new /icb command lets you
		have access to all the icb commands, and most IRC
		commands that make sense in this context (/nick,
		/topic, /version, /msg, /join, etc) have been modified
		to know the are talking to an ICB server and pass the
		users request off to the icb code to handle.  this
		uses the new dgets_separator() for ICB server
		connection processing.
		this is missing hooks and stuff, but it should be at
		least usable for now.  i expect to add hooks and stuff
		shortly.  the script adds aliases for icb commands
		(/group, /boot, /pass, etc.), and the help file is
		fairly useless...

4.4G
Sun Feb 28 13:37:48 EST 1999 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		use ssize_t for the length, and cast it to size_t
		where needed, to avoid it overflowing.
	various:
		use __SVR4 as the canonical SVR4 preprocessor
		define, as it is.
	source/hook.c, include/hook.h.proto, include/hook.h, help/on/join:
		/on join takes 3 args.
	configure.in, acconfig.h, source/dcc.c:
		add writev & <sys/uio.h> check and use it if possible.
	doc/ircII.1:
		document the -b flag.
	source/server.c:
		call the right parse_server() routine in all cases.
	source/ctcp.c:
		be saner about PARANOID.
	source/dcc.c, source/ctcp.c, source/crypt.c, source/cast.c,
	source/edit.c, include/crypt.h:
		convert to a "crypt_key" type for crypto keys, rather
		than passing around char *'s.  this lets the key be
		opaque and let the crypto engine hide in here.
	source/ctcp.c, source/crypt.c, source/cast.c source/sed.c, 
	include/crypt.h, include/ctcp.h, help/encrypt:
		split SED code into sed.c.  allow more than one type
		of crypto system to be compiled in.  currently there
		is only support for SED and CAST-128.

4.4F
Tue Feb  9 21:30:37 EST 1999 - matthew green <mrg@eterna.com.au>
	source/crypt.c, source/ctcp.c, source/dcc.c:
		various bug fixes to crypto code.

Tue Feb 02 03:45:58 est 1999 - glen mccready <glen@qnx.com> 
	source/exec.c, help/exec:
		add /exec -target.
		
Sun Jan 03 20:19:54 est 1999 - glen mccready <glen@qnx.com>
	source/alias.c:
		more functions, winsrvr() and winsrvrgrp() to return
		the windows server and server_group.
	source/window.c:
		make "window query" work like "query".

Sun Jan 03 17:21:02 est 1999 - glen mccready <glen@qnx.com>
	source/alias.c:
		add a couple of useful functions.  one, winvis(), to
		tell you if a window is visible.  another, querynick(),
		to tell you what nick, if any, a window is queried to.

Sun Jan 03 12:42:44 est 1999 - glen mccready <glen@qnx.com>
	source/window.c:
		allow "window channel #chan,key" to work.

4.4E
Sun Nov  8 16:23:19 EST 1998 - matthew green <mrg@eterna.com.au>
	source/cast.c:
		be defensive about putting the final nul back in
		to the string: it can never be >7 as the blocksize
		is 8...
	source/ctcp.c:
		quote ':' with a standard quote character in
		ctcp_quote_it() as do_ctcp() treats : specially (if
		it is the first char of a string).  the avoids
		accidentally losing the first character of a string.

Fri Nov  6 19:33:31 EST 1998 - matthew green <mrg@eterna.com.au>
	acconfig.h, configure, configure.in, include/alias.h,
	include/ctcp.h, include/dcc.h, include/defs.h.in, include/edit.h,
	include/hold.h, include/hook.h, include/if.h, include/input.h,
	include/irc.h, include/irc_std.h, include/ircaux.h,
	include/ircterm.h, include/keys.h, include/keys.h.proto,
	include/menu.h, include/names.h, include/output.h,
	include/screen.h, include/server.h, include/translat.h,
	include/vars.h, include/window.h, source/alias.c, source/cast.c,
	source/crypt.c, source/ctcp.c, source/dcc.c, source/debug.c,
	source/edit.c, source/exec.c, source/file.c, source/flood.c,
	source/funny.c, source/help.c, source/history.c, source/hold.c,
	source/hook.c, source/if.c, source/ignore.c, source/input.c,
	source/irc.c, source/ircaux.c, source/ircflush.c, source/ircio.c,
	source/ircsig.c, source/keys.c, source/lastlog.c, source/list.c,
	source/log.c, source/mail.c, source/menu.c, source/names.c,
	source/newio.c, source/notice.c, source/notify.c,
	source/numbers.c, source/output.c, source/parse.c, source/queue.c,
	source/reg.c, source/scandir.c, source/screen.c, source/server.c,
	source/stack.c, source/status.c, source/term.c, source/translat.c,
	source/vars.c, source/whois.c, source/window.c, source/wserv.c:
		make (almost) compile with quite anal gcc flags under
		NetBSD 1.3H, quietly.  this adds support for finding
		a locally delcared "errno", and also removes a bunch of
		the old STDC crap with passing char's to functions.
		also fixed a few bugs that were found!

4.4D
Fri Nov  6 02:38:34 EST 1998 - matthew green <mrg@eterna.com.au>
	source/dcc.c:
		add untested code for using writev if available.
		also, fix dcc chat encryption.
	source/irc.c, source/notice.c, source/parse.c, source/whois.c:
		clean up "int sed;" processing.

Wed Oct 28 12:11:10 EST 1998 - matthew green <mrg@eterna.com.au>
	source/dcc.c, source/flood.c, source/irc.c, source/ircaux.c,
	source/numbers.c, source/parse.c, source/server.c,
	source/window.c, include/irc.h:
		remove NICKNAME_LEN. make nicks dynamically allocated.
		this is so ircII works on blundernet.
	source/dcc.c:
		fix some problems with encrypted dcc chat.  still not
		totally working...

4.4C
Sun Sep 27 12:18:08 EST 1998 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		fix flash-style attacks, by checking for characters
		0-32 with the high-bit set (128->160) and performing
		the same alternation on those.
	contrib/README, contrib/colour, contrib/colour.orig:
		add the new colour patch from PR#332, moving the old
		one to colour.orig.  from forcer.
	source/alias.c:
		use the current server for $A and $N expansion, not
		the current window.  from flier@globecom.netin pr 300.

Sun Sep 27 02:28:08 EST 1998 - matthew green <mrg@eterna.com.au>
	translation/POLISH, translation/POLISH_NOPL:
		fixed polish translation tables, from Piotr Kucharski
		<chopin@sgh.waw.pl> in pr#344.
	source/edit.c, include/edit.h:
		make /timer server-away.  from flier in pr#295.

Sat Sep 26 12:36:02 EST 1998 - matthew green <mrg@eterna.com.au>
	source/alias.c:
		fix $rindex(), using patch in pr335 from Tristan Horn
		<tristan@ethereal.net>.
	source/numbers.c:
		if we get end of motd, and we haven't seen a 002 or
		version notice, fake one up...

Sat Sep 26 03:58:30 EST 1998 - matthew green <mrg@eterna.com.au>
	source/server.c, source/window.c, source/numbers.c,
	source/help.c, source/dcc.c:
		change {save,restore}_message_from() into a queue so
		that now that we use them for every message_from(),
		info is not by too save_ callers before a restore_.
		fix some of the callers of these functions to work
		properly in the presence of a queue.

Wed Sep 23 00:51:22 EST 1998 - matthew green <mrg@eterna.com.au>
	source/notice.c:
		allow server notices to see the 1st parameter as it
		comes from the server, as it may be a channel.  from
		galibert@iria.mines.u-nancy.fr (Olivier Galibert) in
		pr#239.
	script/2.9script:
		deal with PR#217 sanely now we have the above.
	configure, configure.in:
		check for gcc on QNX (from glen).
	source/numbers.c:
		deal with number 405. fixes pr#336.
	source/alias.c:
		fix overflow in eval echo [3232235777/255].
	configure, configure.in: source/exec.c:
		don't go past the end of the signals array.
	source/log.c:
		fix core dump through nulref from flier in pr#334.

Tue Sep 22 20:38:16 EST 1998 - matthew green <mrg@eterna.com.au>
	source/alias.c, source/ctcp.c, source/dcc.c, source/edit.c,
	source/funny.c, source/help.c, source/lastlog.c, source/mail.c,
	source/names.c, source/notice.c, source/notify.c, source/numbers.c,
	source/parse.c, source/server.c, source/whois.c, source/window.c:
		rework message_from() usage:  now we use the two handy
		functions {save,restore}_message_from() a lot throughout
		the tree (when using message_from()).  this ensures that
		the from level/message level/from who/etc are all set
		correctly at all times.  also fix a few bugs here.
		/notify, /help, ctcp messages and several other systems
		were not properly restoring or setting the levels.  this,
		i believe, is the cause of random messages going to the
		wrong place, extremely rarely.  i belive i have fixed
		all of these problems now, and perhaps not broken anything.
		also fix temporary setting of from_server that did not
		restore the previous value.
	source/alias.c:
		avoid using from_server or parsing_server_index as an index
		if it is < 0.

Wed Sep 16 11:04:45 EST 1998 - matthew green <mrg@eterna.com.au>
	source/history.c:
		create the .irchist file mode 600.
	include/names.h, include/server.h, source/funny.c,
	source/names.c, source/parse.c, source/status.c:
		support irc 2.10 modes, from <kalt@stealth.net>.

4.4B
Tue Sep  8 00:43:18 EST 1998 - matthew green <mrg@eterna.com.au>
	INSTALL, Makefile.in, easyinst:
		remove easyinst, document --with[out]-cast.

Mon Sep  7 18:33:01 EST 1998 - matthew green <mrg@eterna.com.au>
	source/irc.v, doc/VERSIONS:
		bump version to 4.4B, due to the CAST-128 support.
	configure, configure.in:
		change --with-cast to support `=no', and also if we
		find source/cast.c, enable cast support.  fix alignment
		of some strings for --with-cast and --with-paranoid.

Mon Sep  7 15:11:57 EST 1998 - matthew green <mrg@eterna.com.au>
	source/cast.c, source/crypt.c, source/ctcp.c, include/crypt.h,
	include/cast_sbox.h, acconfig, configure configure.in:
		add a --with-cast switch to configure, to enable built-in
		CAST-128 encryption support, rather than the old broken
		crypt.  requires cast.c and cast_sbox.h that will *not*
		be distributed with ircII by default.

Sat Sep  5 21:39:36 EST 1998 - matthew green <mrg@eterna.com.au>
	source/crypt.c, help/encrypt, help/set/old_encrypt_program,
	help/set/encrypt_program:
		change encrypt_program to write key as first line,
		rather than insecure cmd line argument.  add a new
		`old_encrypt_program' (default off) variable to use
		the old API.  XXX the exec code here has lots of
		syscalls with no return values checked XXX.

Tue Jun  2 18:48:39 EST 1998 - matthew green <mrg@eterna.com.au>
	source/queue.c:
		fix core dumps.  pr#298.
	doc/ircII.1:
		document the "global" script.  pr#315.

Tue Jun  2 18:13:09 EST 1998 - matthew green <mrg@eterna.com.au>
	help/window/bind, help/window/unbind:
		new help files.
	script/nocolour:
		stop mIRC colour crap.
	source/server.c:
		match server name correctly.  noted in pr#301.
	source/dcc.c:
		print ip/port in dcc requests.  per pr#325.
	source/crypt.c:
		call setgid() before setuid().  call wait() after exec().
		there are still MANY system calls with unchecked return
		values here but at least it seems to work now.  at least
		with `/usr/games/caeser' as the encryption program, and 13
		as the key (rot13 :).
	configure.in, configure:
		AMS mail is ~/Mailbox as a directory, not a file.  this
		fixes problems with qmail installations.

Tue Jun  2 16:11:05 EST 1998 - matthew green <mrg@eterna.com.au>
	source/names.c:
		initialise new->status, which fixes the "channel leave"
		bug, noted in several PR's (fix from 328).
	source/mail.c:
		use my_strnicmp().  from mark.
	configure, configure.in, acconfig.h, include/defs.h.in, source/ctcp.c:
		add a --with-paranoid switch which disables the "bad" parts of
		ctcp version/finger replies.
	source/ctcp.c, source/dcc.c, source/edit.c:
		allow dcc channels to have (only) ctcp queries.  involved some
		interface changes to send_ctcp() and related functions.  for now,
		no replies are generated -- there is no privmsg/notice in a dcc
		chat connection.
	source/ctcp.c:
		ensure ctcp functions that return data return it in a malloced
		string, and ensure that the caller cleans this up.  should fix
		several problems noted over the last several years.
	source/dcc.c, include/irc.h:
		avoid buffer overflows in dcc chat connections.  noted by forcer.

Fri Jan 12 02:20:00 EST 1997 - glen mccready <glen@qnx.com>
	source/edit.c, source/exec.c, source/screen.c, source/server.c,
	source/status.c, source/ircio.c, source/ircflush.c, source/irc.c,
	source/wserv.c, source/names.c, source/dcc.c, source/scandir.c,
	source/help.c, include/scandir.h:
		clean up some warnings. prototype scandir. make sure
		notify_mark is prototyped where it's used.  fudge some
		qnx defaults further in configure.
	source/queue.c:
		fix segv (pr#292).
	source/vars.c:
		fix "/set logfile ~/blah".
	source/ircaux.c, source/alias.c, include/ircaux.h:
		add srindex() to compliment sindex().  used by $rindex().
	source/output.c:
		fix bug in end-of-string handling.

Fri Jan  9 23:44:00 EST 1997 - glen mccready <glen@qnx.com>
	source/ctcp.c:
		fix missing toupper().

4.4
Sun Dec  7 13:25:24 EST 1997 - matthew green <mrg@eterna.com.au>
	source/screen.c:
		fix PR211 from krys:  make scrolling work a bit better.

Thu Dec  4 11:25:13 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		fix PR280:  don't set SERVERREQ for /msg as it breaks
		dcc chat and /disconnect-ed.

Tue Nov 25 16:52:31 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		hack:  fix pr272:  set lastlog/loglevel to CRAP for
		xecho -window.
	source/numbers.c:
		fix pr273:  numerics 471, 473, 474, 475 and 476 need
		to be caught my the client before hooking.  do so.
	source/notice.c:
		fix pr274 (i think, i can not test this):  if the server
		doesn't give a 'normal' 002 numeric, don't totally lose.
		pretend it's a 2.9 server and go from there.
	source/ctcp.c, source/edit.c:
		from flier in pr275:  don't free the return value of
		crypt_msg().
	source/lastlog.c:
		fix pr276:  free the malloced copy, and use strncmp().

2.9beta2
Mon Nov 10 15:06:55 EST 1997 - matthew green <mrg@eterna.com.au>
	source/names.c, source/names.h:
		cleanup mode string code.  fix bug while i'm here...

2.9beta1
Mon Nov 10 11:36:56 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		giver user indication of SQUERY (idea from kalt).
	source/names.c:
		add modes a and q.  should parse server numeric for
		this info at connect time.  (from kalt) also, don't leak
		a channel (from flier).
	source/parse.c:
		if is_channel() is called with NULL, return 0  (from
		vps@unicorn.niimm.spb.su)
	source/window.c:
		make /window remove deal with ^foo as a nick (from flier).
	source/numbers.c:
		add a hook for numeric 437.
	source/irc.c, source/hook.c, source/notice.c, source/server.c:
		change get_connected() to take an oldconn parameter, that
		makes it set WIN_OLDCONN when moving channels.  update
		callers of this.
	script/dccchan, help/load/dccchan:
		add ian frechette's dccchan implementation.

Thu Oct  9 00:09:42 EST 1997 - matthew green <mrg@eterna.com.au>
	source/vars.c, source/alias.c:
		send output of non-singual versions of /set, /assign
		and /alias to window level crap, like it used to do.
		eg, '/set foo' will go to crap, but '/set foo bar'
		will go to the current window.

Thu Sep  4 13:45:03 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		use send_2comm() for squery.
	help/squery, help/servlist:
		document these new commands.
	README:
		duh! update my address to eterna, not mame.
	INSTALL:
		make a note about the fuckage that happens with
		BIND 8 being installed into /usr/local.

2.9alpha8
Sun Aug 31 15:21:53 EST 1997 - matthew green <mrg@eterna.com.au>
	script/2.9script, help/load/2.9script:
		new files:  contain code to deal with 2.9 server
		messages and stats p output.  from kalt in pr#217.
	source/names.c, source/edit.c, source/window.c:
		don't use a server index if it is -1.  fixes some
		crashes.  from flier@ferlin.fri.uni-lj.si in pr#222
		and pr#223.
	source/window.c:
		fix error in displays, from flier@ferlin.fri.uni-lj.si
		in pr#228.
	source/dcc.c, source/names.c:
		don't forget to free some things, from sarayan in pr's
		232 and 234.
	source/server.c:
		fix out-of-bounds bcopy() that was causing lots of havoc
		after /server -delete.  from sarayn in pr#238.
	source/server.c:
		don't trash parsing_server_index, from sarayan in pr#240.
	source/edit.c:
		add SERVLIST and SQUERY as comments (for ircd 2.9), using
		send_comm().  this may not be correct and these commands
		may simply fail.
	script/version:
		update for 2.9.

2.9alpha7
Tue Jun  3 22:34:10 EST 1997 - matthew green <mrg@eterna.com.au>
	source/keys.c:
		pass the args in /parse.  fixes PR#236.  from sarayan.
	source/server.c:
		don't send whois foo and whois !foo.  fixes PR#85.
		also from sarayan.
	source/parse.c:
		don't use `level' if we haven't set it!  also from
		sarayan.

Thu May 22 04:53:00 EST 1997 - glen mccready <glen@qnx.com>
	source/irc.c, source/ircaux.c:
		add '-h host' for specifying the local address for
		multi-homed boxes.

Wed May  7 17:55:56 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c, help/save:
		add new SERVERREQ flag to irc_commands[] that
		requires that we be connected to a server for this
		command to be run.  fixes problems noted in pr#222
		and pr#223.
		implement /save -force, to skip the question asking.

Mon May  5 19:13:32 EST 1997 - matthew green <mrg@eterna.com.au>
	source/ignore.c:
		rework a sentence.
	sourec/dcc.c:
		make dcc sent/read byte counts correct under systems
		with off_t > long (eg, NetBSD/sparc), by casting
		arguments for "%ld" to (long).

2.9alpha6
Mon Apr 21 16:35:57 EST 1997 - matthew green <mrg@eterna.com.au>
	source/hook.c:
		minor fix for previous.

Mon Apr 21 01:12:22 EST 1997 - matthew green <mrg@eterna.com.au>
	source/hook.c:
		fix Add_Remove_Check stuff, from Sarayan.
	source/names.c:
		fully initialise channel.  from sarayan.
	source/vars.c:
		handle DEFAULT_LOG being on.
	contrib/README, contrib/random_nick:
		Kalt's random nick patch.

2.9alpha5
Sun Apr 20 20:51:01 EST 1997 - matthew green <mrg@eterna.com.au>
	source/alias.c, source/crypt.c, source/dcc.c, source/edit.c,
	source/exec.c, source/hook.c, source/keys.c, source/lastlog.c,
	source/vars.c:
		purify found several memory leaks i introduced some
		months ago.  thanks sar.
	source/alias.c:
		alias_xxx() functions don't allocate their return value.

Sun Apr 20 19:41:53 EST 1997 - matthew green <mrg@eterna.com.au>
	contrib/README, contrib/japanese_support:
		put PR#203 from Sarayan into the contrib directory,
		so that people needing ISO2202 (japanese) support
		can have it.

Sun Apr 20 18:43:33 EST 1997 - matthew green <mrg@eterna.com.au>
	contrib/README, contrib/colour:
		put PR#202 from Sarayan into the contrib directory,
		so that people wanting colour can have it.

Tue Apr 15 01:58:44 CDT 1997 - scott reynolds <scottr@og.org>
	acconfig.h, include/defs.h.in:
		don't use non-blocking connects if SOCKS support
		is enabled.

2.9alpha4
Tue Apr 15 02:29:48 EST 1997 - matthew green <mrg@eterna.com.au>
	source/output.c:
		increase the buffer size, as suggested by
		<flier@ferlin.fri.uni-lj.si> in pr#201.

Tue Apr 15 02:13:11 EST 1997 - matthew green <mrg@eterna.com.au>
	source/window.c:
		handle /window double correctly.  from
		<flier@ferlin.fri.uni-lj.si> in pr#198 & pr#200.
		normalise some formats.
		when swapping channels and windows, don't do
		disconnected windows.  pr #182, pr#191 & pr#196
	help/window/sticky:
		initial document on this commmand.

Tue Apr 15 01:11:48 EST 1997 - matthew green <mrg@eterna.com.au>
	source/mail.c:
		minor optimisation.
	source/server.c:
		default to /WINDOW STICKY.
	source/screen.c, source/window.c, include/window.h:
		remove WIN_LOGLEVEL.

Wed Apr  2 16:04:04 EST 1997 - matthew green <mrg@eterna.com.au>
	include/ircterm.h
		add __GNU__ (the hurd) to the int/int putchar_x
		crowd.  this was the only change required!
	source/edit.c:
		patch from Sarayan to fix some errors caused by me,
		and some clean up, for the channel commands.  pr#190.

Wed Mar 26 18:11:22 EST 1997 - matthew green <mrg@eterna.com.au>
	include/ircterm.h:
		#ifdef __sgi, then int putchar_x(int) is correct.
		this works for IRIX5 and IRIX6.  if it doesn't
		work, blame sarayan.

2.9alpha3
Wed Mar 26 15:50:50 EST 1997 - matthew green <mrg@eterna.com.au>
	NEWS:
		updated for `2.9'

Wed Mar 26 14:33:56 EST 1997 - matthew green <mrg@eterna.com.au>
	source/names.c:
		leave kicked channels in CHAN_LIMBO.
	source/status.c:
		don't cut of domains of irc servers called "irc.".
	source/dcc.c, source/screen.c:
		deal with /window add =nick properly.
	source/window.c:
		change add_nicks_by_refnum() so that you can
		explicitly add/delete with a new parameter.  allows
		the caller to _NOT_ have to malloc a new string for
		prepending a ^ on it.
	help/help, help/load/help, help/set/help_pager,
	help/set/help_service, help/set/help_prompt, script/help,
	source/help.c, source/vars.c, include/vars.h.proto,
	include/vars.h:
		remove help_service, and re-implement it as a help
		script.
	source/server.c, source/window.c:
		finish /server . that glen started at my urging.
	include/ircterm.h:
		Linux and AIX use int/int for tputs.
	source/edit.c:
		fix a few commands, and make leave comments work
		properly.
	source/dcc.c:
		handle dcc send with "irc -S" by using MyIpAddr.
	source/numbers.c:
		reset the whois_queue() on numeric 001.
	source/dcc.c:
		don't use a filename if it's NULL.  from Sarayan.
	source/ircaux.c:
		don't free anything pointing as "empty_string".
		should prhaps do zero and one here also.
	configure, configure.in:
		look for /stand/vmunix as well as /hp-ux, before
		testing for HPUX.
	easyinst:
		deal with default server more sanely.

Sun Mar 23 03:24:48 EST 1997 - matthew green <mrg@eterna.com.au>
	help/alias/functions:
		fix index ^ desc.  from Stefan Le Breton
		<stlb@cs.tu-berlin.de>.

Sun Mar 23 01:59:45 EST 1997 - matthew green <mrg@eterna.com.au>
	source/parse.c, source/hook.c, include/hook.h.proto,
	include/irc.h:
		remove ON_KICK:  we always have it.
	Makefile.in:
		cp not ln config.h.dist to config.h.
	include/config.h.dist, include/config.h.lynx, include/vars.h,
	include/vars.h.proto, include/hook.h, include/hook.h.proto::
		add ctcp_reply* and status_group variables
	include/hook.h.proto, include/hook.h:
		add /on KICK as normal.

Wed Mar 19 06:10:03 METDST 1997 - Olivier Galibert  <galibert@loria.fr>
	source/ctcp.c, source/server.c, source/vars.c,
	include/server.h, include/vars.h, include/config.h,
	include/config.h.dist, include/config.h.lynx:
		Implement new way of doing CTCP reply flood
		protection. Read source/ctcp.c for details.
		Has been tested against multiple -- unasked for--
		flood attacks, never failed :-)

Fri Mar 21 16:26:45 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		from sarayan:  fix array out of bounds.
	source/lastlog.c:
		from StElb <stlb@cs.tu-berlin.de>: add lastlog
		-save <file>.
	source/numbers.c:
		handle number 437, for ircd 2.9.

Fri Mar 21 12:23:03 EST 1997 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		don't send "NAMES" for hostmasked channels (eg,
		#foo:*.edu).  fixes PR#187
	source/dcc.c:
		fix pr#131:  handle dcc send with irc -AS.

Thu Mar 20 17:56:47 EST 1997 - matthew green <mrg@eterna.com.au>
	translation/POLISH, translation/POLISH_NOPL,
	help/set/translation:
		add POLISH translation tables from Piotr 'Beeth'
		Kucharski <chopin@sgh.waw.pl>
	script/global, help/ison:
		add /ISON command.

2.9alpha2
Wed Mar 19 14:42:24 EST 1997 - matthew green <mrg@eterna.com.au>
	source/dcc.c:
		fix bug pointed out by sar:  don't use filename if
		it is NULL.
	source/vars.c:
		fix bug pointed out by shadow@tsatsos.math.auth.gr:
		/set -realname dumped core.
	help/server:
		clarify /server name:port:pass:nick
	source/ircaux.c:
		in new_free(), just reset the pointer to NULL it is
		really `empty_string'.
	source/parse.c:
		use STRING_CHANNEL not a hardcoded '+'.

Fri Jan 17 18:10:54 EST 1997 - matthew green <mrg@eterna.com.au>
	source/ctcp.c:
		change the way ctcp flood protection works.  for
		longer or faster messages, we ignore for longer.

2.9alpha1
Mon Nov 11 01:25:27 CST 1996 - scott reynolds <scottr@og.org>
	source/parse.c:
		fix reversed test for comment when leaving channel.

Wed Jul 24 11:42:12 EST 1996 - matthew green <mrg@eterna.com.au>
	source/lastlog.c, source/mail.c, source/window.c, source/notice.c,
	source/names.c, source/server.c, source/screen.c, source/edit.c,
	source/funny.c, source/irc.c, source/dcc.c, source/ctcp.c,
	source/parse.c, source/numbers.c, source/whois.c:
		more message_from() clean ups.
	source/parse.c, help/on/leave:
		implement part comments (from per).

Mon Jul 22 11:42:47 EST 1996 - matthew green <mrg@eterna.com.au>
	acconfig.h, include/defs.h.in, include/config.h:
		only define NON_BLOCKING_CONNECTS if we actually have
		a way of doing it.
	source/server.c, source/screen.c, source/dcc.c:
		fix some redirect lossage.

2.9_roof
Sun Jul 21 05:20:15 EST 1996 - matthew green <mrg@eterna.com.au>
	source/ctcp.c, source/dcc.c, source/edit.c, source/funny.c,
	source/lastlog.c, source/mail.c, source/numbers.c,
	source/server.c, source/whois.c, source/window.c,
	source/notice.c, source/names.c, source/parse.c:
		use message_from() consistantly across the board, except
		for a few places that set it explicitly to LOG_CURRENT
		(which _should_ be the default).  this should fix all the
		bugs with messages going to the wrong window, but there
		are also *lastlog*() functions that might affect this
		(and assignments tto `to_window', etc, etc).
	source/names.c, source/parse.c:
		move the notify_mark() calls to add_to_channel() and
		remove_from_channel().
	help/set/translation:
		update to reality.

Fri Jul 19 22:33:14 EST 1996 - matthew green <mrg@eterna.com.au>
	source/newio.c:
		it's FD_SETSIZE, _not_ FDSETSIZE.
	source/ctcp.c:
		in do_ctcp(), only call send_to_server() if there is
		actually something to send.  stops the client sending
		a blank line to the server for every ctcp recieved.
	source/server.c:
		when a connection fails, set connected = 0, and
		read = write = -1 in the server struct.  this stops the
		"looping failed connection" bug from happening.

Tue Jul  9 13:47:42 MET DST 1996 - Christophe Kalt  <kalt@syrk.ensta.fr>
	source/numbers.c:
		display numeric 366 (RPL_ENDOFNAMES) in the right window.

2.9_wall
Wed Jun 26 23:14:21 EST 1996 - matthew green <mrg@eterna.com.au>
	source/parse.c:
		don't notify_mark() when nick changes case only.
	source/numbers.c:
		don't set +sw with numeric 381.  why was this ever
		done, i dunno...
	source/numbers.c, source/funny.c, include/server.h:
		notice and care about usermode +r and numeric 484
		(ERR_RESTRICTED).
	include/ircterm.h:
		XXX more irix6 lossage.  give a tgetstr() proto.

Wed Jun 26 12:49:50 EST 1996 - matthew green <mrg@eterna.com.au>
	source/edit.c, source/input.c:
		ANSIification of some functions taking char arguments.
	source/dcc.c:
		__STDC_ -> __STDC__
	configure.in, configure, acconfig.h, include/config.h,
	include/config.h.lynx, include/defs.h.in:
		implement --with-default-server (scottr).
	source/irc.c, source/notice.c, include/irc.h:
		implement new -b switch: loads .ircrc before
		connecting to a server.
	source/edit.c:
		fix auto_unmark_away (pr#104).  check_away was always 0.
	configure.in, configure:
		impliment --with-non-blocking=(posix|bsd|sysv|none).
		make solaris test work on x86.

Thu Jun 20 15:32:03 EST 1996 - matthew green <mrg@eterna.com.au>
	source/term.c, include/ircterm.h:
		XXX HACK ALERT!
			made this work for irix6, kinda.  this
			needs to be replaced by something real.
	source/mail.c, source/help.c:
		NeXT bug fixes from Mark.
	script/2.8script:
		fix invite and ban reply.

Tue Jun 11 19:52:23 EST 1996 - matthew green <mrg@eterna.com.au>
	source/server.c:
		don't use sa_len anymore.  irix uses it and it
		makes Lossage!
	easyinst:
		deal with no config.h.dist
	source/keys.c:
		cast call to malloc_strcpy().  from fn.
	source/translat.c
		translation tables don't have spaces in their
		names.  from fn.
	include/output.h:
		refresh_screen returns RETSIGTYPE.  pr#92.
	contrib/README, contrib/check_load:
		added contrib section.
	include/lastlog.h:
		make default window level LOG_NONE, as per -DPHONE.

2.9_floor
Thu Jun  6 00:50:08 CDT 1996 - scott reynolds <scottr@og.org>
	source/if.c:
		fix a buffer overrun.  (from Karthik Gargi)

2.9_base
Sun Apr 14 14:55:15 CDT 1996 - scott reynolds <scottr@og.org>
	source/window.c:
		fix problem with /WINDOW SERVER ignoring the port
		from the server list under some conditions.

Sun Mar 31 08:45:47 CST 1996 - scott reynolds <scottr@og.org>
	Makefile.in:
		when installing, make sure to create $(mandir), if
		necessary.

Fri May 31 00:14:23 EST 1996 - matthew green <mrg@eterna.com.au>
	Makefile.in:
		don't delete config.h anymore.

Mon Mar 18 12:40:33 CST 1996 - scott reynolds <scottr@og.org>
	source/edit.c:
		don't try to use args to /PART if they weren't
		specified.  fixes pr 81, from krys.

Fri Mar 22 15:13:24 EST 1996 - matthew green <mrg@eterna.com.au>
	source/irc.c:
		fix old bug in updating status clock.

2.8.16beta
Sun Mar 17 15:19:09 EST 1996 - matthew green <mrg@eterna.com.au>
	source/irc.c, doc/VERSIONS
		note beta release.

Thu Mar 14 11:08:53 EST 1996 - matthew green <mrg@eterna.com.au>
	source/window.c:
		backout previous change to window_get_connected().
		fix the bug by not calling realloc_channels() in
		set_window_server().

Wed Mar 13 23:45:53 EST 1996 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		backout one of the previous next_arg() changes that
		broke "/ foo".  from phil.
	source/window.c:
		fix pr#75.  don't be so intrusive looking for a channel
		for this window.  call set_window_server() with misc of 1
		from window_get_connected().  this fixes an annoying bug
		that made channels get reconnected to the wrong window.
		however, this may cause more lossage.
	source/parse.c:
		add signon/off detection in nick changes.  pr#77 from
		krys.

2.8.15
Fri Mar  1 21:44:00 EST 1996 - matthew green <mrg@eterna.com.au>
	include/whois.h:
		add WHOIS_ISON2 as required by scott's change below.
	source/dcc.c:
		#ifdef S_IFDIR:  some unix doesn't have this?
	source/edit.c:
		fix some memory leaks with expand_twiddle() usage.
		use next_arg().
	source/exec.c:
		bounds check in is_process_running().  from mark
		matthewson.
	source/help.c:
		count displayed help lines correctly.  from kalt.
	source/parse.c:
		display kick in correct window.  from kalt.
	source/server.c:
		don't allow send_to_server() to recurse.
	source/vars.c:
		add VF_EXPAND_PATH.  allows HELP_PATH to be ~/irc/help, eg.

Thu Feb 29 23:41:40 CST 1996 - scott reynolds <scottr@og.org>
	source/whois.c:
		more whois queue cleanup, from phil.
	source/window.c:
		fix definition of is_current_channel() to agree with
		prototype, and fix for SAME_WINDOW_ONLY, both from phil.

2.8.14
Thu Feb 15 10:16:20 EST 1996 - matthew green <mrg@eterna.com.au>
	source/dcc.c:
		don't use the ip address 127.0.0.1 for dcc connections.
	source/help.c, help/*:
		add copyright notices.

Wed Feb 14 17:11:44 EST 1996 - matthew green <mrg@eterna.com.au>
	source/server.c:
		be smarter about displaying server lists.  reworked
		change from phil.

Tue Feb 13 22:33:10 CST 1996 - scott reynolds <scottr@og.org>
	include/server.h, source/ctcp.c, source/names.c, source/server.c,
	source/whois.c:
		Changes from <Philippe.LEVAN@enst-bretagne.fr>:
		- initialize ctcp_last_reply_time when creating a
		  server in the list
		- significantly clean up the whois queue stuff
		- be more careful with servers we're waiting to
		  be reconnected

2.8.13beta
Wed Feb  7 21:55:36 EST 1996 - matthew green <mrg@eterna.com.au>
	source/ctcp.c:
		fix bugs introduced in new flood code.

Tue Jan 30 22:55:11 CST 199 - scott reynolds <scottr@og.org>6
	source/lastlog.c:
		extend LOG_BEEP beyond pr #56 to include normal
		lastlog operations.
	help/set/lastlog_level, help/window/notify_level:
		documentation for LOG_BEEP.

Tue Jan 30 00:13:17 CST 1996 - scott reynolds <scottr@og.org>
	include/lastlog.h, source/lastlog.c, source/screen.c:
		add LOG_BEEP, and clean up a bit.  closes pr #56,
		mostly from krys.

Mon Jan 29 16:32:00 EST 1996 - matthew green <mrg@eterna.com.au>
	source/ctcp.c:
		be smarted about ctcp floods (still allow non-replying commands).

Sun Jan 21 18:10:24 CST 1996 - scott reynolds <scottr@og.org>
	source/edit.c:
		compare the correct variable; fixes pr #45.
	source/term.c:
		check for and disable VDISCARD if present,  from
		<levan@rennes.enst-bretagne.fr>
	help/window/double:
		added.  closes related pr #28.

Fri Jan 05 11:22:29 EST 1996 - glen mccready <glen@qnx.com>
	source/dcc.c, source/server.c:
		put forth some effort in cleaning up the non-blocking
		connects - ideas for the cleanup stemmed from a chat
		with deraadt@theos.com

Thu Dec 21 15:56:55 CST 1995 - scott reynolds <scottr@og.org>
	source/irc.c:
		Add '&' expansion to the code that gets the user's
		name from the passwd file.

Wed Dec 13 17:04:52 CST 1995 - scott reynolds <scottr@og.org>
	include/struct.h, include/config.h.dist, include/config.h.lynx,
	include/config.h.phone, include/vars.h, include/vars.h.proto,
	source/screen.c, source/status.c, source/vars.c, source/window.c:
		pr #42, /SET DOUBLE -> /WINDOW DOUBLE, from krys.

Wed Dec 06 13:28:46 EST 1995 - glen mccready <glen@qnx.com>
	Makefile.in:
		fix `installman'
	configure.in:
		slightly modify the qnx compile/link options used
	source/alias.c:
		function_idle() now always exists, instead of only
		when strftime() was found by configure
	source/exec.c:
		POSIX doesn't define NSIG or anything like it; _SIGMAX
		is an extension from somewhere.. with POSIX.4 coming into
		being SIGRTMAX may be useful at some point.. until then..
	source/term.c, source/window.c:
		avoid name conflicts
	source/wserv.c, source/ircsig.c:
		cast signal handlers

Mon Nov 13 23:50:33 CST 1995 - scott reynolds <scottr@og.org>
	source/edit.c, source/hook.c:
		fix memory leaks, from krys. fixes PRs 38, 39.

Sun Nov 12 23:37:39 EST 1995 - matthew green <mrg@eterna.com.au>
	include/config.h.phone, include/config.h.lynx,
	include/config.h.dist:
		remove some old cruft.
	source/mail.c:
		count From_ lines correctly.
	source/count.l, include/count.l, include/Makefile.in:
		move count.l to include.
	configure.in, configure, aclocal.m4:
		update sendmail check to use macros.
	source/vars.c:
		comment last of help_service code.

Fri Nov 10 02:55:21 EST 1995 - matthew green <mrg@eterna.com.au>
	include/ircaux.h, source/alias.c, source/ctcp.c,
	source/dcc.c, source/edit.c, source/exec.c, source/hook.c,
	source/ignore.c, source/input.c, source/ircaux.c,
	source/keys.c, source/lastlog.c, source/names.c,
	source/stack.c, source/translat.c, source/vars.c,
	source/window.c:
		remove all occurances of my_stricmp/my_strnicmp
		in a loop where one string being compared was
		always upper or lower already.  convert some older
		changes like this to use upper() and lower().

Mon Nov  6 01:03:06 CST 1995 - scott reynolds <scottr@og.org>
	script/imap:
		updated mapper script from ian.

Sat Nov  4 21:06:29 EST 1995 - matthew green <mrg@eterna.com.au>
	Makefile.in, doc/ircbug.1 doc/query-pr.1:
		install manuals, and the ircbug program.

2.8.12beta
Wed Nov  1 23:27:33 EST 1995 - matthew green <mrg@eterna.com.au>
	include/config.h.dist, include/config.h.lynx,
	include/config.h.phone, source/help.c:
		#ifdef support for help services.  not enabled by default.

Wed Nov  1 23:17:10 EST 1995 - matthew green <mrg@eterna.com.au>
	help/window/same_window_only, include/vars.h,
	include/vars.h.proto, source/window.c, source/vars.c:
		add philippe's same_window_only set.

Wed Nov  1 22:21:46 EST 1995 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		call do_channel() with join -i; fixes pr#23
	configure.in, aclocal.m4, ircbug.in:
		look for sendmail now; don't assume it is in /usr/sbin.
	easyinst:
		don't call configure with ". ./configure".  export necessary
		variables (IRCLIB and bindir).
		remove all help service stuff -- they don't exist anymore.

Tue Oct 31 00:58:59 CST 1995 - scott reynolds <scottr@og.org>
	Makefile.in, acconfig, include/defs.h.in, configure.in, configure,
	source/irc.c, source/ircflush.c, source/ircio.c, source/wserv.c:
		add support for SOCKS firewall traversal library.
	INSTALL:
		SOCKS support, and a caveat.

Mon Oct 30 23:05:30 EST 1995 - matthew green <mrg@eterna.com.au>
	source/names.c:
		fix switch_channels; from philippe.

Fri Oct 27 20:23:29 CDT 1995 - scott reynolds <scottr@og.org>
	include/config.h.dist, include/struct.h, include/vars.h.proto,
	source/input.c, source/screen.c, source/status.c, source/vars.c,
	source/window.c:
		double status line, from Christophe Kalt.
	source/dcc.c:
		double status line, plus fix a bogon when compiling without
		NON_BLOCKING_CONNECTS.
	include/vars.h:
		from vars.h.proto above.
	include/irc.h:
		struct.h must be included only after INPUT_BUFFER_SIZE
		is defined.  fixes PR #21.

2.8.11beta
Wed Oct 25 15:14:49 EST 1995 - matthew green <mrg@eterna.com.au>
	source/alias.c, source/dcc.c, source/help.c, source/names.c:
		fix bug in alias_server(), missing #ifdef nonblocking,
		set use_help_service properly, call is_current_channel()
		correctly, and clear the server's channel list in a
		better way.  all from philippe.

Tue Oct 24 23:56:44 EST 1995 - matthew green <mrg@eterna.com.au>
	source/numbers.c:
		fix bug that made failed oper commands close the server.
		from philippe.

Fri Oct 13 01:15:25 EST 1995 - matthew green <mrg@eterna.com.au>
	include/dcc.h, include/ircterm.h, source/alias.c, source/ctcp.c,
	source/dcc.c, source/help.c, source/hold.c, source/if.c,
	source/menu.c, source/names.c, source/output.c, source/reg.c,
	source/scandir.c, source/server.c, source/status.c:
		more fixes for solaris warnings.

Fri Oct 13 01:14:59 EST 1995 - matthew green <mrg@eterna.com.au>
	source/parse.c, source/server.c, include/parse.h, include/server.h:
		begin framework for other parsers.

Fri Sep 22 11:01:28 CDT 1995 - scott reynolds <scottr@og.org>
	source/reg.c:
		enable new _wild_match(), remove old version.

Thu Sep 21 14:14:32 EST 1995 - matthew green <mrg@eterna.com.au>
	source/keys.c, source/edit.c, source/edit.h:
		rename clear_screen() to irc_clear_screen().

Tue Sep 12 23:25:00 CDT 1995 - scott reynolds <scottr@og.org>
	include/edit.h, source/edit.c, source/whois.c:
		ison_ison() -> ison_now(); add dummy arg and prototype
		it the way add_ison_to_whois() expects.
	source/reg.c:
		Integrate new version of _wild_match() from
		<dalewis@acsu.buffalo.edu> with minor changes, but don't
		enable/use it yet.

Fri Sep  8 12:57:14 CDT 1995 - scott reynolds <scottr@og.org>
	include/ircterm.h, source/edit.c, source/input.c, source/irc.c,
	source/menu.c, source/output.c, source/parse.c, source/screen.c,
	source/status.c, source/term.c:
		Move the #include <{curses.h|term.h}> into ircterm.h, and
		account for some nasty #define's in some lame <term.h>
		implementations.

Thu Sep  7 10:28:20 CDT 1995 - scott reynolds <scottr@og.org>
	source/hook.c, source/ircaux.c, source/ircio.c:
		More portability fixes pointed out by HP's cc.

Wed Sep  6 21:02:01 CDT 1995 - scott reynolds <scottr@og.org>
	include/irc_std.h:
		Remove unused TRUE/FALSE #defines.
	include/hook.h.proto:
		Finish up previous change.
	configure.in:
		Fix a comment.

Wed Sep  6 16:52:51 CDT 199 - scott reynolds <scottr@og.org>5
	include/irc.h:
		If we HAVE_STDARG_H but we're not __STDC__, just forget
		about <stdarg.h>.
	include/ctcp.h, include/debug.h, include/defs.h, include/hook.h,
	include/output.h, include/server.h, include/whois.h:
		Undo previous HAVE_STDARG_H changes.

Tue Sep  5 15:31:06 CDT 1995 - scott reynolds <scottr@og.org>
	source/alias.c:
		Fix "illegal pointer combination" warnings.

Tue Sep  5 14:57:59 CDT 1995 - scott reynolds <scottr@og.org>
	include/ircterm.h, include/term.c:
		HP-UX declares arg3 to tputs() differently.  Barf.

Wed Sep  6 01:34:53 EST 1995 - matthew green <mrg@eterna.com.au>
	configure, configure.in, include/defs.h, include/ircterm.h,
	include/term.h, source/edit.c, source/funny.c, source/help.c,
	source/input.c, source/irc.c, source/ircaux.c, source/keys.c,
	source/menu.c, source/output.c, source/parse.c, source/screen.c,
	source/status.c, source/term.c, source/vars.c, source/window.c,
	source/wserv.c:
		renamed term.h to ircterm.h so that it wouldn't conflict
		with <term.h>.  fixed test for term.h (sigh).

Tue Sep  5 07:30:14 CDT 1995 - scott reynolds <scottr@og.org>
	Makefile.in, configure, configure.in, source/Makefile.in:
		Move burden of generating vars.h, hook.h, and keys.h to
		developers.
	include/Makefile.in:
		Added.
	include/vars.h, include/hook.h, include/keys.h:
		Generated and added.

Tue Sep  5 21:29:02 EST 1995 - matthew green <mrg@eterna.com.au>
	acconfig.h, configure, configure.in, include/defs.h.in, include/irc.h,
	source/edit.c, source/input.c, source/irc.c, source/ircio.c,
	source/menu.c, source/output.c, source/parse.c, source/scandir.c,
	source/screen.c, source/status.c, source/term.c:
		quell some gcc warnings under solaris 2.

Sun Sep  3 13:22:38 CDT 1995 - scott reynolds <scottr@og.org>
	include/ctcp.h, include/debug.h, include/hook.h.proto,
	include/output.h, include/server.h, include/whois.h:
		Don't try using '...' in prototypes unless __STDC__ is
		defined.  Takes care of some brain-damaged stock compilers
		on otherwise ANSI-aware systems.  In particular, this
		takes care of HP-UX 9 and, presumably, SunOS 4 systems.

2.8.10
Sun Sep  3 23:41:33 EST 1995 - matthew green <mrg@eterna.com.au>
	include/alias.h, include/exec.h, include/irc.h, include/list.h,
	include/menu.h, include/names.h, include/screen.h, include/status.h,
	include/struct.h, include/whois.h, include/window.h, source/alias.c,
	source/crypt.c, source/ctcp.c, source/dcc.c, source/edit.c,
	source/exec.c, source/help.c, source/history.c, source/hook.c,
	source/ignore.c, source/irc.c, source/ircaux.c, source/ircio.c,
	source/keys.c, source/lastlog.c, source/list.c, source/mail.c,
	source/menu.c, source/names.c, source/numbers.c, source/parse.c,
	source/screen.c, source/server.c, source/stack.c, source/status.c,
	source/term.c, source/whois.c, source/window.c, doc/VERSIONS:
		fix most of -Wstrict-prototypes, a few more ansi c parameter
		promotion fixes (not sure if any are left), up version, fix
		a few more warnings, and remove some unused code.

Sun Sep  3 00:16:23 CDT 1995 - scott reynolds <scottr@og.org>
	source/edit.c, source/input.c, source/menu.c, source/output.c,
	source/parse.c, source/screen.c, source/status.c, source/term.c:
		Include <curses.h> if needed.
	include/term.h:
		Prototype putchar_x() properly.

Sat Sep  2 23:07:56 CDT 1995 - scott reynolds <scottr@og.org>
	acconfig.h, configure.in, configure, include/defs.h.in,
	source/irc.c, source/term.c:
		Test for tputs() declaration in <curses.h>.  Rename
		USING_CURSES to INCLUDE_CURSES_H, since the new
		use of this is a superset of the old.

Sun Sep  3 12:04:35 EST 1995 - matthew green <mrg@eterna.com.au>
	source/crypt.c, source/dcc.c, source/debug.c, source/exec.c,
	source/hook.c, source/irc.c, source/ircaux.c, source/ircflush.c,
	source/ircio.c, source/mail.c, source/menu.c, source/names.c,
	source/newio.c, source/screen.c, source/server.c, source/wserv.c,
	include/irc.h, include/newio.h, include/debug.h:
		move newio.c functions from irc.h to newio.h, and include
		this.  more prototypes and some style fixes.  removed some
		unused functions.

Fri Sep  1 10:31:02 CDT 1995 - scott reynolds <scottr@og.org>
	source/alias.c, source/dcc.c, source/exec.c, source/keys.c,
	source/reg.c, source/vars.c:
		Fix some inconsistencies for certain static functions.

Fri Sep  1 09:41:04 CDT 1995 - scott reynolds <scottr@og.org>
	include/ctcp.h, include/debug.h, include/hook.h.proto,
	include/server.h:
		Put some HAVE_STDARG_H lines back that I had deleted
		earlier.
	include/ircaux.h, source/ircaux.c:
		Another ANSI prototype.

Thu Aug 31 08:20:54 CDT 1995 - scott reynolds <scottr@og.org>
	include/ircaux.h, include/screen.h, include/whois.h,
	include/window.h, source/edit.c, source/ircaux.c,
	source/notice.c, source/notify.c, source/screen.c,
	source/stack.c, source/status.c:
		More ANSI prototyping.

Wed Aug 30 23:00:41 CDT 1995 - scott reynolds <scottr@og.org>
	include/alias.h, include/crypt.h, include/ctcp.h, include/dcc.h,
	include/debug.h, include/edit.h, include/exec.h, include/flood.h,
	include/funny.h, include/help.h, include/history.h, include/hold.h,
	include/hook.h.proto, include/if.h, include/input.h,
	include/ignore.h, include/irc.h, include/ircaux.h, include/keys.h,
	include/lastlog.h, include/list.h, include/log.h, include/mail.h,
	include/menu.h, include/names.h, include/notify.h,
	include/numbers.h, include/output.h, include/parse.h,
	include/queue.h, include/screen.h, include/server.h,
	include/stack.h, include/status.h, include/term.h,
	include/translat.h, include/vars.h.proto, include/whois.h:
		Consistency.

Wed Aug 30 12:45:32 CDT 1995 - scott reynolds <scottr@og.org>
	include/alias.h, include/dcc.h, include/list.h, include/names.h,
	include/notify.h, include/server.h, include/struct.h:
		ANSIfy some more prototypes.
	source/alias.c, source/ctcp.c, source/dcc.c, source/edit.c,
	source/exec.c, source/funny.c, source/history.c, source/hold.c,
	source/hook.c, source/if.c, source/ignore.c, source/input.c,
	source/irc.c, source/ircaux.c, source/keys.c, source/list.c,
	source/menu.c, source/names.c, source/newio.c, source/notice.c,
	source/numbers.c, source/output.c, source/parse.c, source/screen.c,
	source/server.c, source/status.c, source/term.c, source/vars.c,
	source/window.c:
		Various ANSI prototype-related cleaning, and some
		cosmetics to keep gcc -Wall from complaining.
	source/reg.c:
		Fix operator precedence problem in _wild_match() and
		the way it deals with backslash quoting.

Mon Aug 28 23:08:30 EST 1995 - matthew green <mrg@eterna.com.au>
	include/window.h, source/server.c, source/irc.c, source/window.c,
	include/irc.h, include/irc_std.h:
		finish server group stuff, remove couple more warnings with
		proper prototypes.
	configure, configure.in:
		redo signal processing and make AMS mail smarter.
	include/config.h.phone, include/config.h.lynx, include/config.h.old,
	include/config.h.lynx:
		remove DYNAMIC_SLIP, and, totally remove config.h.old.

Mon Aug 28 17:33:32 EST 1995 - matthew green <mrg@eterna.com.au>
	source/server.c, source/window.c, source/keys.h.proto, source/list.h,
	source/numbers.h, source/server.h, source/struct.h,
	source/vars.h.proto, source/window.h:
		add some of the server group stuff.  isn't use, but, the
		user interface is mostly done.  new window commands
		addgroup and delgroup exist.

Thu Aug 24 13:13:21 EST 1995 - matthew green <mrg@eterna.com.au>
	source/funny.c, source/keys.c, source/server.c, source/status.c:
		more casts.

Thu Aug 24 01:41:12 EST 1995 - matthew green <mrg@eterna.com.au>
	source/alias.c, source/dcc.c, source/edit.c, source/input.c,
	source/lastlog.c, source/newio.c, source/screen.c,
	source/server.c, source/status.c, source/keys.c, source/vars.c,
	source/window.c, source/if.c:
		more ansi function definitions, fix picky compiler
		warnings, and fix a few bogons in previous change.

Wed Aug 23 22:50:37 EST 1995 - matthew green <mrg@eterna.com.au>
	source/alias.c, source/edit.c, source/hold.c, source/if.c,
	source/input.c, source/keys.c, source/menu.c, source/names.c,
	source/output.c, source/screen.c, source/term.c, source/window.c,
	include/alias.h, include/window.h:
		add a lot of ansi function definitions.

Wed Aug 23 21:43:46 EST 1995 - matthew green <mrg@eterna.com.au>
	source/window.c:
		call window_check_servers() at the end of
		window_get_connected() to maybe ensure that all servers are
		actually connected.
	source/translat.c:
		add a couple of ansi function declarations.

2.8.9
Wed Aug 23 13:04:54 EST 1995 - matthew green <mrg@eterna.com.au>
	source/server.c:
		a quick hack to stop the spinning server loop bug.  needs
		to be revised.
	source/irc.c, doc/VERSIONS:
		update.

Mon Aug 14 09:54:10 CDT 1995 - scott reynolds <scottr@og.org>
	Makefile.in:
		Spelling correction.
	include/hook.h.proto, include/keys.h.proto, include/vars.h.proto:
		Add ANSI prototypes.
	include/edit.h, include/irc.h, include/ircaux.h, include/server.h,
	include/term.h, include/window.h:
		Clean up and add a few more ANSI prototypes.
	source/alias.c, source/edit.c, source/hook.c, source/irc.c,
	source/keys.c, source/numbers.c, source/screen.c, source/server.c,
	source/term.c, source/vars.c, source/window.c:
		First run through gcc -Wall -Wmissing-prototypes.  Lots
		more needs to be done.

Fri Aug 11 03:53:13 EST 1995 - matthew green <mrg@eterna.com.au>
	source/alias.h, source/crypt.h, source/ctcp.h, source/dcc.h,
	source/debug.h, source/edit.h, source/exec.h, source/flood.h,
	source/funny.h, source/history.h, source/hold.h, source/ignore.h,
	source/input.h, source/ircaux.h, source/list.h, log.h,
	source/mail.h, source/menu.h, source/names.h, source/notify.h,
	source/numbers.h, source/output.h, screen.h, source/server.h,
	source/status.h, source/struct.h, source/talkd.h, source/term.h,
	source/window.h:
		consistancy.

Thu Aug 10 01:43:01 EST 1995 - matthew green <mrg@eterna.com.au>
	source/debug.c, source/exec.c, source/flood.c, source/hook.c,
	source/ignore.c, source/menu.c, source/names.c, source/notify.c,
	source/numbres.c, source/screen.c, source/server.c, source/stack.c,
	source/window.c, source/alias.c, source/dcc.c, source/crypt.c,
	include/debug.h:
		fix prototype warnings and bogons in debug.c with -DDEBUG.

Wed Aug  9 08:50:51 EST 1995 - matthew green <mrg@eterna.com.au>
	source/irc.c, source/dcc.c, include/dcc.h:
		prototype dcc_check(), and attempt to make non blocking
		connects work more sanely.

Tue Aug  8 16:24:27 CDT 1995 - scott reynolds <scottr@og.org>
	include/alias.h, include/crypt.h, include/ctcp.h, include/dcc.h,
	include/debug.h, include/defs.h, include/edit.h, include/exec.h,
	include/flood.h, include/funny.h, include/help.h, include/history.h,
	include/hold.h, include/if.h, include/ignore.h, include/input.h,
	include/irc.h, include/irc_std.h, include/ircaux.h, include/lastlog.h,
	include/list.h, include/log.h, include/mail.h, include/menu.h,
	include/names.h, include/notify.h, include/numbers.h, include/output.h,
	include/parse.h, include/queue.h, include/screen.h, include/server.h,
	include/stack.h, include/status.h, include/struct.h, include/talkd.h,
	include/term.h, include/translat.h, include/whois.h, include/window.h,
	source/gzip.h:
		Add ANSI prototypes to a great many functions.
	source/irc.c:
		call to set_window_server was missing "all" arg
	source/screen.c:
		call to dgets() was missing "specials" arg

Tue Aug  8 12:16:25 EST 1995 - matthew green <mrg@eterna.com.au>
	source/server.c:
		fix a bogon glen left lying around in failed server
		connections.

2.8.8
Wed Aug 02 00:57:54 MDT 1995 - glen mccready <glen@qnx.com>
	source/irc.c, source/ircaux.c, source/dcc.c, source/screen.c,
	source/server.c, include/dcc.h, include/ircaux.h:
		mostly working non-blocking connect code
			define NON_BLOCKING_CONNECTS
		a start at "/server ."
			define SERVER_DOT
	source/alias.c, source/edit.c, source/exec.c, source/names.c,
	source/parse.c, source/stack.c, source/window.c, include/irc.h:
		use `zero' and `one' rather than "0" and "1"
		use my_stricmp() less to save tolower()ing the string
	source/newio.c:
		the new_free() mentioned below was necessary
	source/notify.c:
		the extra test broke /notify
	source/if.c, source/reg.c:
		cleaned up some warnings

Tue Jul 25 23:29:04 EST 1995 - matthew green <mrg@eterna.com.au>
	source/ircaux.c, source/newio.c:
		fix typo in ircaux.c.
		remove dated ESIX code (read/recv)
		make new_close() smarter:  doesn't matter if you
		call it with -1, and doesn't new_free() the io_rec,
		as it's likely we'll want it later anway.
	source/dcc.c, source/edit.c, source/file.c, source/flood.c,
	source/history.c, source/ignore.c, source/ircflush.c,
	ircsig.c, source/lastlog.c, source/list.c, source/log.c,
	source/mail.c, source/notify.c, source/reg.c, source/screen.c,
	stack.c, source/translat.c, source/vars.c, source/whois.c,
	source/wserv.c:
		for (;foo;) -> while (foo)
	source/ircserv.c, source/ircio.c, source/Makefile.in,
	doc/ircII.1, doc/SecureIRC, source/file.c, source/irc.c,
	source/server.c, Makefile.in:
		renamed ircserv to ircio.

Thu Jul 20 02:45:39 CDT 1995 - christopher williams <cgw@io.com>
	source/edit.c:
		fix bug in execute_timer() to set to_window
		to curr_scr_win

Wed Jul 19 22:57:57 MDT 1995 - glen mccready <glen@qnx.com>
	source/ctcp.c, include/server.h:
		fix for premature ctcp flood response

Tue Jul 18 23:19:35 CDT 1995 - scott reynolds <scottr@og.org>
	configure.in, configure, acconfig.h, include/defs.h.in,
	include/irc.h:
		check for varargs.h
	include/ctcp.h, include/debug.h, include/irc.h,
	include/output.h, include/server.h, include/whois.h,
	include/hook.h.proto, source/alias.c, source/ctcp.c,
	source/debug.c, source/help.c, source/hook.c,
	source/ircaux.c, source/output.c, source/server.c,
	source/term.c source/whois.c:
		use stdarg.h if available.

Tue Jul 18 00:38:02 MDT 1995 - glen mccready <glen@qnx.com>
	source/dcc.c:
		added dcc rename -chat

Tue Jul  4 23:21:17 CDT 1995 - scott reynolds <scottr@og.org>
	configure.in, configure:
		general organizational cleanup.

Tue Jul  4 13:47:22 CDT 1995 - scott reynolds <scottr@og.org>
	source/term.c, source/output.c:
		check for sys/ioctl.h; remove dead code.

Mon Jul  3 23:57:41 CDT 1995 - scott reynolds <scottr@og.org>
	source/term.c:
		set up termcap before twiddling tty settings.

2.8.7
Sat Jul  1 21:44:20 EST 1995 - matthew green <mrg@eterna.com.au>
	source/names.c:
		various fixes to previous changes.
	configure.in, configure:
		portability and style fixes.

Sat Jul  1 21:46:57 EST 1995 - scott reynolds <scottr@og.org>
	configure.in, configure, Makefile.in, source/term.c,
	acconfig.h:
		install help pages with pax/tar/cpio.  do termios
		stuff as termios/sgtty/termio.

Mon Jun 26 00:17:46 EST 1995 - matthew green <mrg@eterna.com.au>
	source/dcc.c:
		add errno to dcc send close message.
	configure, configure.in:
		fix bug in test for unsigned 32 bit int's.

Sat Jun 24 06:23:08 EST 1995 - matthew green <mrg@eterna.com.au>
	include/lastlog.h, include/names.h, source/edit.c,
	source/irc.c, source/names.c, source/numbers.c,
	source/screen.c, source/server.c, source/window.c:
		added connected member to ChannelList.  reworked
		some PHONE/NOPHONE things to be simpler, fix a
		couple of memory leaks in names.c

Sat Jun 24 04:31:05 EST 1995 - matthew green <mrg@eterna.com.au>
	source/edit.c:
		do st_mode in a more sane way.

Thu Jun 22 23:54:57 EST 1995 - matthew green <mrg@eterna.com.au>
	source/dcc.c, source/screen,c, source/server.c,
	source/window.c:
		remove dgets timed out messages.  reverse log on
		PHONE and call it NOPHONE for most.
	source/alias.c, help/alias/functions:
		idle() command, and doc for idle and strftime, from
		scottr@plexus.com.
	help/
		added.

Wed Jun  7 23:52:56 EST 1995 - matthew green <mrg@eterna.com.au>
	source/crypt.c, source/dcc.c, source/exec.c, source/irc.c,
	source/ircaux.c, source/ircserv.c, source/screen.c,
	source/server.c:
		use new_close() not close().

2.8.6
Wed Jun  7 00:24:34 EST 1995 - matthew green <mrg@eterna.com.au>
	source/server.c:
		couple of fixes from philippe i missed, and removal
		of old junk (local_ip_address).
	include/edit.h, include/hold.h, include/input.h,
	include/irc.h, include/keys.h.proto, include/menu.h,
	include/names.h, include/output.h, include/screen.h,
	include/term.h, include/window.h, source/edit.c,
	source/hold.c, source/input.c, source/irc.c,
	source/keys.c, source/menu.c, source/names.c,
	source/output.c, source/screen.c, source/term.c,
	source/window.c:
		don't ask.
	source/irc.c, doc/VERSIONS:
		release.

2.8.5

a big thanks to philippe for this version.

Sat May 27 00:02:13 EST 1995 - matthew green <mrg@eterna.com.au>
	configure configure.in:
		handle space or tab in version grovelling.
	source/edit.c:
		added phil to info.
	source/irc.c, doc/VERSIONS:
		release.

Fri May 26 23:55:35 EST 1995 - matthew green <mrg@eterna.com.au>
	include/funny.h, include/names.h, include/server.h,
	include/window.h, source/alias.c, source/ctcp.c,
	source/edit.c, source/funny.c, source/irc.c, source/names.c,
	source/notice.c, source/numbers.c, source/parse.c,
	source/screen.c, source/server.c, source/status,c,
	source/window.c:
		a bunch of changes from philippe relating to
		windows and servers and channels and other little
		things.  /window server, channel and bind all work
		MUCH better.

2.8.4
Fri May 26 23:54:19 EST 1995 - matthew green <mrg@eterna.com.au>
(actually 19950412)
	source/names.c:
		fix a buglet in previous.

2.8.3
Tue Apr 11 22:04:49 EST 1995 - matthew green <mrg@eterna.com.au>
	source/names.c:
		optimise a Hell of a lot of things.
	source/server.c:
		remove dyanmic slip stuff.  we do this a better
		way already..
	source/names.c, source/server.c, source/parse.c,
	source/notice.c, include/names.h:
		rework the channel_list to be a server-local thing
		(and thus attached to the server_list).  this lets
		multi-servers work better.

Sun Apr  9 23:20:17 EST 1995 - matthew green <mrg@eterna.com.au>
	script/tabkey:
		fix to allow nicks with \'s in them work.

2.8.2
Thu Apr  6 00:37:12 EST 1995 - matthew green <mrg@eterna.com.au>
	source/names.c:
		removed bogus patch.

Tue Apr  4 01:18:47 EST 1995 - matthew green <mrg@eterna.com.au>
	source/irc.c:
		patch for qnx's select lossage from glen@qnx.com.

2.8.1
Tue Apr  4 01:04:44 EST 1995 - matthew green <mrg@eterna.com.au>
	configure.in/configure:
		quick patch to fix message on sunos, and autoconf
		2.2.
	include/names.h, source/names.c:
		fix from levan@enstb.enst-bretagne.fr for cached
		mode strings and channel limits.
	include/window.h, source/edit.c, source/names.c,
	source/status.c, source/window.c:
		fixes from levan@enstb.enst-bretagne.fr for
		various window/server problems.
	source/help.c, source/numbers.c:
		fixes from levan@enstb.enst-bretagne.fr for dumb
		mode and wait prompts.  maybe this should be fixed
		in add_wait_prompt() instead...
	source/edit.c:
		update poxaV's address.
	source/irc.c:
		don't do the notify_list if we aren't connected!
	source/notify.c:
		fix core dump.
	source/screen.c:
		fixed select() return value.  duh.
	source/server.c:
		fixes from levan for port stuff.  fixes from me
		for a stupid core dump that shouldn't happen.  we
		reset the entire server connection list if we get
		this `impossible' case.  should warn the user too,
		i guess.

2.8
Thu Jan 26 18:13:57 EST 1995 - matthew green <mrg@eterna.com.au>
	released to the public.

2.7.3
Tue Jan 24 00:13:28 EST 1995 - matthew green <mrg@eterna.com.au>
	configure, configure.in, include/exec.h, include/irc_std.h
	source/exec.c:
		some fixes for next:  major lossage head damaged
		i don't know how to organise an operating system
		such that it works -or- i'm just a stupid git who
		has no idea about standards.  you choose.

2.7.2
Sat Jan 21 12:34:02 EST 1995 - matthew green <mrg@eterna.com.au>
	source/dcc.c:
		always make sure from_server is set in dcc_open.
	source/edit.c:
		some zcat fixes.
	configure, configure.in:
		-lc -lposix for NeXT.

2.7.1
Mon Jan 16 20:14:59 EST 1995 - matthew green <mrg@eterna.com.au>
	source/server.c, source/edit.c, include/server.h:
		added /disconnect.

Mon Jan 16 17:23:38 EST 1995 - matthew green <mrg@eterna.com.au>
	source/parse.c:
		can't use '\a' on broken compilers.  what a pile
		of shit they are.  found by comstud.

Sun Jan 15 12:14:39 EST 1995 - matthew green <mrg@eterna.com.au>
	source/newio.c:
		fixed bug caused with /flush sending a null rd
		value to new_select().  duh.  found by
		arnaud.girsch@insa-lyon.fr.

2.7
Thu Jan 12 21:20:04 EST 1995 - matthew green <mrg@eterna.com.au>
	2.7 released to the world.

Wed Jan 11 14:16:34 EST 1995 - matthew green <mrg@eterna.com.au>
	source/server.c:
		fixed for new dgets_errno being -1 for read == 0.
		broken strerror() on losing systems.

Tue Jan 10 23:40:24 EST 1995 - matthew green <mrg@eterna.com.au>
	source/whois.c:
		i hate c.  stdarg fixes me and glen bashed into
		working.
	source/window.c:
		doh!  thanks glen.

2.6.10
Sat Jan  7 01:30:11 EST 1995 - matthew green <mrg@eterna.com.au>
	configure.in:
		fixed typo.
	NEWS:
		updated for 2.7
	source/server.c:
		fixed bug in dcc send/chat and non-first server
		connected to.
	include/vars.h.proto, include/keys.h.proto,
	include/hook.h.proto:
		changed __P macro.
	source/ctcp.c source/debug.c source/file.c source/flood.c
	source/funny.c source/hold.c source/ircflush.c
	source/ircserv.c source/lastlog.c source/list.c
	source/menu.c source/notice.c source/output.c source/reg.c:
		reformat.  nothing else needed now.

2.6.9
Thu Jan  5 17:52:00 EST 1995 - matthew green <mrg@eterna.com.au>
	source/vars.c:
		fixed losing ansi stuff.
	Makefile.in:
		added cleandir and realclean targets.

Wed Jan  4 22:44:18 EST 1995 - matthew green <mrg@eterna.com.au>
	configure.in, source/help.c, source/mail.c:
		updated fully for autoconf 2.x.  this could lead
		to some breakage.  we'll see.
	source/edit.c:
		make `/topic * foo' work as expected.
	source/keys.c, source/term.c:
		fixed eight_bit_mode and /bind'ing char's with an
		eigth bit set.

2.6.8
Tue Jan  3 01:14:53 EST 1995 - matthew green <mrg@eterna.com.au>
	source/
		removed all occurances of "index" as a variable.
		move the ansi prototype macro from __P() to _()
	code "freeze" for 2.7

Mon Jan  2 16:44:10 EST 1995 - matthew green <mrg@eterna.com.au>
	source/names.c, source/funny.c, source/parse.c,
	include/names.h:
		added new method of user joining for irc 2.9 (
		JOIN #foo^G[ov]) handling.

Sun Jan  1 21:39:58 EST 1995 - matthew green <mrg@eterna.com.au>
	source/dcc.c, source/server.c, include/server.h
		added struct in_addr to server structure that is
		filled in with getsockname() and is used in dcc
		requests.
	source/dcc.c:
		added idea from mark to show unknown dcc requests.
	source/newio.c:
		fixed new_select() to call select with the correct
		first argument.

2.6.7
Thu Dec 29 22:22:34 EST 1994 - matthew green <mrg@eterna.com.au>
	source/Makefile.in:
		fixed lossage with wterm dependancies.
	source/irc.c:
		fixed "irc --" and "irc -q nick" core dumps.
	source/input.c:
		make transpose chars work at the end of line.
	doc/ircII.1:
		updated my email address.

2.6.6
Wed Dec 21 20:43:04 EST 1994 - matthew green <mrg@eterna.com.au>
	source/Makefile.in:
		updated dependancies.  (problems pointed out by
		daniel carosone).
	source/dcc.c:
		read in to the *end* of the buffer, dork.

2.6.5
Mon Dec 19 02:57:38 EST 1994 - matthew green <mrg@eterna.com.au>
	Makefile.in, configure.in:
		some changes as needed for autoconf 2.x.
	source/dcc.c, source/window.c, include/dcc.h:
		might have fixed the bug with bsd/dcc chat.

2.6.4
Mon Dec 19 01:47:21 EST 1994 - matthew green <mrg@eterna.com.au>
	source/irc.c, source/notice.c, include/irc.h:
		added -q option for quick startup.

Mon Dec 19 01:32:15 EST 1994 - matthew green <mrg@eterna.com.au>

	source/edit.c, source/names.c, source/screen.c,
	source/window.c, include/window.h
		added 'bind' and 'unbind' window commands.
	source/edit.c:
		moved NOVICE /part stuff to only be when we are
		actually sending a JOIN to the server.

Sun Dec 18 23:00:54 EST 1994 - matthew green <mrg@eterna.com.au>
	easyinst:
		fixed bug in question asking.
	source/server.c:
		fixed lossage with /server -delete, reported by
		scottr.
	source/parse.c:
		removed bogus fix from cjs@netcom.com.
	source/alias.c:
		still fixing chanusers().
	source/exec.c:
		close all unneeded fd's in /exec now.
	source/numbers.c:
		try to set the message_from level to the channel
		the numeric is about, if we can.
	source/screen.c:
		move closing in to close_all_screen() so we can
		call it for /exec also.

2.6.3
Sun Nov 27 03:16:16 EST 1994 - matthew green <mrg@eterna.com.au>

	source/alias.c:
		fix for chanusers() from Greg Jarman <amigo@deakin.edu.au>
	source/ctcp.c
		fix for do_echo() from taner
	source/window.c
		made default JOIN rather than CHANNEL for /win join
	source/parse.c
		fix for /server lossage from cjs@netcom.com
	source/translat.c:
		fix for /set -translation

Sun Nov 27 02:36:23 EST 1994 - matthew green <mrg@eterna.com.au>

	source/screen.c, source/vars.c, include/vars.h.proto:
		added dave leonard's screen_options stuff, as well
		as some bug fixes he found.

Fri Nov 25 16:58:00 EST 1994 - matthew green <mrg@eterna.com.au>

	source/dcc.c:
		got fix for dcc problems from Scott Johnson
		<scottj@neuron.cs.tamu.edu>

Tue Nov 15 01:27:40 EST 1994 - matthew green <mrg@eterna.com.au>

	source/dcc.c:
		added diagnostic to attempt to observe losing dcc
		chat and newer-bsd's.  it appears that somewhere
		between 2.5 and 2.6.2 it was fixed -- perhaps the
		edit.c lossage fixed in 2.6.1.
	source/edit.c:
		/join now defaults to sending a JOIN command rather
		than sending a CHANNEL command... duh!

2.6.2
Mon Nov 14 01:23:44 EST 1994 - matthew green <mrg@eterna.com.au>

	source/names.c, source/server.c:
		fixed bug avalon found where death of other
		servers would cause channel lists to be broken.
	source/screen.c:
		fully initialised struct timeval for window create.
		
2.6.1
Tue Nov 08 02:35:r9 EST 1994 - matthew green <mrg@eterna.com.au>

	Makefile.in, mkinstalldirs:
		removed old garbage, and we now use noah's
		mkinstalldirs..
	include/help.h, include/if.h, include/queue.h:
		added to help fix edit.c lossage.
	include/alias.h, include/crypt.h, include/edit.h,
	include/exec.h, include/history.h, include/hook.h.proto,
	include/ignore.h, include/irc.h, include/keys.h.proto,
	include/notify.h, include/parse.h, include/server.h,
	include/stack.h, include/parse.h, include/vars.h.proto,
	include/window.h, source/alias.c, source/crypt.c,
	source/edit.c, source/exec.c, source/help.c,
	source/history.c, source/hook.c, source/if.c,
	source/ignore.c, source/keys.c, source/match.c,
	source/names.c, source/notice.c, source/notify.c,
	source/queue.c, source/server.c, source/stack.c,
	source/translat.c, source/vars.c, source/window.c,
	source/irc.c:
		many of the functions in the edit.c command array
		were called with three args, but these functions
		only took 2 args.  all fixed up and prototyped now.
		who knows what lossage this caused.  found by
		diane bruce (db@diana.ocunix.on.ca).

2.6
Tue Oct 18 19:17:49 EST 1994 - matthew green <mrg@eterna.com.au>

	script/newformat
		does $R processing for stats l output.  works only
		on the local server, though.  from ian.

Mon Oct 17 21:59:21 EST 1994 - matthew green <mrg@eterna.com.au>

	source/reg.c:
		% was broken in pattern matching.  got a fix from
		ian and no_nick for this.  grumble.
	source/server.c, include/config.h.dist
		got a patch from ian to make ircii do dynamic
		ip number stuff.

2.5
Sun Oct 16 15:45:47 EST 1994 - matthew green <mrg@eterna.com.au>

	more general clean up.

2.4
Sun Oct 16 09:48:53 EST 1994 - matthew green <mrg@eterna.com.au>

	source/edit.c:
		turned on hop's for, fe and fec commands.

Sat Oct 15 13:25:47 EST 1994 - matthew green <mrg@eterna.com.au>

	general clean up of everything.

2.3.24
Wed Oct 12 09:24:36 EST 1994 - matthew green <mrg@eterna.com.au>

	source/debug.c:
		added fixes.
	source/irc.c, source/screen.c:
		added debugging info in forward_scroll. (not part
		of release tree).
	source/stack.c:
		begun finishing.

Sun Oct  9 16:42:44 EST 1994 - matthew green <mrg@eterna.com.au>

	configure.in source/crypt.c source/dcc.c source/debug.c
	source/edit.c source/exec.c source/help.c source/history.c
	source/hook.c source/ircaux.c source/server.c source/log.c
	source/term.c source/whois.c source/window.c source/output.c
	source/ctcp.c:
		stdarg.h patches from brianc@qnx.com and glen@qnx.com,
		plus some other minor fixes.  qnx support, also.

Thu Oct  6 22:16:42 EST 1994 - matthew green <mrg@eterna.com.au>

	source/server.c:
		fixed `bug' in -DPHONE where /window server + was
		setting the window level to ALL.  eeew.

Mon Sep 26 14:38:17 EST 1994 - matthew green <mrg@eterna.com.au>

	source/alias.c:
		fix for onchannel() from Scott Reynolds
		<scott@lisa.acs.nmu.edu>

2.3.23beta
Sun Sep  4 00:24:13 EST 1994 - matthew green <mrg@eterna.com.au>

	source/names.c:
		fixed /part bug,and a fix (finally!) for ischanop()
		from <cbehrens@iastate.edu>.
	source/dcc.c:
		fixed bug where you could not dcc send to one person
		more than once.
	source/screen.c:
		fixed resize bug when going to s smaller window and
		a line would be cut off.  how did this last so long?

Tue Aug  2 00:30:33 EST 1994 - matthew green <mrg@eterna.com.au>

	configure.in, include/irc.h, include/term.h, source/scandir.c,
	source/term.c:
		fixed hpux autoconf problems.
		configure now checks that -lresolv actually works,
		and doesn't break compiles.
		configure doesn't use BSDWAIT if POSIX is defined,
		so that newer bsd systems (like netbsd) will use the
		POSIX waitpid() stuff, not causes warnings..

Sun Jul 31 21:53:03 EST 1994 - matthew green <mrg@eterna.com.au>

	source/dcc.c:
		removed debug message, and a fix for DCC_RAW from
		jim_bob (jrg@doc.ic.ac.uk).

2.3.22beta
Sun Jul 31 03:07:00 EST 1994 - matthew green <mrg@eterna.com.au>

	source/names.c, source/parse.c, include/names.h
		fixed ircii not forgetting about remembered channel
		modes after the channel has been joined.
	source/queue.c, source/notify.c, source/mail.c:
		fixed compatibilty problems found with sunos cc.
	source/irc.c:
		versions.
	script/autoop, script/list, script/functions, script/imap,
	script/history-match:
		fixed autoop & list, cleaned up functions and imap,
		added history-match (Daemon).

Tue Jul 26 22:12:42 EST 1994 - matthew green <mrg@eterna.com.au>

	source/edit.c, source/alias.c:
		getcwd() fixes from cgw.
	source/dcc.h, include/dcc.h:
		added new member to the client struct, othername.
		it's currently only used by dcc_filesend() to save
		the name given as well as the full path - so that
		/dcc send file nick file works, without giving the
		full pathname for 'file'.

2.3.21b
Mon Jul 25 23:27:09 EST 1994 - matthew green <mrg@eterna.com.au>

	source/window.c:
		window() - added new commands REMOVE, which is the
		opposite of ADD, and NUMBER, which changes the refnum
		of a window, forcing a swap if needed.
	source/ircserv.c:
		removed printf()'s. no more lame messages at startup
		now.
	acconfig.h, configure.in, include/irc.h, source/alias.c,
	source/dcc.c, source/edit.c:
		configure now checks for getcwd() not getwd(), and
		everything now uses getcwd() not getwd().
	source/term.c:
		cleaned up a bit.
	script/uhnotify:
		got a fix from taner <taner@ucsd.edu>.


2.3.21a
Sat Jul 23 23:30:53 EST 1994 - matthew green <mrg@eterna.com.au>

	source/alias.c:
		fixed the broken $, bug introduced from hop's alias.c
		changes.  blah.

Sat Jul 23 18:37:25 EST 1994 - matthew green <mrg@eterna.com.au>

	source/alias.c, include/irc_std.h, source/term.c:
		removed sys/param.h, and moved it into irc_std.h.
		this was to get the newer bsd's define of BSD4_4
		(net/2 defines this as 0.5), which was then used
		in term.c to use termios.
	source/ctcp.c:
		also prints unix version (uname) in ctcp finger
		reply.
	source/scandir.c:
		removed sunos4 readdir_r() stuff.  it used to fail
		because we were getting the ucblib's readdir() but
		not using the right header files.
	include/irc_std.h, configure.in, acconfig.h:
		added a check for memmove(), which we now use if we
		are missing bcopy().


2.3.21
Sun Jul  3 17:03:52 EST 1994 - matthew green <mrg@eterna.com.au>

	source/alias.c:
		fixed bug that broke /if and chewed cpu time.

2.3.20
Sat Jul  2 17:36:41 EST 1994 - matthew green <mrg@eterna.com.au>

	this version was mostly updates from jeremy nelson
	(jnelson@iastate.edu), with a few other bits from me.

	configure, acconfig.h:
		bug fix for signal() test, and check for uname(2).
	include/dcc.h, source/notice.c, source/whois.c:
		added new hooks ENCRYPTED_NOTICE and
		ENCRYPTED_PRIVMSG from hop (jnelson@iastate.edu)
	include/names.h, source/names.c:
		fixed memory leak in recreate_mode() that hop found,
		but patched badly ;).  it now caches the string
		version of the mode for each channel, in each channel's
		channel struct.
	source/Makefile.in:
		updated dependancies.
	source/alias.c:
		reworked parser stuff from hop, plus a few new goodies.
	source/ctcp.c:
		added special parsing of ctcp SED.
		added posix uname() handling for ctcp FINGER.
	source/help.c:
		temporary fix for compressed help pages.
	source/hook.c:
		added hop's new do_hook() and assiciated routines that
		fix the bugs we had in serial numbers.
	source/if.c:
		added some of hop's if.c hacks
	source/ircaux.c:
		added hop's stristr() and rstristr() functions.
	source/parse.c:
		many bug fixes from hop.
	source/queue.c:
		added hop's queue.c after cleaning it up a bit.
	source/whois.c:
		various bug fixes from hop and myself.

version 2.3.19 never really existed.

2.3.18
Sun Mar 27 22:41:02 EST 1994 - matthew green <mrg@eterna.com.au>

	source/reg.c:
		fixed bug in matching where the string ended in \.
		found by avalon (avalon@coombs.anu.edu.au)
	source/input.c:
		fixed bug in transpose characters (avalon).
	source/alias.c:
		fixed pathetic code for showing aliases.
	source/dcc.c:
		fixed window level stuff.. bry (b@ctpm.org).
	source/hook.c 
		removing all hooks with a specific serial number
		works now (/on #hook 1 -).
	source/parse.c, source/numbers.c:
		fixed bugs with missing args

2.3.17beta
Mon Mar 21 00:08:15 EST 1994 - matthew green <mrg@eterna.com.au>

	source/crypt.c, source/help.c, source/vars.c, source/screen.c,
	source/Makefile.in:
		fixed security bugs in /help and some /set's and in
		/window create.
	configure.in:
		moved AC_PROG_CPP.
	translation/RUSSIAN*:
		added this.  thanks to dima@demos.su (Dima Ruban)
		for these.

Sat Mar 19 00:04:42 EST 1994 - matthew green <mrg@eterna.com.au>

	source/window.c:
		fixed bug in /on window_kill
	source/help.c:
		fixed lame bug in freeing nonallocated memory
	source/exec.c:
		fixed bugs in getpgrp() stuff
	source/dcc.c:
		dcc requests with the port < 1024 are now rejceted.
	source/scandir.c
		hopefully got the solaris 2 stuff right here.  i
		hate solaris 2.

2.3.16beta
Thu Feb  3 20:11:11 EST 1994 - matthew green <mrg@eterna.com.au>

	source/ctcp.c:
		fixed stupid bug
	source/parse.c:
		fixed window level problems.

2.3.15beta
Tue Feb  1 19:18:23 EST 1994 - matthew green <mrg@eterna.com.au>

	source/config.h:
		updated for the beta release.
	source/scandir.c:
		memory leak fixes, and solaris fixes.
	source/status.c:
		'mode k' bug fixed.  any non printables chars are now
		hanlded properly in the status line..

Mon Jan 17 18:48:54 EST 1994 - matthew green <mrg@eterna.com.au>

	source/parse.c:
		fixed the level of topic changes
	source/server.c, source/notice.c:
		fixed resending away's on reconnect/changing servers.
	source/notify.c:
		made `notify -' delete all the nicks in the list.

Sun Jan  9 22:47:09 EST 1994 - matthew green <mrg@eterna.com.au>

	source/ctcp.c:
		fixed ctcp flooding so that we don't see multiple
		`ctcp flood from nick'.
	source/whois.c:
		added notify_mark() all for 401.
	source/screen.c, source/wserv.c, include/screen.h:
		added the ttyname stuff, but aren't using it yet.
	source/alias.c:
		fixed stupid bug in alias parsing that gave core dumps.
		how this lasted this long i have no idea.
	source/dcc.c:
		remove the broken-dcc-times stuff, and now we just use
		the anal-ultrix stuff.
	source/parse.c:
		added message_from() things for p_channel().
	source/stack.c, source/stack.h:
		played some more.  things actually compile again here,
		but nothing new works.

2.3.14
Wed Jan  5 22:43:08 EST 1994 - matthew green <mrg@eterna.com.au>

	source/notify.c, source/notice.c, source/parse.c, source/whois.c,
	source/vars.c, include/config.h*, include/vars.h.proto,
	include/notify.h
		added notify_handler variable.
	source/irc.c:
		fixed bug in /wait.  god, what a stupid bug.

Sun Jan  2 02:36:11 EST 1994 - matthew green <mrg@eterna.com.au>

	source/scandir.c:
		fixed for readdir_r() with solaris 2.  thanks to
		Travis L Priest <T.L.Priest@LaRC.NASA.GOV> for this one.
	source/names.c:
		fixed sending of modes to server on rejoin.
	source/alias.c:
		fixed bug in $N where from_server != current_screen->
		current_window->server.
	source/ctcp.c:
		made `ctcp time' more `date' like.
	source/window.c:
		made continued line be up to 1/2 the screen.

Thu Dec 30 23:47:01 EST 1993 - matthew green <mrg@eterna.com.au>

	source/unotify:
		updated to not show UNKNOWN crap.
	source/help.c:
		fixed set help_window.  i hate help.c
	source/numbers.c:
		changed reset_nickname() etc to not have more than
		one `Nickname:' prompt waiting at a time.

Wed Dec 29 01:08:13 EST 1993 - matthew green <mrg@eterna.com.au>

	script/uhnotify:
		added new script to do cached userhost lookups for
		notify.

2.3.13
Tue Dec 28 03:26:13 EST 1993 - matthew green <mrg@eterna.com.au>

	source/edit.c:
		userhost() - now lets any number of nick's for -cmd.
	configure.in:
		fixed lame bugs in 2.3.12 that prevented it from
		even compiling.

2.3.12
Fri Dec 24 00:50:11 EST 1993 - matthew green <mrg@eterna.com.au>

	source/vars.c, source/whois.c, source/notify.c, source/parse.c
	include/vars.h.proto, include/notify.h:
		added notify stuff from checking join's, etc.
	source/help.c
		fixed typo-bug.
	source/edit.c, source/server.c:
		added /clear -unhold

Wed Dec 22 23:30:15 EST 1993 - matthew green <mrg@eterna.com.au>

	source/exec.c, configure.in, acconfig.h:
		finished svr3/twg patches, fixed the UNIX_MAIL stuff,
		finished the auto-grok signals for exec.c.

2.3.11c
2.3.11b
	source/server.c:
		fixed all known bugs in server.c ;-)
2.3.11a
Thu Dec  2 21:05:56 EST 1993 - matthew green <mrg@eterna.com.au>

	source/server.c:
		added extra debugging to dgets stuff.

2.3.11
Thu Dec  2 01:50:31 EST 1993 - matthew green <mrg@eterna.com.au>

	source/dcc.c, source/exec,c, source/irc.c, source/server.c
	source/newioc, source/screen.c:
		fixed lame bug's introduced in 2.3.9 that caused
		bogus server connections closing.

2.3.10
Sun Nov 28 13:15:14 EST 1993 - matthew green <mrg@eterna.com.au>

	source/exec.c:
		fixed POSIX kill(-pid).

Mon Nov 15 23:32:22 EST 1993 - matthew green <mrg@eterna.com.au>

	source/crypt.c source/exec.c source/file.c source/help.c
	source/irc.c source/ircaux.c source/ircflush.c source/log.c
	source/mail.c source/notice.c source/parse.c source/scandir.c
	source/term.c include/irc.h:
		svr3/wollongong tcp/ip patches applied from entropy
		(entropy@parakeet.con.wesleyan.edu)

2.3.9
Mon Nov 15 00:58:56 EST 1993 - matthew green <mrg@eterna.com.au>

	source/..:
		various fixes to remove the `stricmp' stuff so that
		ircii always uses it's own `my_stricmp'
	source/server.c, source/parse.c, source/window.c:
		fixed bug where ircii wouldn't let you /server after
		a oper kill.  removed the kludge `CLOSING_SERVER'
		code (oops, for got to remove the #define from server.h
		oh well).
	source/irc.c:
		fixed notify/clock scheluding.
	
Tue Nov  2 21:17:59 EST 1993 - matthew green <mrg@eterna.com.au>

	source/exec.c, include/irc.h:
		exec.c defines IN_EXEC_C so that in include/irc.h we
		don't include unistd.h

	source/dcc.c, source/ircserv.c, source/ircaux.c, source/newio.c
		added set_socket_options() which either calls the
		ESIX mark_socket() thing, or sets off linger and sets
		keepaline and reuseaddr on.

2.3.8
Mon Nov  1 00:45:13 EST 1993 - matthew green <mrg@eterna.com.au>

	source/edit.c:
		added /beep command which just beeps the terminal.
	source/edit.c, source/keys.c:
		added rbind command that is a reverse bind lookup.
		`/rbind parse_command' shows all keys bound to
		parse_command.
	source/status.c:
		fixed problem with alarm clock (shulick@indiana.edu)
	source/irc.c:
		handlers for SIGHUP/SIGTERM that call irc_exit().

Sun Oct 31 18:01:12 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/server.c:
		fixed bug where primary_server was -1 and used as an
		index.
	source/vars.c, source/hook.c, source/edit.c, source/alias.c,
	source/keys.c, source/notice.c:
		changed the way /save works.  you can use -bind -on
		-alias -digraph -set -notify to save just those types
		(default is all of them), and the -all switch also
		saves things that were generated by the global script.
		these are not saved by default.

Sun Oct 31 05:10:14 EST 1993 - Matthew Green <mrg@eterna.com.au>

	configure.in:
		updated for autoconf 1.7, couple of other small
		bugs fixed
	source/vars.c, include/vars.h.proto:
		added REALNAME varaible.

2.3.7
Sun Oct 24 21:47:10 EST 1993 - Matthew Green <mrg@eterna.com.au>

	too many to remember.  many bugs fixed.  hide_private_channels,
	mode #foo +l 0, away when changing servers.  on connect now has
	the port.  added posix signals when avaliable.  more real svr4
	support.  various little bits of other peoples patches added
	where still needed.

2.3.6
Mon Oct  4 02:37:27 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/status.c:
		yay!!!!!! fixed the `cursor gets lost with /window
		create' bug finally.  added a cursor_to_display() in
		update_status().
	source/alias.c:
		new funcitons pid() and ppid() (and thus function_pid()
		and function_ppid()).

Sat Sep 25 20:13:38 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/server.c:
		fixed the long know bug in bad link on /server.  also
		fixed setting of closed fd to -1.

Sun Sep  5 23:52:39 EST 1993 - Matthew Green <mrg@eterna.com.au>

	easyinst:
		shell script from end to configure that also sets up
		the default server and default help service.
	source/, include/
		removed `SCO' and replaced it with either `M_UNIX' or
		with `HAVE_SYS_UN_H'.
	source/dcc.c:
		now shows the port as well as the ip address.

Thu Aug 26 00:09:11 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c, source/window.c, include/lastlog.h:
		fixed bugs in 2.3.3 relating to window level LOG_DCC.
		LOG_DCC is back in level LOG_ALL 'cause now only one
		window can have it at once.
		oh god i am so lame.  fixed /dcc get bug.
	
	configure.in:
		added tests for testing getpgrp() to grok non-posix
		getpgrp() regardless what <unistd.h> says.

2.3.3
Sun Aug 22 18:29:21 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/, include/irc.h
		removed all occurances of the lame null() macro.
	
2.3.2
Sun Aug  1 02:25:21 EST 1993 - Matthew Green <mrg@eterna.com.au>

	configure.in, source/Makefile.in, Makefile.in
		no longer creates source/Makefile from
		source/Makefile.proto, but rather configure does.  we
		call the make in source/ with the righ aruments.
	source/, include/dcc.h, include/irc.h
		general clean up with some header files, fixed time.h
		and sys/time.h, netinet/in.h (thanks 386bsd for broken
		header files)..

Wed Jul 28 23:39:51 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/stack.c:
		fixed stack pop on <number> so that the list from the
		stack is actually added to the numeric list, if it was
		empty, currently.

Tue Jul 27 23:59:45 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ctcp.c:
		fixed bugs in send_action() where it was sending the
		message as the format string, and in do_sed() where it
		was calling crypt_msg() with a null key.

2.3.1
Sat Jul 24 03:47:26 EST 1993 - Matthew Green <mrg@eterna.com.au>

	script/dmsg
		added this finally..

2.3.0
Sun Jul 18 04:36:04 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c:
		fixed lame bug with the dcc deadlists.
	source/ircaux.c:
		null() -=> NULL

2.3beta1.9
Mon Jul 12 20:43:55 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/stack.c source/hook.c, include/stack.h:
		got /stack working with on's.  yay
	configure.in, Makefile.in, acconfig.h:
		updated for use with autoheader, acconfig.h added for
		this purpose (thanks noah).  defs.h is much nicer than
		-DBLAH all the way across the screen.
	source/scandir.c, configure.in:
		whole thing put in a #ifdef HAVE_SCANDIR, that is grokked
		in configure ..

2.3beta1.8
Sat Jul 10 13:11:48 EST 1993 - Matthew Green <mrg@eterna.com.au>

	configure.in, Makefile.in:
		fiddled with, added questions for DEFAULT_SERVER and 
		DEFAULT_HELP_SERVICE, unused so far..
	source/dcc.c, source/edit.c, source/numbers.c:
		fixed some level things.
	source/edit.c:
		made NUMBER_OF_COMMANDS groked automatically..

2.3beta1.7
Sun Jul  4 19:49:36 EST 1993 - Matthew Green <mrg@eterna.com.au>

	NeXT port for 2.3 ..  cleaned up all the .. `suggest parentheses'
	warnings from gcc -Wparentheses ..

2.3beta1.6
Thu Jul  1 23:06:14 EST 1993 - Matthew Green <matthew@valiant.vut.edu.au>

	hpux/osf1/sgi/osx/ptx stuff for 2.3 ..

2.3beta1.2
Tue Jun 29 14:14:29 EST 1993 - Matthew Green <mrg@eterna.com.au>

	.. added gnu's autoconf to ircII, it works for sunos, and mostly
	for sgi so far ..

2.2.9
Tue Jun 29 00:05:04 EST 1993 - Matthew Green <mrg@eterna.com.au>
	
	source/newio.c;
		new_select() - once again, linux proves to be painful.
		previous `fixes' to this routine were lame, and leaked
		memory.

2.2.8
Sat Jun 26 14:45:10 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/hook.c:
		fixed stupid bug in do_hook() which ignored the last
		/on in each list.

2.2.7
Sat Jun 26 05:15:35 EST 1993 - Matthew Green <mrg@eterna.com.au>

	.. clean up for release ..

Fri Jun 18 12:25:18 EST 1993 - Matthew Green <mrg@eterna.com.au>

	.. various bugs for dynix/ptx, linux, hpux .. fixed.. general
	clean up for the release.

(2.3beta1.1)
Sun Jun 13 01:10:07 EST 1993 - Matthew Green <mrg@eterna.com.au>

	Wow.  ircII is now under RCS.

2.2.7pre2
Fri Jun 11 03:44:25 EST 1993 - Matthew Green <mrg@eterna.com.au>

	ctcp.c:
		do_finger() - fixed type for replies for daemon clients..
	server.c:
		server() - fixed setting of away's, was causing core dumps,
		and general lossage.

Wed Jun  9 23:30:33 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/server.c:
		fixed sending AWAY's when reconnecting.. by adding the
		: prefix..

(2.3beta1.0)
Wed Jun  9 00:20:19 EST 1993 - Matthew Green <mrg@eterna.com.au>

	the lot,
		gah, huge clean up.  changed the lame alpha `port' Long
		stuff back to long, and started using the types for lots
		of things.. like time_t, etc..
		created include/ and moved every header in here..  major
		changes to source/Makefile.proto for this..
		added debug.c and debug.h..  and debug define to config.h

Wed Jun  2 23:07:25 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/term.c, source/irc.c:
		added support to reset signal handlers under ESIX.
	source/edit.c, source/server.h, source/server.c:
		made /redirect smarter about if it needs to wait on
		server output, by setting something in send_to_server(),
		that is checked after the end of the parse_line() in
		redirect().
	source/dcc.c:
		fixed varoius DYNIX/ptx problems that got introduced..
	source/window.c:
		create_additional_screen() - close() and unlink() when
		the create fails...

Tue Jun  1 23:41:08 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/term.c:
		term_cont() - added signal for linux..

2.2.7pre1
Tue Jun  1 20:00:02 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/vars.c, source/edit.c:
		Changed the way EIGHT_BIT_CHARACTERS works so that if you
		set it, its honoured.
	source/ctcp.c:
		fixed UTC bug.
	source/, Makefile.
		Added patch from Fuzzy to give SCO UNIX support.
		<adrian@cursci.co.uk>

Sun May 30 01:36:18 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/help.c:
		fixed the linux/help bug finally.  not exactly sure what
		was wrong with it, but Veep <eric@blahrvares.er.usgs.gov>
		found the problem, and i fixed it.

Fri May 28 23:10:47 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/parse.c:
		p_privmsg() - fixed beep_when_away with /on msg..

Thu May 20 03:25:57 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/irc.c:
		irc_io() - when reading from stdin (for any screen) we
		read up to BIG_BUFFER_SIZE chars at a time now.
	source/ctcp.c, source/dcc.c:
		added sizes to dcc send/get.
	source/names.c:
		decipher_mode() - bug with loosing track of mode string
		for mode's v and b (Aiken).
	source/alias.c:
		added randm(), a better random function (Sarayan) and
		fixed bug in function_srand() if input was an empty
		string.
	source/edit.c:
		load() - now allows \ at the end of a line to continue
		the line (Stargazer <spz@specklec.mpifr-bonn.mpg.de>)

Tue May 18 01:20:50 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/numbers.c:
		stupid stupid stupid bug in 433 handling fix.
	source/screen.c:
		over zealousness with unsigned char's removed.

2.2.6+
Wed May 12 20:39:01 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/numbers.c:
		fixed various bugs in the handling of some of the more
		important numerics.  every numeric should be able to
		be caught in a /on now.
	source/notice.c:
		parse_server_notice() - if from is null, use the server's
		name as far as its concerned, if it exists (.itsname).
	source/screen.c:
		change the handling of lines that are null being written to
		the screen, that was causing core dumps in places. (Rogue_F)
	source/keys.c:
		write_bindings() - changed char to unsigned char.

Fri May  7 22:54:58 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/names.c:
		blah, fixed show_channel() to not assume buffer isn't
		changed ever.

Thu May  6 04:41:24 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/numbers.c, source/parse.c, source/funny.c:
		fixed some numerics that were in accessable from /on
		<num> (353 and 366), and removed the away-time from
		the /on msg hook.
	script/finger:
		updated so it doesn't cause core dumps on AIX (Daemon)
	install:
		updated to work with the new config.h (Daemon)

Wed May  5 21:43:35 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/new_io.c:
		new_select() - if timeout == NULL, then we bzero() the
		newtimeval .. stops ircserv from hanging... thanks to
		Kenny Zalewski <zalewk@rpi.edu> for this.

2.2.5
Tue May  4 17:12:03 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/keys.h.proto, source/keys.c, source/screen.c
		Added new binding SCROLL_START, and new function 
		scrollback_start() to do it.
	source/ircaux.c:
		check_nickname() - fixed bug where it was returning `s'.

Tue May  4 02:11:02 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/exec.c:
		various patches from avalon added to help speed up
		exec handling.

Mon May  3 21:32:49 EST 1993 - Matthew Green <mrg@eterna.com.au>

	aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaargh.
	Turning bold or inverse off turns everything off.  its a bug in
	termcap. sigh.

Mon May  3 01:26:18 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/irc.c:
		added HPUX and linux to the re-issue list for signals
		that are handled seeing the internal process handlers
		aren't always re-set properly -=> ^C making the client
		exit untimely.

Sun May  2 23:06:08 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/parse.c, source/notice.c, source/ignore.c, source/ignore.h:
		changed the handling of ignore_combo, introducing
		a new function double_ignore().
	source/parse.c, source/ignore.c
		moved IgnoreCombo() into ingore.c from parse.c and 
		renamed it ignore_combo()
	source/window.c, source/screen.c, source/dcc.c:
		removed netinet/in.h and arpa/inet.h includes where they
		existed as dcc.h includes them, and 386BSD has lame
		header files.
	source/pares.c:
		p_nick() - if its mynick then its shown to the current
		window.
	source/lastlog.c:
		lastlog() - added -literal switch.

Sun May  2 05:03:27 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/names.c, source/names.h:
		Added channels keys to the channel stuff, and it also
		gets shown in the mode returned.
	source/numbers.c:
		Fixed bug in 002 handling with SHOW_NUMERICS on.

Fri Apr 30 18:48:04 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ircux.c:
		check_nickname() - rewritten, and handles things better.
	source/irc.c:
		parse_args() - we now call check_nickname() to make
		sure the nick given is "ok".  If not, we don't start.

Wed Apr 28 19:55:43 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ctcp.c:
		fixed bug in ctcp ping reply.
	source/parse.c, source/edit.c:
		prefixed duplicate funcion names with p_ and e_.
	source/screen.c:
		fixed lame bug in add_to_window() where the arguments
		to strmcat() were wrong.  (wall privmsg quit channel
		invite nick)
	source/keys.c:
		added emacs bindings to 0x80 + b/d/f/h/^? for people
		with meta keys.
	source/keys.h:
		removed.  wasn't used anywhere.
	source/dcc.c:
		DCC connections are now shown with the ip number, to
		provide a little extra security (Avalon).

Tue Apr 27 02:33:03 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c:
		"blah". fixing put_it() et al, didn't fix the lame
		ultrix float bug after all.  stupid ultrix.

2.2.4
Mon Apr 26 12:01:58 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ctcp.c:
		fixed lame bug in do_atmosphere() that was making channels
		leave windows because of a missing 2nd argument to
		is_current_channel().

2.2.3
Mon Apr 26 00:42:21 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/screen.c, source/irc.h, source/irc.c:
		added new global variable, char global_all_off[] that 
		holds a string with the ALL_OFF character in it.  Fixes
		bug with crap getting on the screen.
	source/Makefile.proto:
		Added dependancies for crypt.o.

pre2.2.3
Sun Apr 25 11:17:29 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/exec.c:
		fixed lameness with wait3() arguements.
	source/screen.c:
		added a `:' to the send_to_server() call when redirecting.
		makes it so that 2.8 servers get everything.

Sun Apr 25 01:35:35 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/
		blah. fixed several problems in lots of stupid things
		i did for the release.
	source/screen.c, source/status.c, source/irc.h:
		changed bold, inverse and underline characters to
		^B, ^V and ^_ respectively.  wow.  it makes some sense
		now.
	Makefile:
		Some rearrangements, and general updating.  its now
		easier to install, or at least i hope so.
	config.h:
		several things updated, AUTO_RECONNECT removed..

2.2.2
Fri Apr 23 05:44:29 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/
		fixed all of the implicit functions declartions, and
		several other compiler warnings. wheeeeeeeeeee.

Thu Apr 22 14:42:07 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/numbers.c:
		fixed handling of RPL_LINKS (364) so that 2.8 servers
		would be cool.

Thu Apr 22 04:18:53 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/
		fixeds 1000's olf lines of warnings from gcc -Wall.

Tue Apr 20 22:29:05 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/term.c:
		fixed lame hpux bugs, got term.c back to working again.
	source/keys.c, source/edit.c:
		fixed 8-bit stuff again in edit_char(), by using 
		unsigned char.

pre2.2.pl12
Mon Apr 19 21:54:09 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/term.c:
		blah.  i hate sun tty drivers.  we're back to sgtty.

Sat Apr 17 21:28:42 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/alias.c, source/alias.h, source/parse.c, source/ctcp.c,
	source/dcc.c, source/dcc.h, source/edit.c, source/edit.h,
	sourec/exec.c, source/flood.c, source/help.c, source/history.c,
	source/irc.c, source/irc.h, source/ircaux.c, source/log.c,
	source/mail.c, source/notice.c, source/scandir.c, source/server.c,
	source/status.c, source/whois.c, source/dcc.c.orig, source/screen.c:
		Added OSF/1 support.  Made `long' a define, Long.
	source/output.c, source/ctcp.c, source/server.c, source/hook.c:
		put_it(), say(), yell(), send_to_server(), do_hook(),
		send_ctcp() and send_ctcp_notice() - changed from being
		`int' to `char *' being passed.  Fixes several lame
		problems.

Thu Apr 15 17:09:16 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/whois.c:
		whois_operator() - fixed 313 reply, so that 2.8 
		servers look cool.
	source/numbres.c
		cannot_join_channel() - now switch on -current_numeric,
		not current_numeric.
	source/term.c:
		Changed terminal handling from sgtty to termios for 
		SUNOS.

Tue Apr 13 13:39:09 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ctcp.c:
		fixed various bugs with ctcp floods,
	source/
		fixed lots of compiler warnings, thanks to Vesa.

pre2.2.2pl10
Mon Apr 12 18:39:55 EST 1993 - Matthew Green <mrg@eterna.com.au>

	all:
		fixed various .h and .c files, removing a few compiler
		warnings.
	source/alias.c:
		changed $channels() and $servers() to $mychannels and
		$myservers().
	source/edit.c:
		Added new command XTYPE [-LITERAL] <text>, function
		xtypecmd().

Mon Apr 12 03:26:44 EST 1993 - Matthew Green <mrg@eterna.com.au>

	Makefile, source/Makefile.proto
		Added LEX and LEXLIB.

Sat Apr 10 02:42:55 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c;
		close_all_dcc() - fixed bug where the list was merely
		being lost, not removed (so not closing fd's)

pre2.2.2pl9
Fri Apr  9 02:27:26 EST 1993 - Matthew Green <mrg@eterna.com.au>

	Makefile, source/dcc.c:
		Added PTX patches.
	source/exec.c, source/edit.c, source/screen.c:
		changed test_to_process() to have switch if it would
		call put_it() or not - fixed recusive bug with /redirectign
		to a process.

Thu Apr  8 01:17:41 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/server.c:
		Fixed /window server, and /server so that ircii would
		use the old port numbers.

Wed Apr  7 13:31:23 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/hook.c:
		Made save_hooks() include the serial number.
	source/edit.c:
		parse_line() - \r and \n are not treated as special from
		within a loaded script anymore.

pre2.2.2pl8
Tue Apr  6 23:37:27 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/history.c:
		Fixed history scrolling from the initial input line.
	source/server.c:
		Fixed bug in server -delete where Window->server's
		were left the old value.
	source/mail.c:
		Made it so mail type messages go to level CRAP.
	soucre/alias.c:
		Added poxaV's curpos patch.
	source/edit.c:
		Changed /WAIT to use unknown command, not WHOIS.
	
pre2.2.2pl7
Tue Apr  6 01:01:46 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/notice.c:
		fixed lame bug where the server version/name NOTICE was
		being shown twice.
	source/numbers.c:
		Added lastlog saving to all numeric messages.
	source/mail.c:
		init_mail() - fixed handling of env var MAIL where it was
		strcat()ing not strcpy()ing (Glenn!)
	source/status.c:
		Added Aiken's right justification patch to the status
		line (%>).
	source/screen.c, source/window.c, source/window.h:
		Fixed lame bug where I'd left variables in screen.c and
		window.c.
	source/?:
		Added various things from Lynx.

Mon Apr  5 05:15:16 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/numerics.c:
		made numerics 471 473 474 475 476 show what sort of
		cannot join channel they are.
	source/whois.c:
		made 313 replies (whois operator) only add the
		"(is an IRC operator)" if the server is < 2.8.

Tue Mar 30 03:58:27 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c, Makefile:
		Added support for A/UX, thanks to Helen Rose for help
		with this (hrose@eff.org).

pre2.2.2pl6
Tue Mar 30 02:02:22 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/term.c, source/term.h:
		changed various things for hpux terminal emulation. .now
		uses sysV style (termio).  Fixes problem with getting
		info about the terminal out of the tty.  Also added
		support for irix.

pre2.2.2pl5
Mon Mar 29 18:50:25 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/window.h, source/screen.c, source/screen.h
	source/names.c, source/lastlog.c, source/hold.c, source/exec.c,
	source/translat.c, source/term.c, source/status.c, source/menu.c,
	source/irc.c, source/input.c, source/help.c, source/edit.c,
	source/alias.c
		window.c was split into window.c and screen.c today, and
		these files had various changes to fit to this.

Mon Mar 29 01:13:30 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/count.l, source/count.c, source/Makefile.proto:
		Added count.l, removed count.c, and updated Makefile.proto
		to use these changes.
	
	source/irc.c, source/dcc.c, source/exec.c
		Fixed close_all_dcc(), and close_all_exec().  Added
		signal handlers for SIGUSR1 (sig_user1) and SIGUSR2
		(sig_user2).  USR1 closes all dcc and exec connections,
		and USR2 uses setjmp()/longjmp() to break out of where
		it is, and start processing from irc_io() again.  USR2
		doesn't seem to work.  sigh.

pre2.2.2pl4
Sat Mar 27 04:18:29 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c:
		fixed lame bugs for some commands losing parameters.
	source/window.h, source/window.c:
		Fixed bugs in scroll functions where wrong lines were
		displayed when new lines had been added to the window.
		New Window element int new_scrolled_lines.
	source/server.c:
		fixed ircserv to show the real name of the program in
		argv[0], not "ircserv".
	source/edit.c:
		Fixed handling of literal ^J and ^M's to the way they were
		originally documented in UPDATES (the same as \n used to do).
	source/hook.c:
		ugh, do_hook().  added a bzero().  see comments.  ha ha ha.
	source/lastlog.h:
		Added LOG_SNOTE to LOG_ALL.

Thu Mar 25 23:58:58 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ctcp.c, source/parse.c:
		Finished the ignore ctcps and crap stuff.
	source/parse.c:
		ON PUBLIC has $1 as channel, and $2- as message.

Thu Mar 25 02:19:04 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c:
		fixed send_com() so that it would only use "%s :%s" when
		the argument existed.
	source/ignore.c, source/ignore.h:
		changed level from unsigned char to int, to allow more than
		8 level's of ignore to work.  Reformatted the  output ..

Wed Mar 24 19:57:03 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/numbers.c:
		Fixed motd numerics for 2.8 properly..
	source/vars.h.proto, source/vars.c, config.h, config.h.lynx:
		Added new variable NOTIFY_LEVEL, which is used by default
		for new windows.
	source/edit.c:
		Fixed bug in quote(), where the arguement was being sent
		as the format string.  Real dumb.
	source/ctcp.c, source/ignore.c, source/ignore.h, source/lastlog.c,
	source/lastlog.c:
		Added ignore levels CTCP and CRAP.

Tue Mar 23 01:58:34 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c, source/numbers.c, source/window.c, source/whois.c,
	source/irc.c:
		Changed redirect to use unknown command, and fixed some
		strange bugs.  Some still exist with 2.8 servers.  Also
		made all numerics work with /on <num>.  Some (318 eg)
		didn't have hook code for it.
	source/input.c:
		Fixed lame bug in write a character to the screen.

Mon Mar 22 02:24:43 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/window.h:
		Added window notify levels, with /window notify_level
		level ..
	source/vars.h.proto, source/vars.c, source/window.c, source/keys.c,
	config.h, config.h.lynx:
		Added two new variables, XTERM_OPTIONS, whose value is
		passed to xterm, when using WINDOW CREATE, and 
		EIGHT_BIT_CHARACTERS, which, if set, doesn't strip the
		8th bit off the input streams.
	source/alias.c, source/names.c, source/names.h, source/server.c,
	source/server.h:
		Added new functions $channels() and $servers().

Sun Mar 21 02:31:25 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c:
		privmsg() - changed so that /msg =nick and @nick both
		set from_server to -1.. fixes lame level bug..

Sat Mar 20 02:16:34 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c:
		window() - made /window server make the window level
		ALL -DCC, not just ALL.
	source/numbers.c:
		Fixed the INFO and MOTD numerics so that they will work
		with the new ones from ircd 2.8-7+ .. blah ..
	source/newio.c:
		new_select() - fixed so that select() wouldn't over right
		the struct timeval...
		

Fri Mar 12 18:27:31 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c:
		send_com() - wasn't prefixing the arguements with a
		: which meant ircd 2.8 was being lame ...  For some
		commands, using send_comm()

Mon Mar  8 10:22:03 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/exec.c:
		fixed bug in /exec -in
	source/server.c:
		added support for /server -delete
	source/edit.c, source/keys.c:
		Added support for 8 bit input.
	source/irc.c:
		Added command line option -v, version.

2.2.1.2
Sun Feb 28 13:35:19 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/whois.c:
		add_to_whois_queue() - finished fixing another bug in
		/userhost -cmd..
	source/names.c:
		ignore() - made /IGNORE use the HIGHLIGHT_CHARACTER.
		reconnect_all_channels() - fixed bug from 2.2.1

2.2.1.1
Wed Feb 24 17:43:55 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/whois.c:
		Fixed bug in /userhost.
	source/parse.c:
		Fixed bug in ON RAW_IRC.

Tue Feb 23 18:56:54 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/reg.c:
		Fixed bug in \escaping. (Troy)

Sun Feb 21 16:36:22 EST 1993 - Matthew Green <mrg@eterna.com.au>

	script/troy, script/killpath, script/kpstat, script/traces:
		Updatd scripts for 2.2.1.

Sat Feb 20 00:36:12 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c, source/irc.c
		Finally did The Right Thing (tm) with the wait key junk
		that help uses, and moved it from irc_io() to edit_char()
		where I should have put it originally.  Also fixes a bug
		in dumb mode.

Thu Feb 18 01:48:05 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/window.h:
		window() - added new command LOGFILE for window logging.
	source/dcc.c:
		We now use wait_new_free() for dcc_erase().
	Makefile:
		Removed makehelps and changed installhelp.

Wed Feb 17 06:13:34 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/notice.c:
		changed ON SERVER_NOTICE for $0 to be the server name.
		Changed the AIX_370 #if's to BROKEN_SCANF.
	source/ctcp.c:
		Fixed bugs in CTCP PING.
	source/edit.c:
		Fixed bugs in me() and describe().

Thu Feb 11 14:57:10 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/server.c:
		do_server() - actually fixed the autoreconect problems
		when there is only one server in the server list this
		time. ugh.
	config.h, source/vars.h.proto, source/vars.c, source/parse.c
		Added new variable SHOW_WHO_HOPCOUNT, whoreply().

Wed Feb 10 19:53:32 EST 1993 - Matthew Green <mrg@eterna.com.au>

	script/whowas
		New whowas script for 2.2 from Mycroft.
	source/ctpc.c
		Fixed NO_CTCP_FLOOD, changed do_errmsg() to do_echo(),
		and moved do_ping() to this, and added CTCP ECHO.
	Numerous other bugs fixes from various people.

2.2
Tue Feb  9 16:46:39 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c, source/scandir.c, source/help.c, source/edit.c:
		couple of bugs fixes here and there ...
	source/edit.c:
		bug in who() with -operator switch..

Sun Feb  7 17:35:03 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/server.c, source/edit.c;
		Fixed away bugs..
	source/window.c:
		update_all_status() - doesn't call traverse_all_windows()
		anymore, as it was calling it recusively.  Should rewrite
		traverse_all_winodws().
	source/
		Support for Solaris 2 added (spot <raob@ee.mu.oz.au>)
	source/
		Support for 386BSD added (Mycroft)

Sun Feb  7 05:04:23 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/alias.c:
		alias_currdir(), and `$W' now return the current working
		directory. alias_version(), and '$V' give the version
		(poxaV).
	source/alias.c:
		alias_current_numeric(), and `$H' now return the current
		numeric.
	source/edit.c;
		fixed couple of memory leaks, made `:' not a special
		character in command mode, as it is now the no-op command.
		me(), describe() and prepare_action() - changed to not
		add the offensive period.
	source/window.c:
		window() - fixed bugs in WINDOW SERVER and WINDOW NAME.
	source/help.c:
		help() - bit of cleaning up..
	source/ctcp.c:
		do_version() - made it use IRCII_COMMENT if the value for
		CLIENT_INFORMATION is null.

Thu Feb  4 17:59:23 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/
		Various unused variables removed, uninitialised variables
		initilised..
	source/status.c, source/window.c, source/hook.c, source/edit.c,
	source/if.c:
		Few bug fixes here and there, and a couple of very nasty
		memory leaks..  thanks to jlemon..
	source/hook.c:
		do_hook() - fixed the `Dumb mode' bug that Daemon, then
		recently poxaV had trouble with (Mycroft)
		
Wed Feb  3 18:30:04 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/ctcp.c, source/vars.h.proto, source/vars.c, config.h:
		New variable NO_CTCP_FLOOD, which when set makes ircii
		only send one CTCP reply per second.
	source/numbers.c, source/whois.c, source/names.c, source/funny.c:
		Changed all the numerics replies so that $0 is now the
		server name (if it want't already), except for ISON and
		USERHOST, as these are server local anyway.

Tue Feb  2 21:40:46 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c, source/whois.c:
		Removed /msg -channel as it doesn't make sense anymore.
	source/dcc.c:
		process_dcc_request() - fixed start times in dcc requests.
	source/status.c:
		status_mail() - fixed stupid bug (Mycroft).
	source/whois.c:
		no_such_nickname() - fixed so that $0 is now the server name.

Sun Jan 31 23:33:18 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c:
		kill_screen() - fixed more lame bugs left for me to fix.
	source/term.h, source/scandir.c, source/ircflush.c:
		Fixed various hpux problems.
	Makefile, config.h, source/dcc.c, source/edit.c,source/exec.c,
	source/irc.c, source/irc.h, source/mail.c, source/scandir.c,
	source/term.c, source/hook.c:
		Fixed various AIX 3.1/3.2 problems.  (Mycroft)

Sat Jan 30 18:28:31 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c, source/ctcp.c:
		Added CTCP PING to ircII...  pingcmd() and special case
		handling for the reply .. convert_ping_args()..
	source/edit.c
		waitcmd() - fixed stupid bug that Troy left in the code
		to set up a WAIT -CMD.

Thu Jan 28 23:37:19 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/names.c:
		Fixed bug in irc -c that I broke when fixing the phone bug.

Wed Jan 27 22:48:46 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/irc.c:
		Changed create_additional_screen() to select on the listening
		socket, and timeout after 5 seconds, returning an error, 
		rather than just calling accept().  This stops the case where
		the wserv process doesn't get started, and the client will
		hang in the accept().  Removed the force arguement from
		kill_screen(), and all the calls to it.

	source/edit.c:
		renamed new_send_line() to sendlinecmd() so that it follows
		the general ircII pattern (is there such a thing ? - phone :)
		
Tue Jan 26 19:03:51 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/status.c
		Added poxaV's patch to put time in standard format.

Mon Jan 25 09:14:10 EST 1993 - Brian Koehmstedt <bpk@gnu.ai.mit.edu>

	source/crypt.c, source/dcc.c, source/exec.c, source/help.c,
	source/irc.c, source/ircaux.c, source/notice.c, source/scandir.c,
	source/term.c, source/ircflush.c:
		added support for Linux

Mon Jan 25 02:52:14 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c, source/exec.c, source/server.c, source/window.c:
		added close_all_dcc(), close_all_exec() and close_all_server(),
		which are called from create_additional_screen(), from the
		forked process to close all unneeded file descriptors.
		create_screen() - fixed bug when create_screen() returns a
		screen that was marked as being !alive.
		Hmm, somewhere here I think I have fixed the bug with the
		position of the cursor, when using more than one screen.
		No idea if it is fixed, but I can't get it to happen.
	source/names.c:
		set_window_channel() - fixed bug when channel was NULL.

Mon Jan 25 11:44:20 EST 1993 - Charles Hannum <mycroft@gnu.ai.mit.edu>

	source/window.c:
		scroll_window() - fixed bug that deleted text from the
		input prompt

Thu Jan 21 18:16:16 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/dcc.c:
		Added flag to dcc_message_transmit(), to indicate if the
		hook/put_it() call should be made.  Used when redirecting
		to a dcc chat connection, which is now possible.

Wed Jan 20 23:41:50 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c, source/edit.c, source/whois.c, source/window.h:
		Changed how REDIRECT works.  We now send a redirect token
		to the server when redirecting, not a wait token.  It is in
		the form of #RED#nnnn where nnnn is the screen's number
		(internal).  Redirect also is a property of the screen, not
		of the whole of ircII.  This means that there are no more
		valid reasons to call irc_io() recursively.
	source/mysetjmp.h, source/mysetjmp.c, source/irc.c, source/alias.c,
	source/window.c, source/window.h:
		Removed all the code that was applicable to the mysetjmp()
		code, as there are no need for it anymore - only /WAIT and
		$".." call irc_io() recursively, and they can be used in
		other (better) ways.

Tue Jan 19 14:05:52 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/help.c:
		You guessed it.. another bug.. fixed.
	source/window.c;
		window() - fixed bugs in WINDOW SERVER.
	source/parse.c, source/edit.c, source/exec.c:
		Added doing_privmsg, which makes ircII convert all attempts
		to PRIVMSG from a PRIVMSG in to a NOTICE.
	source/parse.c, source/whois.c:
		Added flag to HOST and USERHOST commands.  It allows a command
		to be executed when the the userhost (302) reply comes back
		from the server - userhost_cmd_returned().
	source/edit.c;
		Added new command INPUT.  Takes a ".." prompt as its first
		parameter, and displays this, and prompts for input that
		expanded, and passed to the command that is its second arg.
		(ie, /INPUT "prompt> " echo $*).  This should be used as
		a replacement for $".." type variables.

Sun Jan 17 22:01:34 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/help.c:
		help_prompt() - fixed another bug..  when will it end..?
	source/dcc.c:
		register_dcc_offer() - made dcc collisions for DCC CHAT
		automatically connect to the other party.  Impressed.
	source/window.h, source/window.c:
		Added new define in winodw.h SCROLL_AFTER_DISPLAY .. which
		makes the display scroll like it used to in 2.1.5.

Sun Jan 17 01:16:37 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/funny.c:
		Fixed lame bug in funny_list() which caused the wide list
		to be corrupted when more than 50 in it.

Sat Jan 16 17:42:41 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c:
		Fixed stupid bug in window(), in the CHANNEL command.
	source/dcc.c:
		Forgot dcc get for lame ultrix - fixed.
	source/lastlog.c:
		lastlog() - made it possible to /lastlog <pattern> <count>
		now.
	source/help.c:
		help_me() - fixed a stupid bug that would cause help to
		become trapped, and unusable for that session.

Fri Jan 15 16:26:13 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/irc.c, source/window.c:
		Finally got irc_io() knowing when a socket connection to
		a wserv process closes, and to kill that screen, I know
		don't know of any pending bugs directly related to
		WINDOW CREATE.

	source/irc.c, source/help.c:
		Got help working properly again (I think), and all the
		checking to make sure ircII won't get confused, etc.

Fri Jan 15 03:07:48 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/help.c:
		Added variable help_screen, that is set when we enter a
		help command, and is set to NULL when we exit.  In help(),
		I made it illegal to call help from more then one screen
		at the same time.
	source/irc.c, source/window.c:
		Added new function is_main_screen(), and added code to 
		irc_io() to detect if a screen is closed from something
		other than window delete.

Thu Jan 14 12:37:10 EST 1993 - Matthew Green <mrg@eterna.com.au>

	Makefile, source/Makefile.proto:
		Removed the INSTALL section of this, replacing it with a
		cp, strip, and chmod, as not all machines support install.
		Also added new target `everything' to the Makefile.. that
		does the same as `make all ircflush ircserv wserv'.

Wed Jan 13 18:19:26 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/alias.c, source/edit.c:
		Smallish revamp of the whole modules, formatting for 80 columns
		and smallish optimizations here and there.  Could be bugs here
		I guess.
	source/crypt.c, source/ctcp.c, source/dcc.c, source/exec.c,
	source/flood.c, source/funny.c, source/help.c, source/history.c,
	source/hold.c, source/hook.c, source/if.c, source/ignore.c,
	source/input.c, source/irc.c, source/ircaux.c, source/ircflush.c,
	source/ircserv.c, source/key.c, source/lastlog.c, source/list.c,
	source/log.c, source/mail.c, source/menu.c, source/mysetjmp.c
	source/names.c, source/newio.c, source/notice.c, source/notify.c
	source/numbers.c, source/output.c, source/parse.c source/reg.c,
	source/status.c, source/server.c, source/term.c source/translat.c,
	source/vars.c, source/whois.c, source/window.c, source/wserv.c:
		reformatted for 80 columns, hopefully thats the end of the
		formatting saga..  :)

Tue Jan 12 16:42:55 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/dcc.c:
		Changed the call to put_it() for ultrix machines so that
		the floating pointers won't get garbled.
	source/ctcp.c, source/ctcp.h:
		Fixed send_ctcp_reply(), and removed Transmit_CTCP() moving
		the 2 lines to the only place it was called from.
	source/translat.c, source/term.c, source/ignore.c:
		reformatted.

Mon Jan 11 16:40:14 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c:
		Changed window() so that the handling of HOLD_MODE called
		set_int_var() rather than reset_line_cnt().  Fixed a problem
		with /flush.

Mon Jan 11 01:35:22 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/lastlog.c, source/file.c, source/crypt.c, source/list.c:
		reformatted.

Mon Jan 11 00:29:41 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/names.h, source/names.c, source/window.c, source/window.h,
	source/edit.c, source/parse.c:
		Changed the handing of WINDOW CHANNEL, and JOIN so that
		ircII now remembers what window a channel was joined on.
		channel() in both parse.c and edit.c were changed, 
		add_channel() in names.c.  New function, set_channel_window()
		added, in names.c thats sets a channel's window, and as such,
		Window * added to ChannelList.  This sometimes helps ircII
		remember what channels were on which windows, when
		re-connecting to a server.  Sometimes.

	source/ctcp.c, source/output.c, source/hook.h.proto, source/parse.c,
	source/output.h:
		Moved the ctcp_* functions in output.c to ctcp.c, where they
		belong, and also put in_on_who in hook.h.proto, and fixed
		those fucntions that used it.

Sun Jan 10 10:30:20 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/funny.c:
		Changed funny_list(), fixing the -TOPIC argument to the
		LIST command.  Changed the functionality of -TOPIC so
		that it works *with* the other arguements, not against
		them.

Sun Jan 10 09:23:43 EST 1993 - poxaV <cgw@unt.edu>

	source/vars.h.proto, source/vars.c, source/status.c, config.h:
		renamed status_user() to status_user0(), and added 3
		new functions, status_user[123]()..  New variables
		STATUS_USER[0-3] ..  to go with the new status line
		functions, %X, %Y and %Z.

Thu Jan  7 00:13:14 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/status.c:
		Fixed status_oper() so that it wouldn't show
		if SHOW_STATUS_ALL wasn't set.

Wed Jan  6 19:04:42 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/funny.c:
		Changed funny_print_widelist() ..  it now works
		again, I don't know when I broke it.

Wed Jan  6 11:59:11 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/term.c, source/wserv.c:
		Made the term_init() call used in wserv to set the
		line discipline to RAW, so I could forget about
		having to worry about signals, and removed the
		SIGINT handling from wserv.c.  Hopefully this means
		that wserv works properly now.  (thanks to Dizzy
		<nathan@eas.gatech.edu> for help with this).

Wed Jan  6 00:03:00 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/Makefile.proto:
		updated depandancies, and re-organised the
		SOURCES and OBJECTS.

	source/timer.c, source/edit.c, source/irc.c, source/irc.h,
	source/mysetjmp.c, source/mysetjmp.h, source/window.c:
		Moved everything from timer.c into either edit.c
		or irc.c.  Made WINDOW_CREATE define more parts
		out, in irc.c, mysetjmp.[ch], and window.c.

Tue Jan  5 20:59:36 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/exec.c:
		Reformatted, and new element of the process list
		added, server, to allow /exec -out/msg/notice
		to go to the right server.

	source/newio.c:
		reformatted.

Tue Jan  5 18:06:25 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c, source/keys.c:
		Added new function parsekeycmd(), and new command,
		PARSEKEY which calls it - does the same as typing
		a key which is bound the the arguement.

Tue Jan  5 17:03:04 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/window.c:
		Changed window() so that the WINDOW CHANNEL
		command with no arguments make the current
		window's channel null.

Tue Jan  5 16:15:51 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/wserv.c:
		Changed got_sigint() to send the ^C down the pipe,
		rather than kill SIGINT the ircII process, as this
		was causing the ^C to be read as though it was from
		the main screen.

Tue Jan  5 01:57:58 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/edit.c:
		Changed new_send_line() to set the display on.

Mon Jan  4 23:46:58 EST 1993 - Matthew Green <mrg@eterna.com.au>

	source/vars.h.proto, source/vars.c, source/hook.c, source/edit.c,
	config.h:
		New variable INPUT_PROTECTION.  Doesn't allow any
		ON INPUT's to be added when set.  ON INPUT moved to
		send_line(), so that all input is caught in the hook,
		SENDLINE command added, that calls the new function,
		new_send_line, that does a simliar thing to the send_line
		command, except, no handling for prompts, or ON INPUT is
		done during this.

Mon Jan  4 15:23:34 EST 1993 - Matthew Green <mrg@eterna.com.au>

	hook.c:
		reformatted.

Fri Jan  1 23:46:03 EST 1993 - Matthew Green <mrg@eterna.com.au>

	*.h:
		Fixed all the header files, so that if included more than
		once, they are only parsed once.