summaryrefslogtreecommitdiff
path: root/etc/ChangeLog
blob: 5255be55faba8de4b6f33ff4e09de11b6efb8e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
2003-08-20  Stephen Eglen  <stephen@gnu.org>

	* MORE.STUFF: Update URLs for several projects.

2003-07-22  Andrew Choi  <akochoi@shaw.ca>

	* PROBLEMS: Truncated process output with pty's on Mac OS X.

2003-07-14  Nick Roberts  <nick@nick.uklinux.net>

	* NEWS: Merge in the changes for versions 21.2 and 21.3 as
	documented on the EMACS_21_1_RC branch.

2003-03-03  Chao-Hong Liu  <chliu@gnu.org>

	* TUTORIAL.cn: Updated.
	* TUTORIAL.zh: Updated.

2003-04-24  Bill Wohler  <wohler@newt.com>

	* MH-E-NEWS: Upgraded to MH-E version 7.3.

2003-04-03  Kenichi Handa  <handa@m17n.org>

	* HELLO: Fix the malayalam line.

2003-04-01  Dave Love  <fx@gnu.org>

	* letter.xpm: Use transparent/opaque `colours'.

	* letter.xbm: Deleted.

	* letter.pbm: New.

2003-03-24  Andreas Schwab  <schwab@suse.de>

	* HELLO: Remove extra TAB in Greek entries.

2003-03-03  Chao-Hong Liu  <chliu@gnu.org>

	* TUTORIAL.cn, TUTORIAL.zh: New files.

	* TUTORIAL.translator: List TUTORIAL.cn and TUTORIAL.zh.

2003-02-24  Kenichi Handa  <handa@m17n.org>

	* HELLO: Add Malayalam.

2003-02-13  Dave Love  <fx@gnu.org>

	* TUTORIAL.es: Add coding spec.

2003-02-11  Kenichi Handa  <handa@m17n.org>

	* HELLO: Fix Hindi and add Tamil.

2003-02-05  Francesco Potort,Al(B  <pot@gnu.org>

	* TUTORIAL.it: Italian tutorial.
	From Alfredo Finelli <alfredofnl@tiscali.it> (original translator).
	Revised by Francesco Potort,Al(B <pot@gnu.org>.

2003-02-03  Bill Wohler  <wohler@newt.com>

	* MH-E-NEWS: Upgraded to MH-E version 7.2.

2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>

	* MACHINES: Added Cygwin.

2003-01-27  Jan Dj,Ad(Brv  <jan.h.d@swipnet.se>

	* DEBUG: Added note about xmon.

2003-01-20  Joanna Pluta  <joanna_p@gazeta.pl>

	* TUTORIAL.pl: Updated.

2003-01-11  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* TUTORIAL.sk: Updated to reflect changes in English version.
	From Miroslav Va$,1!!(Bko <zemiak@zoznam.sk>.

2003-01-09  Francesco Potort,Al(B  <pot@gnu.org>

	* etags.1: Added reference to the new `etags --help --lang=LANG'
	option.

2003-01-08  Bill Wohler  <wohler@newt.com>

	* MH-E-NEWS: Upgraded to MH-E version 7.1.

2003-01-01  Steven Tamm  <steventamm@mac.com>

	* MACHINES: Added pointer to Mac OS X install instructions.

2002-12-10  Kenichi Handa  <handa@m17n.org>

	* TUTORIAL.sv: Renamed from TUTORIAL.se.

2002-11-29  Bill Wohler  <wohler@newt.com>

	* MH-E-NEWS: Upgraded to MH-E version 7.0.

2002-11-22  Juanma Barranquero  <lektu@terra.es>

	* TUTORIAL.es: Extensively changed and updated by Rafael Sep,Az(Blveda
	<drs@gnulinux.org.mx>.

2002-10-01  Bill Wohler  <wohler@newt.com>

	* MH-E-NEWS: Upgraded to mh-e version 6.1.1.

2002-09-16  Jonathan Yavner  <jyavner@engineer.com>

	* ses-example.ses: New file: example spreadsheet.

2002-09-04  Kenichi Handa  <handa@etl.go.jp>

	* HELLO: Fix Unicode Greek line.

2002-09-03  Kenichi Handa  <handa@etl.go.jp>

	* TUTORIAL.ja: Updated in accordance with the latest English
	version.

2002-09-01  Andreas Schwab  <schwab@suse.de>

	* TUTORIAL.de: Updated in accordance with the English version.
	From Mario Lang <mlang@delysid.org>.

2002-08-12  Markus Rost  <rost@math.ohio-state.edu>

	* HELLO: Fix some white spaces.

2002-06-26  Richard M. Stallman  <rms@gnu.org>

	* ps-prin0.ps, ps-prin1.ps: Add license exception.

2002-06-16  Eli Zaretskii  <eliz@is.elta.co.il>

	* TUTORIAL.fr: New version from ,AI(Bric Jacoboni <jaco@teaser.fr>.

2002-05-04  Eli Zaretskii  <eliz@is.elta.co.il>

	* HELLO: Add a few greetings that use Unicode characters.

2002-04-20  Eli Zaretskii  <eliz@is.elta.co.il>

	* termcap.src: New version from ftp://invisible-island.net.

2002-03-24  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* TUTORIAL.translators: New file, list of tutorial translators.

2002-02-01  ShengHuo ZHU  <zsh@cs.rochester.edu>

	* gnus.xpm: Remove garbages.

2002-01-27  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* letter.xpm: New file, XPM variant of letter.xbm.

2001-12-03  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* COPYING: Move back.

2001-11-29  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* COPYING: Removed.

2001-11-23  Eli Zaretskii  <eliz@is.elta.co.il>

	* emacstool.1, etags.1, emacs.1: Modify distribution terms to
	something simpler than the GFDL.

2001-11-22  Colin Walters  <walters@debian.org>

	* PROBLEMS: Remove already applied calc info patches.  Clarify
	that there is no such thing as Debian GNU/Linux 2.4.3.  ftpd is
	not handled by alternatives in Debian, the reporter surely meant
	just "--config ftp".

2001-11-18  Eli Zaretskii  <eliz@is.elta.co.il>

	* fr-survival.tex: New file, from ,AI(Bric Jacoboni <jaco@teaser.fr>.

2001-11-17  Eli Zaretskii  <eliz@is.elta.co.il>

	* TUTORIAL.fr: New version from ,AI(Bric Jacoboni <jaco@teaser.fr>.

2001-11-17  Colin Walters  <walters@debian.org>

	* PROBLEMS: Remove calc problems.

2001-11-16  Eli Zaretskii  <eliz@is.elta.co.il>

	* TUTORIAL.fr: New file.  From ,AI(Bric Jacoboni <jaco@teaser.fr>.

2001-11-10  Eli Zaretskii  <eliz@is.elta.co.il>

	* Makefile (mostlyclean, clean, distclean, maintainer-clean):
	Add *.dvi and *.log.
	(SOURCES): Update the list of files.

	* calccard.tex: New file.
	* calccard.ps: New file.

2001-11-01  Eli Zaretskii  <eliz@is.elta.co.il>

	* etags.1: Replace presentation-level troff macros that simulate
	tables with tbl markup.  From Eric S. Raymond <esr@thyrsus.com>.

2001-10-20  Gerd Moellmann  <gerd@gnu.org>

	* (Version 21.1 released.)

2001-09-29  Eli Zaretskii  <eliz@is.elta.co.il>

	* HELLO: Fix the Italian and Maltese entries.  From Trevor Spiteri
	<tbspit@eng.um.edu.mt>.

2001-08-25  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* HELLO: Slovak language name added to be compatible with other
	languages.

2001-08-23  Eli Zaretskii  <eliz@is.elta.co.il>

	* TUTORIAL.pl: Updated in accordance with the English version.
	From Beata Wierzcho$,1 b(Bowska <beataw@orient.uw.edu.pl> and
	Janusz S. Bien <jsbien@mail.uw.edu.pl>.

2001-08-14  Eli Zaretskii  <eliz@is.elta.co.il>

	* MACHINES: Modify the entry for HITACHI SR2001/SR2201 series, as
	per config.sub and config.guess.  Reported by Ryo Furue
	<furufuru@ccsr.u-tokyo.ac.jp>.

2001-08-10  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* TUTORIAL.sk: Updated in accordance with the English version.
	From Miroslav Va$,1!!(Bko <vasko@debian.cz>.

2001-08-08  Eli Zaretskii  <eliz@is.elta.co.il>

	* TUTORIAL.ko: Updated in accordance with the English version.
	From Koaunghi Un <koaunghi@world.kaist.ac.kr>.

2001-08-06  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* TUTORIAL.cs: Update from Milan Zamazal.

2001-08-05  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* TUTORIAL.cs, TUTORIAL.sk, cs-refcard.tex, sk-refcard.tex: e-mail
	address of Milan Zamazal changed.

2001-08-04  Pavel Jan,Am(Bk  <Pavel@Janik.cz>

	* TUTORIAL, TUTORIAL.cs: Be consistent when naming CONTROL and
	META keys.

2001-05-17  Francesco Potorti`  <pot@gnu.org>

	* etags.1: Add the latest changes to etags behaviour.

2001-05-04  Eli Zaretskii  <eliz@is.elta.co.il>

	* emacsclient.1: Place in the public domain.

2001-04-29  Eli Zaretskii  <eliz@is.elta.co.il>

	* emacstool.1: Place under GFDL.

2001-04-25  Eli Zaretskii  <eliz@is.elta.co.il>

	* emacs.1: Place under GFDL.

	* etags.1: Ditto.

	* gfdl.1: New file.

2001-04-18  Gerd Moellmann  <gerd@gnu.org>

	* TUTORIAL.sk, sk-survival.tex
	* sk-refcard.ps, sk-refcard.tex, sk-dired-ref.ps
	* sk-dired-ref.tex: New files.

	* cs-survival.tex, cs-dired-ref.ps, cs-dired-ref.tex: New files.
	From Pavel@Janik.cz (Pavel Jan,Am(Bk).

2001-04-10  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: Footer implementation.  Doc fix.
	(doLineNumber): Code fix for line number color.
	(BeginPage, BeginSheet, HeaderFramePath, HeaderFrame, HeaderText): Code
	fix for footer implementation.
	(TextStart, SetFooterLines, FooterFrameStart, doFramePath)
	(FooterFramePath, doFrame, FooterFrame, FooterStart)
	(HeaderOrFooterTextLines, HeaderOrFooterText, FooterText): New funs.

2001-04-03  Gerd Moellmann  <gerd@gnu.org>

	* splash8.xpm: New image from Luis Fernandes <elf@ee.ryerson.ca>
	for color depth 8.

2001-04-02  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: Line and paragraph spacing feature.
	(LineHS, ParagraphHS, EffectUnderline, EffectStrikeou, EffectOverline)
	(EffectShadow, EffectBox, EffectOutline): New vars.
	(PSL, S, EF, printZebra, doColumnZebra, doZebra): Code fix.
	(PHL, LHL): New funs.

	* ps-prin2.ps: File eliminated.

2001-03-26  Gerd Moellmann  <gerd@gnu.org>

	* splash.pbm: New image from Luis Fernandes <elf@ee.ryerson.ca>.

2001-03-15  Gerd Moellmann  <gerd@gnu.org>

	* splash.xpm, splash.pbm: Replaced with new images from
	Luis Fernandes <elf@ee.ryerson.ca>.

2001-03-05  Gerd Moellmann  <gerd@gnu.org>

	* cs-refcard.ps, cs-refcard.tex: New files.

2001-02-26  Gerd Moellmann  <gerd@gnu.org>

	* THE-GNU-PROJECT: New file.

2001-02-22  Andrew Innes  <andrewi@gnu.org>

	* MACHINES: Update pointer to MS-Windows install instructions.

2001-02-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: Code fix to support `ps-zebra-stripe-follow'
	functionality enhancement.
	(doColumnZebra): Code fix.

2001-02-08  Dave Love  <fx@gnu.org>

	* tasks.texi, SERVICE: Updated.

2001-02-03  Andrew Innes  <andrewi@gnu.org>

	* PROBLEMS: Add note about need to specify extra compiler flags
	with recent Cygwin ports of gcc.

2001-01-27  Eli Zaretskii  <eliz@is.elta.co.il>

	* DEBUG: Expand and update, based on the instructions to
	pretesters, nt/INSTALL, and private communications and experience.

2001-01-17  Dave Love  <fx@gnu.org>

	* termcap.src: New version from http://www.tuxedo.org/~esr/terminfo/.

2001-01-08  Gerd Moellmann  <gerd@gnu.org>

	* TUTORIAL.es: New file.

2001-01-08  Kevin Gallagher  <kevingal@onramp.net>

	* edt-user.doc: Updated to reflect EDT Emulation version 4.0
        enhancements.

2000-12-29  Gerd Moellmann  <gerd@gnu.org>

	* fr-refcard.tex, fr-refcard.ps, fr-drdref.tex, fr-drdref.ps: New
	files.

2000-12-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: Handle form feed better when ps-zebra-stripe-follow
	is non-nil.
	(printZebra, BeginPage): Code fix.

2000-12-15  Miles Bader  <miles@gnu.org>

	* DEBUG: Add note aboute using `inverse-video' to detect excessive
	screen redraw.

2000-12-07  Dave Love  <fx@gnu.org>

	* CODINGS, CHARSETS: Removed.  (Mule 2.3 relics.)

2000-11-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: Eliminated the line number font predefinition.

2000-11-09  Kenichi Handa  <handa@etl.go.jp>

	* TUTORIAL.ja: Adjusted for the change of TUTORIAL (use C-x C-l,
	not M-:, as example of disabled command).

2000-11-02  Gerd Moellmann  <gerd@gnu.org>

	* ONEWS.1, ONEWS.2, ONEWS.3, ONEWS.4: Renamed from NEWS.*.

2000-10-16  Gerd Moellmann  <gerd@gnu.org>

	* 3B-MAXMEM, AIX.DUMP, SUN-SUPPORT: Removed.

	* tasks.texi: Updated to the version from /gd/gnuorg.

	* FTP: Refer to the GNU web site.

2000-10-12  Dave Love  <fx@gnu.org>

	* gnus.pbm: New file.

	* gnus.xbm: Deleted.

2000-10-05  Miles Bader  <miles@lsi.nec.co.jp>

	* gnus-pointer.xbm, gnus-pointer.xpm: Remove top empty line.

2000-09-22  Gerd Moellmann  <gerd@gnu.org>

	* splash.xbm: File removed.
	* splash.pbm: New file.

2000-09-20  Gerd Moellmann  <gerd@gnu.org>

	* splash.xbm: New file.

2000-09-19  Gerd Moellmann  <gerd@gnu.org>

	* splash.xpm: New file.

2000-09-11  Dave Love  <fx@gnu.org>

	* gnus.xbm, gnus.xpm, gnus-pointer.xpm, gnus-pointer.xbm: New
	files.

2000-08-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin3.ps: Eliminated.

	* ps-prin2.ps: Changed comment version (6.0).

	* ps-prin1.ps: Changed comment version (6.0).

	* ps-prin0.ps: Changed comment version (6.0).

2000-08-24  Wlodzimierz Bzyl  <matwb@univ.gda.pl>

	* survival.tex: New file.

2000-08-21  Gerd Moellmann  <gerd@gnu.org>

	* de-refcard.ps, de-refcard.tex: Renamed from refcard-de.*.

	* pl-refcard.ps, pl-refcard.tex: Renamed from refcard-pl.*.

2000-08-17  Gerd Moellmann  <gerd@gnu.org>

	* NEWS.1: Reintegrated into NEWS.

	* OOOOONEWS...OONEWS: Renamed to NEWS.1...NEWS.4.

2000-08-16  Gerd Moellmann  <gerd@gnu.org>

	* dired-ref.tex, dired-ref.ps: New files.

	* refcard-de.tex, refcard-de.ps: New files.

2000-07-20  Gerd Moellmann  <gerd@gnu.org>

	* emacs.1: Change `-b' to `-bw'.

2000-07-07  Andreas Schwab  <schwab@suse.de>

	* yow.lines: Fix indentation.

2000-06-07  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin0.ps: Insert a version number comment (5.2.2).
	Indentation fix.

	* ps-prin1.ps: Insert a version number comment (5.2.2).  Can
	select page size with/without giving an error if PostScript
	printer doesn't have this kind of page size.  Zebra Stripe
	continues or restarts on next page.  Indentation fix.
	(BeginSheet): If necessary, rescale n-up to fit on the sheet of
	paper.
	(BeginDoc, doColumnZebra, HeaderText): Code fix.
	(SetPageSize): New proc.

	* ps-prin2.ps: Insert a version number comment (5.2.2).

	* ps-prin3.ps: Insert a version number comment (5.2.2).
	Indentation fix.

2000-05-18  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: PostScript code compatibility with other utilities
	like mpage, psnup, etc.
	(isLineStep): Code fix.
	(BeginDoc, BeginSheet): Utility compatibility.

2000-05-03  Dave Love  <fx@gnu.org>

	* letter.xbm: New file.

2000-04-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin0.ps: PostScript level 1 compatibility.

	* ps-prin1.ps: PostScript level 1 compatibility, Upside-down
	printing and line number step.
	(BeginDoc, doLineNumber, SL, HL): Code fix.
	(isLineStep, PSL): New funs.

	* ps-prin3.ps: PostScript level 1 compatibility.

2000-04-10  Gerd Moellmann  <gerd@gnu.org>

	* refcard.bit: Removed.

2000-04-10  Wlodzimierz Bzyl  <matwb@monika.univ.gda.pl>

	* refcard-pl.ps: New file.
	* refcard-pl.tex: New file.

2000-03-30  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin0.ps: Replace gs_languagelevel by languagelevel.
	(DefOp): New proc.

	* ps-prin1.ps: Replace gs_languagelevel by languagelevel.
	(printBackground, SetColor): New procs.
	(ZebraColor): Renaming old ZebraGray var.

2000-03-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps: Eliminate SkipFirstPage.

2000-03-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin0.ps: Define command only for language level 1.

2000-03-16  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin0.ps: Define packedarray operator for language level 1,
	adjust setduplexmode and settumble definitions.

2000-03-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-print0.ps: New file.

	* ps-prin1.ps, ps-prin3.ps: Eliminate CheckConfig.

2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>

	* ps-prin1.ps, ps-prin2.ps, ps-prin3.ps: New files.

1999-11-30  Paul Eggert  <eggert@twinsun.com>

	* PROBLEMS: Update Solaris 2.6 and 7 problems.

1999-11-22  Paul Eggert  <eggert@twinsun.com>

	* NEWS: Rename messages-locale to system-messages-locale
	and time-locale to system-time-locale.

1999-10-24  Noah Friedman  <friedman@splode.com>

	* yow.lines: Add more quotes.  Correct a misquote.

	* spook.lines: Add more phrases.

1999-10-23  Paul Eggert  <eggert@twinsun.com>

	* NEWS: Describe new functions and variables for locales.

1999-10-07  Gerd Moellmann  <gerd@gnu.org>

	* TUTORIAL.ro: Change copyright statement.

1999-07-12  Richard Stallman  <rms@gnu.org>

	* Version 20.4 released.

1999-06-27  Karl Heuer  <kwzh@gnu.org>

	* yow.lines: Fix indentation.  Fix typo.

1999-01-19  Dave Love  <fx@gnu.org>

	* MORE.STUFF: Revamped.

1999-01-14  Dave Love  <fx@gnu.org>

	* FAQ: Merge posted updates.

1998-12-14  Dave Love  <fx@gnu.org>

	* FAQ: Somewhat edited copy of the most recently posted version.

1998-11-04  Kenichi Handa  <handa@etl.go.jp>

	* MACHINES (NEC EWS4800): New section.

1998-09-04  Karl Heuer  <kwzh@gnu.org>

	* TUTORIAL: Use C-x C-l, not M-:, as example of disabled command.

1998-08-19  Richard Stallman  <rms@psilocin.ai.mit.edu>

	* Version 20.3 released.

	* TUTORIAL.ro: New file.

1998-04-10  Ken'ichi Handa  <handa@melange.gnu.org>

	* TUTORIAL.sl: Renamed back to the original.

1998-04-10  Kenichi Handa  <handa@etl.go.jp>

	* TUTORIAL.cs: Renamed from TUTORIAL.cz.
	* TUTORIAL.ja: Renamed from TUTORIAL.jp.
	* TUTORIAL.ka: Renamed from TUTORIAL.kr.
	* TUTORIAL.sk: Renamed from TUTORIAL.sl.

1998-04-06  Kenichi Handa  <handa@etl.go.jp>

	* TUTORIAL.jp: Re-translated for the latest TUTORIAL.

1998-03-26  Richard Stallman  <rms@psilocin.gnu.org>

	* TUTORIAL.sl: New file.

1997-09-19  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 20.2 released.

1997-09-15  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 20.1 released.

1997-06-02  Ken'ichi Handa  <handa@psilocin.gnu.ai.mit.edu>

	* CODINGS, CHARSETS: New files.

1996-08-11  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 19.33 released.

1996-07-31  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* Version 19.32 released.

1996-06-23  Richard Stallman  <rms@psilocin.gnu.ai.mit.edu>

	* refcard.ps: File obtained from someone else;
	it was generated badly here.

1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>

	* Version 19.31 released.

1996-05-25  Karl Heuer  <kwzh@gnu.ai.mit.edu>

	* TUTORIAL: Rephrase the first page to fit on a standard tty screen.

1996-05-03  Richard Stallman  <rms@delasyd.gnu.ai.mit.edu>

	* emacs.bash: Use >|.

1996-01-20  Geoff Voelker  <voelker@cs.washington.edu>

	* rgb.txt: New file.

1995-11-24  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Version 19.30 released.

1995-11-04  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* gnus-tut.txt: New file.

1995-07-26  David J. MacKenzie  <djm@geech.gnu.ai.mit.edu>

	* Rename termcap to termcap.src, the historical name for an
	uninstalled termcap file.

1995-06-28  Eric S. Raymond  <esr@spiff.gnu.ai.mit.edu>

	* termcap.dat, termcap.ucb: deleted and replaced.

	* termcap: New termcap file from the ncurses project; bigger,
	better, brighter, does away with waxy yellow buildup.  Email
	me at terminfo@ccil.org if you have any trouble with this.

	* README: Changed to track above change.

1995-05-24  Karl Heuer  <kwzh@hal.gnu.ai.mit.edu>

	* TUTORIAL: Delete reference to ALT.  Change <Rubout> to <Delete>.

1995-04-26  Karl Heuer  <kwzh@nutrimat.gnu.ai.mit.edu>

	* Makefile (maintainer-clean): Renamed from realclean.

1995-04-09  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* tpu-doc.el: File moved to etc dir and renamed.

1995-04-07  Boris Goldowsky  <boris@cs.rochester.edu>

	* enriched.doc: Rewritten and simplified.

1994-11-20  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Makefile (eterm): New rule.
	(TIC): New variable.

	* e/eterm, e/eterm.ti: New files.

1994-10-24  Boris Goldowsky  <boris@mole.gnu.ai.mit.edu>

	* enriched.doc: New file.

1994-09-07  Richard Stallman  <rms@mole.gnu.ai.mit.edu>

	* Version 19.26 released.

1994-07-03  Richard Stallman  (rms@gnu.ai.mit.edu)

	* TUTORIAL: Talk about flow control along with C-x C-s and C-s.

1994-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.25 released.

1994-05-23  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.24 released.

1994-05-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.23 released.

1994-04-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Makefile (clean): Delete DOC*.

1993-11-27  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.22 released.

1993-11-16  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.21 released.

1993-11-11  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.20 released.

1993-08-14  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.19 released.

1993-08-08  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.18 released.

1993-07-06  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* Version 19.16 released.

1993-06-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* version 19.15 released.

1993-06-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Version 19.14 released.

1993-06-16  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

        Bring mumbleclean targets into conformance with GNU coding standards.
	* Makefile (distclean): Don't remove backup and autosave files.
	These are easy to get rid of in other ways, and a pain to lose.
	(mostlyclean, realclean): New targets.

1993-06-08  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Version 19.13 released.

1993-05-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* Version 19.10 released.

1993-05-27  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* Version 19.9 released.

1993-05-24  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* Version 19.8 released.

1993-05-22  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

        * Version 19.7 released.

1993-05-19  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* MACHINES: Mention Linux.

1993-04-26  Jim Blandy  (jimb@totoro.cs.oberlin.edu)

	* MACHINES: Add section for NeXT, from Thorsten Ohl.

1993-04-28  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* NEWS: Documented picture-mode improvements.

1993-04-25  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* NEWS: Described the new properties of arrow keys and
	next-line-add-newlines.  Fixed up the GUD description, it was
	out of date.  This file referenced LNEWS when it should have
	said news.texi; fixed.

	news.texi: invocation-name now exists.

1993-03-27  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* MORE.STUFF: Added.

1993-03-22  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* NEWS: Preserved jimb's last change (documenting kill on
	read-only buffers).

	Added documentation on new info features.

1993-03-22  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* spook.lines:	Alpha-sorted this, and added some new hot buttons
	for the 1990s.

1993-03-19  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* MACHINES: Deleted some VMS caveats. If the src and lisp
	ChangeLogs are correct,	dired and mail and process control are now
	fully supported.

	* NEWS: Added finder news.

1993-03-19  Richard Stallman  (rms@geech.gnu.ai.mit.edu)

	* NEWS: Changed.

1993-03-19  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* sex.6: Added 900-line support

	* NEWS: Added news about the package finder.

1993-03-19  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	* MACHINES: `Last updated 10 Feb 1992.' was obviously wrong, so
	I nuked it.  Let the file mod date serve.  Merged in APOLLO and
	SUNBUG files.  Changed references to 18.* to past tense.

	* emacs.names: merged into JOKES.  I faked a mail header from the
	Unknown User to delimit the first (unheaded) bit.

	* Makefile (relock, unlock): New productions.

1993-03-18  Eric S. Raymond  (eric@geech.gnu.ai.mit.edu)

	Augean-stable cleaning time.  Partly to save space, but mostly to
	reduce the dizzying amount of *stuff* confronting someone exploring
	the Emacs distribution, I have the following changes in the etc
	directory:

	* CHARACTERS: merged into TO-DO file under the heading "Long Range:"

	* DIFF, CCADIFF and GOSDIFF: merged into a new outline file titled
	OTHER.EMACSES.  The present names don't really convey anything.
	Various key bindings and feature descriptions have been updated.

	* NICKLES.WORTH.  Nuked.  This is copyrighted material that could land
	FSF in hot water.

	* INTERVAL.IDEAS:  Nuked.  RMS's thinking, and indeed the
	implementation of intervals, have progressed way beyond this.

	* RCP:  Nuked.  It no longer said anything but "Ooops, sorry!"

	* ED.WORSHIP, GNU.JOKES: merged into a mailbox called JOKES.
	Future jokes can accumulate there.

	* DISTRIB: the actual domestic order form is now ORDERS.USA.
	The DISTRIB text now mentions 19.

	* ORDERS.USA: created.  This is just the order form.  DISTRIB
	has a pointer to it at the beginning.

	* EUROPE: renamed to ORDERS.EUROPE.  DISTRIB now has a pointer
	to it at the beginning.

	* OOOONEWS, OOOONEWS: Nuked.  It's version  19 --- nobody needs the
	version 15 and 17 files anymore.

	All files marked "Nuked" have actually been moved to =-prefixed
	names as per convention.  Originals of all files merged still
	exist with =-names.

1993-03-17  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* XENIX: nuked (moved to =XENIX).  The hackery it describes is
	no longer necessary in the presence of 19's function-key-map
	feature; I've added an explanation to the beginning of the file.

1993-03-10  Jim Blandy  (jimb@totoro.cs.oberlin.edu)

	* MACHINES: Update description of SYSVr3 and r4 support, due to
	Eric Raymond's changes.

1993-03-09  Jim Blandy  (jimb@totoro.cs.oberlin.edu)

	* MACHINES: Mention that you have to edit the configure script
	when you add support for a new machine, to get it to recognize the
	configuration name.

1992-11-20  Jim Blandy  (jimb@totoro.cs.oberlin.edu)

	* MACHINES: Converted to use GCC-style configuration names,
	instead of listing m/*.h and s/*.h files.  All knowledge of m/ and
	s/ files now lives in ../configure.

1992-10-06  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)

	* NEWS: Document included tags tables.

1992-07-22  Eric S. Raymond  (eric@mole.gnu.ai.mit.edu)

	* Corrected the news about VC to reflect reality.

1992-07-17  Jim Blandy  (jimb@wookumz.gnu.ai.mit.edu)

	* etags.1: New file, from Richard K. Pixley at Cygnus.

1992-06-24  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* Makefile: Most of the contents of this file were only relevant
	to things in `../lib-src'; removed all but the `distclean' and
	`clean' targets.

1992-04-14  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* COPYING: Got June 1991 version of the GPL here.

	* ChangeLog: Since the old etc contents have been split into etc
	and lib-src, the old etc's ChangeLog has been duplicated in the
	new etc and lib-src.  That means that each contains complete and
	coherent information, although each contains extraneous
	information.

1992-04-08  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* lib-src/etags.c: "--no-warning" option renamed to "--no-warn",
	to be consistent with other GNU programs, like makeinfo.

	* lib-src/Makefile: Renamed to Makefile.in; the configure script
	will edit this to produce Makefile.

1992-04-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* etags.c (print_help, print_version): New functions.
	(main): Options added to support them.

	* etags.c (longopts): New array of long names for the options.
	(main): Recognize them.

1992-04-06  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* etags.c (C_entries): Removed comment saying that \" in a string
	isn't recognized as magic, because it is correctly handled.

	* getopt.c, getopt.h: New files, from GNU C library.
	* etags.c: Rewritten to use getopt.
	#include "getopt.h".
	(file_num): Variable deleted; its role is now played by getopt's
	optind.
	(main): Argument processing loop rewritten to call getopt to get
	next option.  Options which take parameters (-o and -i) rewritten
	to get parameter from optarg instead of argv[1].  Filename
	preprocessing loop and update command changed similarly.
	* Makefile (etags, ctags): Depend on and link with getopt.h,
	getopt.o, and getopt1.o.
	(getopt.o, getopt1.o): New targets for the GNU getopt routines.

	* etags.c (outfflag): Variable deleted; it is non-zero iff outfile
	is non-zero.

	(main): In the argument processing loop, the 'goto next_arg'
	statements are breaking out of the switch statement in exactly the
	same way that a simple 'break' statement would; replace the gotos
	with breaks, and remove the label.

1992-04-06  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* etags.c (C_entries): Clear tydef and next_token_is_func at start.
	(consider_token): Move next_token_is_func to global.

1992-04-02  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* Makefile: Conform with GNU coding standards:
	(mostlyclean): New target, synonymous with clean.
	(TAGS, check): New targets.
	(INSTALL, INSTALLFLAGS): New variables.

1992-03-31  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

    	* lib-src/Makefile, etc/MACHINES, etc/NEWS: Changed references to
	`config.emacs' to `configure'.

	* lib-src/Makefile: Adjusted for renaming of share-lib to etc.
	* etc/MACHINES: Same.

1992-03-30  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* movemail.c (main): Allow tempname to be as long as necessary,
	instead of limiting it to 39 characters.

	* movemail.c (main): Move declaration of buf from top of function
	to local block surrounding the copy loop.  This makes it less
	likely to be confused with the buf used by the code which checks the
	permissions on outname's directory.

1992-03-20  Jim Kingdon  (kingdon@albert.gnu.ai.mit.edu)

	* SERVICE: Remove my entry.

1992-03-09  David J. MacKenzie  (djm@nutrimat.gnu.ai.mit.edu)

	* Makefile (emacstool, nemacstool, xvetool): Use ${CFLAGS}, not
	hardcoded -g.

	* movemail.c (xmalloc): Return char *, not int.
	(main) [!MAIL_USE_FLOCK]: Add a new conditional, MAIL_UNLINK_SPOOL,
	that is off by default -- normally don't unlink the mail spool
	file, just empty it.  Pass creat mode 0600, not 0666.

1992-02-07  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* Makefile (../arch-lib): Depend on ${EXECUTABLES}.
	(all): Instead of here.
	(install): Don't use the -s option, since people need symbols to
	debug code.

1992-01-19  Eric Youngdale  (youngdale@v6550c.nrl.navy.mil)

	* etags-vmslib.c (fn_exp): Add type cast.

1992-01-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* movemail.c: Changes in comments.

1992-01-13  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* Makefile: Make the distclean target erase the DOC files from
	../share-lib and the executables from ../arch-lib.

1992-01-09  Jim Blandy  (jimb@pogo.cs.oberlin.edu)

	* emacsclient.c: #include <sys/stat.h>
	(main): Do declare statbfr.

1991-12-21  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* emacsserver.c, emacsclient.c [BSD]: Use either /tmp or ~
	for the socket, depending on SERVER_HOME_DIR.
	If using /tmp, put host name in the socket name.

	* movemail.c (pfatal_and_delete): New function.
	(main, popmail): Use it.
	(popmail): Close output before deleting messages.
	Check for error on close and on fsync.
	Use `fatal' where appropriate.
	(main): Remove (void).

	* aixcc.lex: New file.  Not officially part of Emacs.
	* Makefile: Rules for that.

1991-12-04  Jim Blandy  (jimb@pogo.gnu.ai.mit.edu)

	* yow.c (main): Rename all references to PATH_EXEC to PATH_DATA.

	* etags.c (main): Properly cast call to alloca that initializes
	included_files.

1991-08-17  Roland McGrath  (roland@geech.gnu.ai.mit.edu)

	* etags.c (files_are_tag_tables): Remove global var.
	(process_file): Don't test it.  Also remove hack checking for a
	file named "TAGS".
	(main): -i now takes an arg which is the name of a file to include.
	Collect these names and emit include tags for them after processing
	all the argument files.

1991-07-30  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* wakeup.c: Terminate if parent goes away.

1991-07-18  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* etags.c (C_entries): Process token before handling end of line.
	When inner loops reach end of line, just back up.
	Let the real end of line processing happen in just one place.
	(consider_token):  Likewise.

1991-04-11  Jim Blandy  (jimb@geech.gnu.ai.mit.edu)

	* etags.c (TEX_mode): Skip comments while scanning the text to see
	which escape character this file uses.

1991-03-29  Richard Stallman  (rms@mole.gnu.ai.mit.edu)

	* emacsserver.c [USG]: Terminate if msgrcv fails.

1991-03-03  Richard Stallman  (rms@mole.ai.mit.edu)

	* emacsserver.c [BSD]: Check for errors on stdin after scanf.

1991-01-25  Jim Blandy  (jimb@churchy.ai.mit.edu)

	* make-docfile: Find the arguments to a C function correctly,
	by not ignoring the character that read_c_string returns.  Don't
	even try to find argument names for functions that take MANY
	or UNEVALLED arguments, since they're a figment of the docstring's
	imagination.

1991-01-14  Jim Blandy  (jimb@churchy.ai.mit.edu)

	* make-docfile: Read the .elc files generated by the new byte
	compiler.

1990-12-31  Richard Stallman  (rms@mole.ai.mit.edu)

	* refcard.tex: Use cm fonts, not am, in multi-column mode.

1990-11-29  Richard Stallman  (rms@mole.ai.mit.edu)

	* movemail.c (mbx_delimit_begin): Put space before `unseen'.

1990-11-27  Richard Stallman  (rms@mole.ai.mit.edu)

	* Makefile (install*): No need to install wakeup.

1990-11-26  Richard Stallman  (rms@mole.ai.mit.edu)

	* Makefile (install*): Install emacsclient like etags.

1990-11-13  Richard Stallman  (rms@mole.ai.mit.edu)

	* movemail.c (error): Handle 3 args.
	(main): Don't check input access if using pop.

1990-10-16  Richard Stallman  (rms@mole.ai.mit.edu)

	* etags.c (find_entries): Check for numbers after Scheme suffix.

1990-10-14  Richard Stallman  (rms@mole.ai.mit.edu)

	* termcap.dat (vt200-80): Fix ke and ks to frob flag 1.

1990-10-09  Richard Stallman  (rms@mole.ai.mit.edu)

	* Makefile (nemacstool, xvetool): New targets.

1990-09-26  Richard Stallman  (rms@mole.ai.mit.edu)

	* emacsclient.c: Include errno.h and define related variables.

1990-09-23  Richard Stallman  (rms@mole.ai.mit.edu)

	* emacsclient.c: Change usage message.

1990-08-30  David Lawrence  (tale@pogo.ai.mit.edu)

	* emacs.1:  Add break before -nw option.

1990-08-19  David J. MacKenzie  (djm@apple-gunkies)

	* qsort.c: Replace with GNU version.

1990-08-14  David J. MacKenzie  (djm@apple-gunkies)

	* wakeup.c: New program replacing loadst.c.

1990-08-14  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* emacsclient.c [USG]: Pass msgsnd only 4 args.

1990-08-09  David J. MacKenzie  (djm@pogo.ai.mit.edu)

	* etags.c: Rename `flag' variables for what they do instead of
	which option character sets them.

1990-05-28  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* loadst.c (main): Conditional to get load average on Apollo.

1990-05-22  Joseph Arceneaux  (jla@churchy.ai.mit.edu)

	* emacsserver.c: Set the permission on the socket to 0600.

1990-03-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* emacsclient.c [BSD]: Print clean message for failing getwd.

1990-03-20  David Lawrence  (tale@pogo.ai.mit.edu)

	* getdate.y: Use the getdate.y from GNU tar for timer.

1990-03-18  Jim Kingdon  (kingdon@pogo.ai.mit.edu)

	* emacsclient.c (main): Don't put brackets around "filename" in
	usage message.  It isn't optional.

1990-03-14  Joseph Arceneaux  (jla@churchy.ai.mit.edu)

	* etags.c (getit):  Recognize '$' as beginning identifiers.

1990-02-22  David Lawrence  (tale@pogo.ai.mit.edu)

	* emacsserver.c: Renamed from server.c.
	* Makefile: Reference emacsserver rather than server.
	* MACHINES: Doc fix for new emacsserver name.

1990-01-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* emacsclient.c: Print program name in error messages.

1990-01-19  David Lawrence  (tale@cocoa-puffs)

	* timer.c, getdate.y (new files) and Makefile:
	  Sub-process support for run-at-time in timer.el.
	  Doesn't yet work correctly for USG.

1990-01-10  Jim Kingdon  (kingdon@pogo)

	* MACHINES: Add HP 300 running BSD.

1990-01-02  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* yow.c: Dynamically allocate buffer; skip header before random
	choice to avoid bias toward first item.

1989-12-24  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (readline): Separate out init of `pend'.

1989-12-17  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: Undo changes relating to isgoodhdr.

1989-12-16  Mosur Mohan  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (isgoodhdr): New macro.
	(_gdh, notgdh): New variable used by that.
	(init): Initialize _gdh.
	(find_entries): Set header_file.
	(consider_token): Use isgoodhdr if in header file.

	* etags.c (total_size_of_entries):
	Was miscalculating by 1 in rewritten case.

	* etags.c (PAS_funcs): One arg to pfnote was missing.

1989-12-05  Joseph Arceneaux  (jla@spiff)

	* MACHINES: Change for the ULTRIX entry.

1989-11-21  Joseph Arceneaux  (jla@spiff)

	* etags.c (process_file): If file is not regular, return.

1989-11-06  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* loadst.c (main): Handle FIXUP_KERNEL_SYMBOL_ADDR.

1989-10-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* loadst.c (load_average): If HAVE_GETLOADAVG, use getloadavg.
	(main): If HAVE_GETLOADAVG, don't call `nlist'.

1989-10-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (consider_token): Allow any number of typespec keywords
	after `typedef', before new type name.
	(enum sym_type): Add st_C_typespec.
	(C_create_stab): Put typespec kwds in table.

1989-08-27  Richard Stallman  (rms@apple-gunkies.ai.mit.edu)

	* etags.c (main): Don't depend on name invoked by.
	If CTAGS is not defined, assume it is ETAGS.

1989-07-31  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (L_funcs): Allow package name in define construct,
	as in (foo::defmumble name-defined ...).

1989-07-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (find_entries): Stupid bug testing for C filename suffixes.

	* Makefile (yow): Depends on ../src/paths.h.

1989-07-04  Richard Stallman  (rms@apple-gunkies.ai.mit.edu)

	* etags.c: Fix compilation by moving Pascal after Fortran.

1989-06-15  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c [USG]: Define F_OK, etc., if not found in header.

1989-05-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* hexl.c: New file, supports hexl-mode.

1989-05-14  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c: New compilation flag MAIL_USE_MMDF.

1989-05-08  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* emacsclient.c: Use BSD code whenever HAVE_SOCKETS.
	* server.c: Likewise.

	* make-docfile.c (scan_c_file): Output argument names at end of string.
	(write_c_args): New subroutine.

1989-04-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c: Report failure of flock.

1989-04-19  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (find_entries): Allow multi-letter extensions for fortran.

1989-04-18  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* loadst.c: on bsd4.3, use gettimeofday instead of CPUSTATES.

1989-03-15  Jeff Peck  (rms@sugar-bombs.ai.mit.edu)

	* emacstool.c: setenv IN_EMACSTOOL=t, TERM=sun, TERMCAP=.

	* emacsstool.1: update to document environment variables.

1989-02-21  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (PAS_funcs): New function by Mosur Mohan.

	* movemail.c: On sysv, include unistd.h.

1989-02-18  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* b2m.c: New file.

1989-02-15  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: Prolog support from Sunichirou Sugou

1989-02-03  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* Makefile (clean): New target.

1989-01-25  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* fakemail.c (put_line): Break header lines at 79 cols.

1989-01-19  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: Greatly rewritten by Sam Kendall for C++ support and for
	multiple tags per line.

1989-01-03  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c: Check access before doing real work.
	Check that outfile is in a writable directory.
	On fatal error, delete the lock file.

1988-12-31  Richard Mlynarik  (mly@rice-chex.ai.mit.edu)

        * env.c:  Add decl for my-index
        * etags.c (file-entries): .oak => scheme

1988-12-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c: Use `access' to check input and output files.

1988-12-28  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* emacsclient.c (main): Ignore all of CWD before first slash.

1988-12-27  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (readline): Double linebuffer->size outside the xrealloc.

1988-12-22  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* server.c, emacsclient.c: Don't try to use gid_t; it isn't defined.
	* server.c: chmod the socket to 0700.

1988-12-09  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* fakemail.c (main): Let env var FAKEMAILER override pgm to run.
	(add_field): Delete comments and turn `<', `>' to spaces
	in header lines.
	(USE_FAKEMAIL): New customization macro says to make fakemail
	not be a no-op even on a BSD system.

1988-12-01  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c (consider_token): Skip comments just like whitespace.
	Notice `struct', etc. and set strtag for those tokens.
	Return 1 for the token following `struct' if an open-brace follows it.
	(C_entries): Special handling of token following `struct'
	needed because we have probably advanced to the following line
	to find the `{'.
	(main): New option `T' sets tflag and strflag.
	Set both of them by default if eflags.

1988-11-30  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c: Do fsync before closing output.

1988-11-29  Richard Mlynarik  (mly@pickled-brain.ai.mit.edu)

        * movemail.c:  Better error message when can't create tempname.
        This file needs a great deal of extra error-checking and lucid reporting...

1988-11-16  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: Support assembler code for .s and .a files.
	(getit): Allow underscore in a tag.

1988-11-15  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* movemail.c: Close output and check errors before deleting input.

1988-10-01  Richard Stallman  (rms@apple-gunkies.ai.mit.edu)

	* emacsclient.c [SYSVIPC]: Compute cwd only once; decide properly
	whether to prefix it.  Handle line number args.

1988-09-24  Richard Stallman  (rms@gluteus.ai.mit.edu)

	* etags.c (main): default setting of eflag was backwards.

1988-09-23  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: New option -i.  -f renamed -o.
	`-' as input file means read input file names from stdin.
	-i spec'd or input file named TAGS means the input file is another
	tag table; output an "include" line for it.

1988-09-19  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* Makefile: New vars DESTDIR, BINDIR, LIBDIR, MANDIR, MANEXT.
	New targets install, install.sysv, install.xenix.
	This makefile is now responsible for installing executables
	and documentation from this directory into system directories.

1988-09-16  Richard Stallman  (rms@corn-chex.ai.mit.edu)

	* server.c, emacsclient.c (main): Compute socket name from euid.

1988-08-04  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* emacsclient.c: Args like +DIGITS are passed through unchanged.

1988-07-12  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* server.c: If both BSD and HAVE_SYSVIPC, use the latter.
	* emacsclient.c: Likewise.
	In the HAVE_SYSVIPC alternative, if BSD, use getwd instead of getcwd.

1988-06-23  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: Handle `typedef struct foo {' (price@mcc.com).
	(istoken) New string-comparison macro.
	(consider_token): New arg `level'.  New state `tag_ok' in `tydef'.

1988-06-14  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* etags.c: Changes for VMS.
	Always define ETAGS on VMS.
	Define macros GOOD and BAD for success and failure exit codes.
	(begtk, intk): Allow `$' in identifiers
	(main): Don't support -B, -F or -u on VMS.
	Alternate loop for scanning filename arguments.
	(system): Delete definition of this function.

	* etags-vmslib.c (system): Undefine this; VMS now provides it.

1988-06-08  Richard Stallman  (rms@sugar-bombs.ai.mit.edu)

	* loadst.c: Prevent multiple-def errors on BSD and BSD4_3
	around include of param.h.  (Like fns.c.)

1988-05-16  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)

	* loadst.c (load_average): Move load-average code to this new fn.
	Add conditionals to compute load ave on UMAX.

1988-05-14  Richard Stallman  (rms@lucky-charms.ai.mit.edu)

	* loadst.c: Change DK_HEADER_FILE to DKSTAT_HEADER_FILE
	with opposite sense.

1988-05-13  Chris Hanson  (cph@kleph)

	* emacsclient.c: Delete references to unused variable `out'.  This
	caused a bus error when used under hp-ux.

1988-05-06  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)

	* loadst.c: Control dk.h conditional with DK_HEADER_FILE.

1988-05-04  Richard Stallman  (rms@rice-krispies.ai.mit.edu)

	* etags.c (find_entries): `.t' or `.sch' means scheme code.

1988-04-29  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)

	* loadst.c: Add BSD4_3 conditional for file dk.h instead of dkstat.h.

1988-04-28  Richard Stallman  (rms@frosted-flakes.ai.mit.edu)

	* movemail.c: #undef close, since config can #define it on V.3.
	* emacsclient.c, fakemail.c, loadst.c, server.c: likewise.

1988-04-26  Richard Stallman  (rms@lucky-charms.ai.mit.edu)

	* etags.c (TEX_mode, etc.): Remove superfluous backslashes from
	invalid escape sequences such as `\{'.

	* loadst.c: Add `sequent' conditional for file dk.h.

1988-03-20  Richard M. Stallman  (rms@wilson)

	* server.c [not BSD and not HAVE_SYSVIPC]: fix error message.

	* loadst.c (main) [XENIX]: use /usr/spool/mail, not /usr/mail.

;; Local Variables:
;; coding: iso-2022-7bit
;; End:

    Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001
	Free Software Foundation, Inc.
  Copying and distribution of this file, with or without modification,
  are permitted provided the copyright notice and this notice are preserved.