File: ChangeLog.pre-1.6.src

package info (click to toggle)
cxref 1.6c-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,608 kB
  • ctags: 2,058
  • sloc: ansic: 18,218; yacc: 2,086; sh: 915; lex: 462; perl: 452; makefile: 418; lisp: 256; cpp: 188; python: 80
file content (1635 lines) | stat: -rw-r--r-- 52,236 bytes parent folder | download | duplicates (10)
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
2004-06-13  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5g of cxref released.

2004-06-13  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated for version 1.5g release.

2004-05-09  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS, cxref.c: Update to version 1.5g.

	* Makefile.in:
	Don't pass the CXREF_CPP #define to cxref.c if not using cxref-cpp.

2004-04-24  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Bug fix for the previous change allowing mixtures of declarations and statements in compound statements.

2004-03-06  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* INSTALL, configure.in:
	Add a --without-cxref-cpp option to the configure scripts.

2004-02-14  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5f of cxref released.

2004-02-14  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Update to version 1.5f.

2004-01-24  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c, latex.c, rtf.c, sgml.c, warn-raw.c:
	Declaring a function as extern is the same as not declaring it local.

2004-01-18  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l, preproc.c:
	Add extra flags so that parsing gcc-3.x output works better.

2004-01-11  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* warn-raw.c:
	Fix the text printed for some warnings from the -warn option.

2004-01-10  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* var.c:
	Ensure that variables defined in header file and locally get comments.

2003-12-02  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* func.c:
	Don't look for argument comment for functions with void arguments.

2003-09-05  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse-yy.h: Corrected a comment.

	* cxref.c: Add a missing quote character in error message.

	* Makefile.in: Delete y.tab.h if not needed.

2003-07-20  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Allow mixtures of variable declarations and statements in compound statements (suggested by Henrik Poulsen).

2003-06-29  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5e of cxref released.

2003-06-29  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Update with latest information.

2003-06-27  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Update version number.

2003-06-22  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l:
	Handle macros with variable args that use MACRO(a,b,...) as well as MACRO(a,b...).

	* preproc.c, parse.l:
	Handle gcc-3.x putting all of its internal #defines in the output.

2003-06-15  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ-html.pl:
	Don't force emacs to use perl mode and indent the file with emacs cperl mode.

2003-05-05  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Update to work with newer version of flex.
	Removed some gcc warnings.

	* parse-yy.h, parse.l, Makefile.in:
	Update to work with newer version of flex.

2003-01-17  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* comment.c:
	Don't copy from bad pointer if new comment equls current one (patch from Simon 'corecode' Schubert).

2002-09-17  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l:
	Don't lose the comment or value when C++ style comments follow a #define.

2002-08-17  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l:
	Allow parsing of integers defined with i32 or i64 suffix denoting length.

2002-07-19  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* INSTALL: Clarified the installation instructions.

2002-07-14  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse-yy.h: Bug fix for Sun version of yacc.

2002-06-30  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c: Add quick links to cross references in appendix.

	* html.c: Remove some extra ';' in #include cross reference output.

2002-06-23  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* xref.c:
	Fix overwriting of cross-reference filenames for local functions with the same name in multiple files.

2002-05-05  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5d of cxref released.

2002-05-05  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated to version 1.5d.

	* FAQ: Small updates.

	* cxref.c: Update the help message version number.

	* parse.y:
	Use the YYTRANSLATE() macro when printing the debugging output.

2002-04-21  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in: Bug fix for 'make install'.

2002-04-14  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Add a missing ';' that the latest version of Bison detected.

	* Makefile.in:
	Change the rule for compiling .c to .o for versions of make that don't understand '%.o:%.c'.

2002-03-31  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* INSTALL, Makefile.in:
	Include a DESTDIR in the Makefiles to allow installing in a different place to the compile options.

2002-02-17  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in:
	More fixes to allow configure/build outside of cxref source tree.

2002-02-03  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in: Add flex specific command line options if using flex.

	* parse.l:
	Add some missing rules to stop flex warning message with -s option.
	Re-indent some of the code for neatness.

	* parse.l: Handle the GCC floating point hex extension.

2002-01-26  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l:
	Keep the sign of negative numbers when reporting the value of #define statements.

2002-01-19  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* INSTALL: Reference the --help option to configure.

	* cxref-cc: Bug fix for IFS handling.

2002-01-13  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c, warn-raw.c:
	If a function is included from a header file make it clear in the output.

2002-01-07  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c:
	Fix bug with referencing wrong source HTML file for global variables.

2001-11-04  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: More fixes for the -R/ bug.

2001-10-27  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in:
	Remove two instances of $< that caused problems with non-GNU make programs.

2001-09-06  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Fix bug that stopped -R/ from working.

2001-08-23  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Handle the GNU C __builtin_va_arg extension.

2001-08-17  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* sgml.c: Fix bad SGML output (&nbsp; instead of &nbs;).

2001-08-11  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Handle the gcc-3.0 __builtin_va_list type.

2001-06-30  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ-html.pl, README.html: Fixup to make the files HTML 3.2 compliant.

	* html.c: Remove any ^L characters when writing out HTML source files.
	Fix bad HTML output (&nbsp; instead of &nbs;).
	Don't replace " with &quot; (not valid in HTML 3.2).

Sat Apr 28 15:45:00 2001  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5c of cxref released.

Sat Apr 28 15:43:17 2001  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated to version 1.5c.

	* parse.y: Fix problem with not allocating enough memory.

Sun Mar 18 10:29:25 2001  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in, configure.in:
	Allow the cxref programs to be compiled in a directory different from the source.

Sat Jan  6 13:05:13 2001  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* preproc.c, rtf.c, sgml.c, warn-raw.c, xref.c, cxref.c, func.c, html.c, latex.c:
	Remove some gcc compilation warnings.

Sat Aug 19 15:44:44 2000  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Added more useful debugging messages.

Sat Jul  8 15:07:40 2000  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c:
	Disallow files from being cross referenced if they are outside the root directory.

Mon Mar 13 19:40:31 2000  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Optimise the lex source for run-time speed.

Sat Jan 29 14:46:42 2000  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Allow bracketed function declarations.

	* parse.l: Fix typo with COMMENT / WARN_COMMENT #define.

Tue Nov 16 19:19:50 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l:
	Modify SeenComment() function. Add the __restrict keyword (ignore it). Include string.h.

	* autoconfig.h.in: Initial revision

	* comment.c, cxref.h: Modify SeenComment() function.

	* cxref.c: Updated the version number.

Sun Sep 26 10:00:00 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5b of cxref released.

Sun Sep 26 08:55:24 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Update to version 1.5b.

Sun Aug 22 08:16:24 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in: Add CFLAGS and LDFLAGS to the Makefile.in.

Wed Jul 21 18:26:21 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c, preproc.c:
	Increase the length of the buffer to the getcwd() function call.

Sun Jul 11 10:09:53 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Ensure that the lexer is reset to the initial state.

	* cxref.c: Don't call yyrestart() before the first file.

Fri Jul  2 18:26:13 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* preproc.c:
	Use what the programmer said for deciding if an include file is global or local.

Fri Jun 25 18:12:41 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c: Fix a stupid bug with dereferencing a NULL pointer.

	* xref.c:
	Fix the problem if NAME_MAX is not defined even if PATH_MAX is.

Sun Jun 20 09:55:27 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* xref.c, cxref.c, cxref.h: Speed up the cross referencing.

Sat Jun 19 16:52:02 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c:
	Fix the bug with the +html+ style comments in the source HTML output.

Fri Jun 18 19:15:00 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5a of cxref released.

Fri Jun 18 18:12:18 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated to version 1.5a.

Thu Jun 17 18:00:39 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Allow the GNU extension to case statements.

	* parse.l: Fix problems with C++ style comments after #defines.

Wed Jun 16 18:51:45 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse-yy.h: Turn on the debugging by default.

	* cxref.c: Fix the CanonicaliseName() function (again).

Tue Jun  8 18:41:51 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Bug fix in the CanonicaliseName function.

Fri Jun  4 16:19:06 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c:
	Make sure that the source file has the correct relative path from the cxref file.

Thu May 27 16:44:39 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.tex:
	Changed to LaTeX2e documentclass instead of documentstyle.

Wed May 26 18:34:31 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Fix the CanonicaliseName() function.

Thu May 20 19:00:00 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y, parse.l: Handle more GNU extensions.

Sat May 15 19:00:11 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l, preproc.c, cxref.h:
	Remove the problem of #line directives confusing the parser.

Sat May 15 16:58:57 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* latex.c, rtf.c, sgml.c, cxref.c, html.c:
	Add the cxref and cpp command lines to the output files (not RTF).

Wed May 12 18:54:34 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* INSTALL: Add the --with-cxref-cpp option.

Sat May  8 14:16:31 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* configure.in: Add a --with-cxref-cpp option.

Fri May  7 18:38:35 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* xref.c:
	Increase the size of the statically allocated memory for filenames, function names and typenames.

Thu Apr 15 18:08:44 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in:
	Remove the generated lex and yacc parsers in the clean target.

Tue Apr 13 19:08:01 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in:
	Removed some potentially problematic options to Lex/Yacc commands.

Fri Mar 26 19:51:08 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: Added the -isystem gcc option hint.

Fri Mar 19 17:37:52 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* xref.c, parse.l, rtf.c, sgml.c, warn-raw.c, html.c, latex.c:
	Allow the '$' charcter to be used in function and variable names.

Sun Mar 14 09:41:22 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* latex.c: Fix a bug with verbatim comments.

Fri Mar  5 20:01:55 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* rtf.c, sgml.c, html.c, latex.c:
	Fix a bug with the include/exclude directives at the start of comments.

Sun Feb 21 12:00:00 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.5 of cxref released.

Sun Feb 21 11:47:58 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated to version 1.5.

Sat Feb  6 14:53:05 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: Added a reference to the fixheader Perl script.

Thu Jan 28 19:23:01 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in: Use the -html-src option for the README.

Thu Jan 28 19:19:36 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c: Use a table for the struct/union output in HTML 3.2.

Wed Jan 27 19:19:31 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Fix a problem with common comments and type casting.

Tue Jan 26 19:40:13 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c, cxref.c, README.tex, README.man, README.sgml, README.html, Makefile.in, README:
	Produce an HTML version of the source file with links into it.

Sun Jan 24 16:53:50 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* warn-raw.c, func.c, preproc.c, type.c, var.c, Makefile.in, cxref.h, datatype.h:
	Store the line numbers of the definitions as we see them.

	* cxref.c: Don't allow -delete or a filename in the .cxref file.

	* README.tex, README.sgml, README.html, README.man, README:
	Some simple documentation changes.

Mon Jan 18 17:49:48 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* preproc.c, var.c, parse.y:
	Stop comments from header files from leaking into the main source file.

Sun Jan 17 09:40:47 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* INSTALL: Add information about the --enable-us-paper option.

Sat Jan 16 12:20:04 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.in: Fix problem with using gcc instead of cxref-cpp.
	Add a new install target for Win32.

Sat Jan 16 11:11:42 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* configure.in, Makefile.in: Initial revision

	* memory.c: Modify for use with autoconf and configure.

	* INSTALL: Add information about using autoconf and configure.

Mon Jan 11 19:34:07 1999  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* rtf.c: Fix the verbatim comments.

Mon Dec 28 14:26:26 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* rtf.c: Make the RTF output work as required.

Sun Dec 27 12:41:15 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: Use gcc instead of cxref-cpp if new enough.

Tue Dec 22 17:10:10 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: Put in information about using cxref with cygwin on win32.

	* memory.c: Allow the file to compile with the win32 cygwin library.

Tue Dec 22 15:23:38 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.sgml: Initial revision

	* README.man, README.tex, README.html, README:
	Updated the documentation to include the new output formats.

	* rtf.c, sgml.c: Initial revision

	* comment.c: Handle verbatim comments better.

	* warn-raw.c: Abstract out the output specific comment handling.

	* latex.c: Some tidying up to make more like the HTML with tables.

	* html.c: Add in new HTML-3.2 option.

	* cxref.h: Add in RTF and SGML formats.

	* cxref.c: Add in RTF and SGML and allow two types of HTML.

	* Makefile.config, Makefile: Add in RTF and SGML formats.

	* INSTALL: Note the changes to the Makefile.

Sat Dec 12 17:08:58 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ-html.pl: Fix a problem with '&' in the FAQ.html output.

Sat Dec  6 14:30:00 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.4c of cxref not released

Sun Dec  6 14:28:54 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated to version 1.4c.

Tue Nov 24 18:54:43 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: A new FAQ question/answer.

Tue Nov 17 20:05:12 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Fix the CanonicaliseName() function.

Fri Oct 23 18:50:59 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c:
	Have a different, more specialised, format for the HTML. [WineDoc side branch]

	* func.c, file.c: Output some parser information. [WineDoc side branch]

	* cxref.c: Use block comments by default. [WineDoc side branch]

	* comment.c:
	Allow both types of comments for functions. [WineDoc side branch]

Fri Oct 23 18:21:44 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* comment.c:
	Strip leading and trailing whitespace from function argument comments.

	* parse.l: Added in the char_varying() data type.

Fri Oct  9 18:43:16 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Allow a typename to be used as the name for a structure in a field_list.

	* parse.l: Add in the gnu typeof() and __FUNCTION__ extensions.

	* cxref-cc: More useful error messages.

Tue Jun 23 18:11:10 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* memory.c: Added Solaris x86 to the USE_STD_ARG list.

Tue Jun 16 18:31:40 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ-html.pl: Do not make quoted URLs into real links.

Sun May 31 07:57:09 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Fix a bug with cwd=rootdir.

Sat May 16 10:56:51 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Allow orphaned ';' in structure definitions.

Wed Apr 22 17:47:42 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile: Make more AIX friendly.

Sat Apr 18 19:30:00 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	Version 1.4b of cxref released

Sat Apr 18 19:29:31 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README, README.tex, README.man, README.html, NEWS:
	Updated to version 1.4b.

	* parse.y:
	Fixed properly the problem with comments for pointer to function variables.

Sat Apr 18 18:46:06 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* latex.c, html.c: Small fix to comment handling.

Sat Apr 18 13:29:04 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* comment.c:
	Use a lot less memory by not using the private memory heap.
	Fixed SplitComment() that was giving wrong results for some comments.
	Allow the comment to be deleted to tidy up at the end.

	* parse.y:
	Change to the way that common comments are stored due to comment.c changes.

	* parse.l: Small change to comment.c function interface.

	* cxref.h: Add a function to free the memory used in comment.c.

	* cxref.c: Ensure that there are no mallocs not freed on exit.
	Fix the bug in the -I option mangling based on -R and cwd.

Tue Apr 14 18:55:55 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile:
	Don't create directories to install into if they already exist.

	* cxref.c: Be more careful over the exit status of the child process.

	* parse.l: Added __typeof and __alignof.

	* install.sh:
	Fixed a problem with installing cxref-query and making directories.

Sat Apr  4 09:27:27 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: Fix some typos and make easier for FAQ-html.pl to work with.

	* FAQ-html.pl: Add links for internal references and external URLs.

Thu Mar 26 22:05:20 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c:
	Modify the -I options if they refer to sub-directories of the current dir or -R option dir.

Mon Mar 16 19:44:56 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y, warn-raw.c, html.c, latex.c:
	Allow empty structures or unions to be defined.

Mon Mar 16 19:16:20 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref-cc:
	Made all the output come out on stderr, handle '-' as filename with a warning.

Sun Mar  1 16:11:58 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Added a fix for function prototypes declared using a typedef.

Thu Feb 26 19:55:54 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Make sure that comments for pointer to function typedefs and variables are included.

	* preproc.c:
	Make sure that the pathname gets updated if we find out later what it really is.

	* comment.c:
	Ensure that the file comment comes from the file in question and not an included file.

	* cxref.c:
	Allow the argument '-R.' to be ignored and not acted on incorrectly.

Wed Feb 11 19:44:08 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Change int to pid_t.

Tue Jan 20 18:51:24 1998  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Save some memory when parsing comments.

Thu Nov 20 20:30:00 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

        Version 1.4a of cxref released

Thu Nov 20 20:16:22 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated to version 1.4a.

	* comment.c:
	Made lines containing only whitespace be replaced by a newline.

	* parse.l, README.tex, cxref.c, README.html, README.man, README:
	Added in a -no-comments option.

	* Makefile: Fixed more SUN make problems.

	* latex.c, parse.y, warn-raw.c, html.c:
	Stop wwwoffle crashing on (pointless) unamed structs within structure defintions.

Tue Aug 26 16:42:32 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c:
	Fix incorrect parsing of .cxref file when there is a legally recognised space.

Mon Aug 25 09:24:14 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.config, install.sh, memory.c:
	Changes to work with Ultrix (install -c and USE_STD_ARG).

Sun Aug 24 15:29:16 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* comment.c:
	Do not try to access a NULL pointer for comments that are empty.

Sat Aug 23 15:21:09 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Improved the CanonicaliseName() function.

Wed Aug  6 17:45:33 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Allow blank lines and comments in the .cxref file.
	Fixed string handling / memory bug.

	* comment.c: Fixed string handling / memory bug.

	* README.man, README.tex, README, README.html:
	Allow blank lines and comments in the .cxref file.

Wed Jul 30 16:50:06 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Better handling of multi-line preprocessor directives.

Mon Jul 28 18:17:24 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile: Made the Makefile work with SUN make.

Fri Jul 25 19:10:34 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* preproc.c: Clean up properly in ResetPreProcAnalyser().

	* parse.y:
	Handle 'volatile const' and 'const volatile' and clean up properly in RestParser().

	* latex.c, html.c, warn-raw.c: Cope with functions that are declared as external.

Fri Jul 18 19:21:56 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Fixed bug in -CPP option.

Sat Jul  5 18:30:00 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

        Version 1.4 of cxref released

Sat Jul  5 18:22:27 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Updated for version 1.4.

Sun Jun 22 10:09:28 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile: Fixed a bug in the allclean target.

	* parse.y: Bug fix for a GNU C extension.

	* cxref.c: Bug fix for reading the .cxref file.

Sun Jun 22 10:07:12 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.tex, README, README.html, README.man, FAQ:
	Added in a description of the cxref-cc script.

	* cxref-cc: Initial revision

Thu Jun 19 17:40:22 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c:
	Added a new option -Rdirname to specify the source code tree root directory.
	Added in the reading of options from a .cxref file.

	* preproc.c, cxref.h:
	Moved the CanonicaliseName() function from preproc.c to cxref.c and made it global.

	* README.html, README.man, README.tex, FAQ, README:
	Added documentation about the -R option and the .cxref file.

Wed Jun 18 18:54:33 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile:
	Changed the installed cxref to not have a path hard-coded to cxref-cpp (using execvp).

Sat Jun 14 16:35:42 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* var.c, warn-raw.c, parse.y, latex.c, parse.l, html.c, datatype.h, func.c:
	Handle the functions and variables that are included into a file from a header
	file as if they were actually in the file.
	But only if the result of compilation of the file is to put them into the object
	file, so not inline functions or extern variables.

Fri Jun 13 18:32:17 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* FAQ: Added in a section 0 pointing to the cxref home-page.

Mon May 26 15:30:51 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* preproc.c, cxref.h, parse.l:
	Cope with comments trailing #include statements now that cxref-cpp has been fixed.

Mon May 26 11:23:42 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* html.c, latex.c, README.man, README.tex, README.c, README.html, README:
	Added in a way to allow extended markup (HTML or LaTeX) inside of comments.

Sun May 25 16:59:16 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.html, html.c, FAQ-html.pl:
	Used 'weblint' and 'htmlchek' to check the conformance of the HTML output and fixed most deviations.

Sun May 25 10:03:36 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Fixed the reported parse bugs
	 - initialised declarator using GNU extension,
	 - type name / identifier confusion.

Sun May 18 15:41:42 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Re-ordered the statements into a logical rather than alphabetical order.

Sun May 18 10:05:52 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* latex.c, xref.c, html.c, README.tex, cxref.c, cxref.h, README.html, README.man, README:
	Added an option to allow files to be deleted from the cross reference output.

Sat May 17 15:06:01 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l, preproc.c, cxref.h:
	Made fuller use of the CPP changes for included files.

	* cxref.c: Made fuller use of the CPP changes for included files.
	Moved CurFile to cxref.c from file.c.

	* file.c: Moved CurFile to cxref.c from file.c.

Fri May 16 19:06:19 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c, FAQ, README, README.tex, README.html, README.man:
	Added in a way of passing extra arguments to the pre-processor.

Sun May 11 15:24:04 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* comment.c: Do not Malloc the string returned from SplitComment.

	* xref.c, warn-raw.c, var.c, slist.c, type.c, preproc.c, parse.y,
	  parse.l, html.c, latex.c, func.c, datatype.h, file.c, cxref.c, cxref.h:
	Major changes to the internals of the program:
	  Changed StringList and StringList2 to be pointers.
	  Added more options to the AddToStringList() functions.
	  Lists of xrefs use StringList2 with separate function and filename.
	  Added in constructors and destructors for the main datatypes.
	  Added in functions to reset the lexer/parser/analysers when finished.

	* memory.c: Improved the debugging information.

	* Makefile: Handle missing sub-directories gracefully.

Sun Apr 27 17:09:25 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* comment.c:
	Tidy up the comment string once it is collected, not in the lexer.

	* preproc.c, cxref.h:
	Changed the way that the lexer interfaces to cpp for the include files.

	* parse.l:
	Added new comment options; -verbatim-comments and -block-comments.
	Changed the way that the lexer interfaces to cpp for the include files.

	* html.c, latex.c, cxref.c:
	Added new comment options; -verbatim-comments and -block-comments.

	* README.man: Describe the new comment options.

	* README, README.html, README.tex:
	Changed the description of the modifications to cpp
	and describe the new comment options.

	* Makefile: Make use of the new cpp option for #includes.

Fri Apr 25 18:39:19 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.html, README.tex, README: Changed over to cpp-2.7.2.

Wed Apr 23 20:00:00 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

        Version 1.3a of cxref completed.

Wed Apr 23 19:46:48 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Added a fix for type cast inside of an array declaration.

Thu Mar  6 18:40:22 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Added the sys/wait.h include file.

	* Makefile:
	Fixed a bug in the allclean target added when removing 'make -C'.

Fri Feb  7 19:20:37 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* func.c, cxref.c: Fixed minor memory handling problems.

	* parse.y:
	Fixed a problem with function prototypes having pointer to pointer to function arguments.

Fri Jan 24 20:33:33 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile: Removed all of the GNU Make features.

Thu Jan  9 17:48:23 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* memory.c: Stdarg is needed for other UNIXes.

Sat Jan  4 15:54:31 1997  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* install.sh: Made the exit status work correctly now.

Sun Dec 15 18:09:43 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* install.sh: Initial revision

	* Makefile, Makefile.config:
	Added an installation configuration option.

Fri Dec 13 20:03:19 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile:
	The program was installed to a INSTDIR/bin/cxref-cpp but cxref-inst looked at INSTDIR/cxref-cpp.

Sun Dec  8 10:30:00 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

        Version 1.3 of cxref released

Sun Dec  8 10:11:12 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Added news of version 1.3 changes.

Sun Dec  8 10:07:45 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.config: Changed the INSTDIR to install the manual pages.

	* Makefile: Added the manual pages.

	* README.man: Initial revision

Sat Dec  7 20:36:38 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.l: Added C++ style comments
	More GNU extensions
	   __extension__ keyword is ignored, and expression is parsed
	   __typeof__ keyword returns a type name of __typeof__
	   Varargs macros allowed

	* parse.y:
	Made the parser work on the source conde in the Linux kernel:
	   Added lots more GNU extensions
	   Fixed more problems with type names and identifiers clashing
	   Changed the way that integer types are handled to allow for any number of types
	   Concatenate the value of expressions so that constant expressions e.g. for array sizes are expressed.

Sat Dec  7 14:08:39 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile.config:
	Stop flex from including #line directives taht confuse cxref.

Tue Nov 26 17:50:52 1996  Andrew M. Bishop  <amb@gedanken>

	* cxref.c:
	Wrote a new popen/pclose that uses execlp instead of system, requires arguments to be kept as a list.

Sat Nov 16 16:30:00 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

        Beta Version 1.3 of cxref released

Sat Nov 16 16:19:15 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Added news of version 1.3 (beta) changes.

Sat Nov 16 15:29:51 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.el: Added compatability for newer Emacs cc-mode.

Sat Nov  2 17:38:00 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y:
	Fixed problems with implicit integer types and type qualifiers.

Sat Nov  2 17:21:02 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* warn-raw.c:
	Really moved type comment to match html.c/latex.c (earlier attempt was wrong).

Sat Nov  2 14:44:01 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.tex, README.html, README:
	Removed references to using cxref without cxref-cpp, and improved cxref-cpp section.

	* README.c:
	Improved README.c, added cross-referenceable items, removed references to cxref-cpp.

	* Makefile: Use -xref option on README.c and fix parse-yacc.h target.

Wed Oct 30 20:34:03 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* Makefile:
	Provide the yacc and lex output .[ch] files for people without bison/flex.

Tue Oct 29 19:53:55 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* parse.y: Slight change to error message for when parser fails.

	* cxref.c: Slight change to error message for when cpp dies.

	* Makefile.config: Initial revision

	* Makefile: Automated makefile, uses separate configuration file.

	* INSTALL: New automated makefiles require new instructions.

Sun Oct 27 15:50:42 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c: Tidied up the usage information, made it 80 chars wide,
	included author's name, e-mail address, web page, version number.

	* warn-raw.c:
	Added ';' in struct listings, moved type comment to match html.c/latex.c.

	* latex.c: Added ';' in struct listings.

	* html.c:
	Added ';' in struct listings, changed order of tags to satisfy weblint,
	replaced <menu> with <ul> added HTML-2.0 DTD at the top.

Sun Oct 20 16:50:10 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* README.tex, README.html, README:
	Added a 'Further Information' section and general updating.

	* FAQ-html.pl: Initial revision

	* FAQ: More information in section 4 and general updating.

Sat Oct  5 12:30:00 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

        Version 1.2b of cxref released

Sat Oct  5 12:15:21 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* NEWS: Added news of version 1.2b changes.

Sun Sep 29 14:53:59 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.h, var.c: Tidy up the scope variables after each file.

	* cxref.c:
	Added warning about -warn-xref option without and -xref option.
	Tidy up the scope variables after each file.

	* warn-raw.c:
	Check for both -warn-xref and -xref options before printing a warning.

	* html.c: Stopped the appendix from appearing in the wrong place.

Sun Sep 15 16:05:37 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* warn-raw.c, latex.c, html.c:
	Changed the output format to put comments for a nested struct/union after the variable name.

	* type.c:
	Typedefs of function types recognised as such so they can be used in prototypes.
	Comments in nested structure/union type defintions now get picked up correctly.

	* cxref.h:
	Typedefs of function types recognised as such so they can be used in prototypes.

	* parse.y:
	Typedefs of function types recognised as such so they can be used in prototypes.
	Function defintions from header files handled safely.

	* xref.c: Bug that caused dangling (illegal) cross references fixed.

	* file.c, func.c, datatype.h:
	Function prototypes within function definitions now cause no loss of references.

Sun Aug 18 16:52:16 1996  Andrew M. Bishop  <amb@gedanken.demon.co.uk>

	* cxref.c:
	Recognise an abnormal termination of cxref-cpp (or whatever) and stop processing the file.

Sat Aug 17 12:00:00 1996  Andrew M. Bishop  (amb@gedanken)

        Version 1.2a of cxref released

Sat Aug 17 11:56:46 1996  Andrew M. Bishop  (amb@gedanken)

	* NEWS: Added news of version 1.2a changes.

	* func.c: Better handling of K&R function definitions.

	* parse.l: Added more GCC extensions.
	Change the way identifiers and type names are distinguished.

	* parse.y: Now have feedback to lexical analyser.
	Use an array to store current variable name to handle nested definitions.
	Added the rest of the integer types.
	Removed the reduce/reduce conflict.

Sat Jul  6 20:00:00 1996  Andrew M. Bishop  (amb@gedanken)

        Version 1.2 of cxref released

Sat Jul  6 19:56:15 1996  Andrew M. Bishop  (amb@gedanken)

	* NEWS: New news added, reformatted, and spell-checked.

	* FAQ: Initial revision

	* README, README.html, README.tex: Reformatted, and spell-checked.

Sat Jul  6 19:05:47 1996  Andrew M. Bishop  (amb@gedanken)

	* html.c: Added heading for source files section.

Sat Jul  6 17:01:16 1996  Andrew M. Bishop  (amb@gedanken)

	* parse.y: Lots of changes, in particular:
	   Handle parse errors safely, do not exit but go on to the next file.
	   Complete rewrite of function declaration code, fixed scope and K&R problems.
	   Copes with variable types better than it used to.
	   Extern variables allowed within functions (EXTERN_F type).
	   Renamed some of the local variables, and changed their behaviour to accomplish the above.
	There remain 3 reduce/reduce conflicts that do not (seem to) affect the program output.

	* INSTALL: Removed the reference to the %expect in parse.y.

Thu Jul  4 20:02:27 1996  Andrew M. Bishop  (amb@gedanken)

	* func.c: Bug with ellipses in function definition.

Tue Jul  2 20:52:59 1996  Andrew M. Bishop  (amb@gedanken)

	* latex.c, warn-raw.c, html.c:
	Change the output to handle the EXTERN_F scope type.

	* cxref.c: Fixed bug in -CPP option handling.

Sat Jun 29 16:43:38 1996  Andrew M. Bishop  (amb@gedanken)

	* Makefile:
	Don't assume that . is on the path, so use ./cxref not just cxref and use $(MAKE) for subdirectories.

Sat Jun 29 16:28:52 1996  Andrew M. Bishop  (amb@gedanken)

	* xref.c, cxref.h:
	Defined the scope type EXTERN_F for variables declared extern within a function.
	The outputs need to be modified to reflect this, as does the parser and cross-referencer.

Thu Jun 27 20:10:03 1996  Andrew M. Bishop  (amb@gedanken)

	* comment.c: Fixed bugs in the SplitComment() function.

Sun Jun 16 18:59:47 1996  Andrew M. Bishop  (amb@gedanken)

	* parse.l:
	Better handling of whitespace in comments and make better use of current parse file variable.

Sun Jun 16 16:44:28 1996  Andrew M. Bishop  (amb@gedanken)

	* var.c:
	Remove the fixed limit on the number of levels of scope variables.

	* type.c:
	Fixed bug where 1st and not matching '}' was searched for in typedef definition.

	* func.c:
	Use file name from parser, not locally generated for prototypes.
	Better handling of traditional function declarations.
	Changed the way that function internal comments are handled.

	* cxref.h: Changed some function prototypes in func.c.

	* comment.c:
	Changed the way that function internal comments are handled.

Tue Jun 11 18:12:41 1996  Andrew M. Bishop  (amb@gedanken)

	* parse-yy.h, parse.l:
	Add support for line numbers and file names in the parser.

	* parse.y:
	Gracefully handle yacc parse errors, print line numbers and file names, don't exit.
	Parse labeled statements with a ';' in a non-ANSI but common way.

Sun Jun  9 18:22:33 1996  Andrew M. Bishop  (amb@gedanken)

	* warn-raw.c: Minor improvement to the output for raw mode.

	* cxref.c:
	Gracefully handle yacc parse errors, move on to the next file.

Sat Jun  8 16:54:32 1996  Andrew M. Bishop  (amb@gedanken)

	* latex.c: Added cxref.sty,
	Combined the AddLatexAppendix() function into the WriteLatexDocument() function,
	Merged the WriteLatexPreamble() and WriteLatexPostamble() functions into WriteLatexTemplate(),
	Removed the code in latex() that tried to convert '-' into an en-dash,
	Create directories that are needed for the output files to write into.

	* html.c:
	Combined the AddHTMLAppendix() function into the WriteHTMLDocument() function,
	Create directories that are needed for the output files to write into.

	* func.c:
	Fixed bug where option_xref==0 still listed out the functions called (syntax error).

	* README, README.tex, README.html:
	Updated the README as a result of adding cxref.sty, also minor tweaks.

	* Makefile: Added doc/cxref.sty to the files included in latex-style.c.

	* INSTALL:
	Added a description of the change that needs to be made in doc/page.sty for US paper.

Wed May 22 19:00:00 1996  Andrew M. Bishop  (amb@gedanken)

        Version 1.1 of cxref released

Wed May 22 17:55:53 1996  Andrew M. Bishop  (amb@gedanken)

	* parse.y:
	A large number of changes to get the program to provide better
	debugging output and parse new GNU C language extensions.
	   Better debugging options for the parser, by adding extra levels of
	    debugging, and a wrapper function that intercepts yylex() calls.
	   Allows the asm() GNU extension.
	   Bit-fields now parsed correctly.
	   Enum typedefs allowed to have a trailing comma.
	   Function definitions with no return type are now recognised as int
	    and those with no arguments recognised as void.

	* parse.l:
	A large number of changes to get the program to work on other systems
	and parse new GNU C language extensions.
	   Code fixed to work with a POSIX lex program (no YY_START or <*>).
	   Code handles carriage returns in strange places.
	   GNU __attribute__ & __extension__ compiler directives handled better.
	   Allows the asm() GNU extension.
	   Re-ordered the code, and added comments for each section.

	* NEWS: Initial revision

Mon May 20 18:54:01 1996  Andrew M. Bishop  (amb@gedanken)

	* preproc.c:
	Fixed bug in SeenInclude where a #include "..." inside a #include <...> didn't work.

	* parse-yy.h: Added better YACC debugging support.

	* Makefile: Made latex-style.c be ANSI compatible.

	* cxref.c: Fixed stupid bug, added better YACC debugging support.

Sat May 18 19:40:50 1996  Andrew M. Bishop  (amb@gedanken)

	* README: Changed the title to version 1.1.

	* INSTALL: Added a few more references to the cpp/README.

Sun Feb 25 09:50:47 1996  Andrew M. Bishop  (amb@gedanken)

	* INSTALL: Initial revision

Sat Feb 24 16:30:00 1996  Andrew M. Bishop  (amb@gedanken)

        Version 1.0 of cxref released

Sat Feb 24 14:54:19 1996  Andrew M. Bishop  (amb@gedanken)

	* INSTALL: Initial revision

	* xref.c, warn-raw.c, var.c, type.c, slist.c, preproc.c, parse.y, parse.l, parse-yy.h, memory.h, memory.c, latex.c, html.c, func.c, file.c, datatype.h, cxref.h, cxref.el, cxref.c, comment.c, README.tex, README.html, README, Makefile:
	Version 1.0 Released (First release version).

Sun Feb  4 15:41:31 1996  Andrew M. Bishop  (amb@gedanken)

	* xref.c: Re-ordered the cross referencing.

	* memory.h: Added a SafeCalloc() function.

	* memory.c:
	Added a SafeCalloc() function and slight mod to DEBUG macros.

	* cxref.h: Error in XREF_* macro definitions.

	* Makefile: Added default values for CC & CFLAGS, added cxref-query.

Tue Nov 28 19:31:20 1995  Andrew Bishop  (amb@dan)

	* warn-raw.c:
	Fixed bug where variable or function is global and is referenced in the file and invalid warning was printed.

Fri Nov 24 20:51:40 1995  Andrew Bishop  (amb@dan)

	* parse.l:
	Made push past work for 'int foo[2]={1,2}; /* */' where the yacc grammar did not ask for ';'.

Fri Nov 24 19:21:36 1995  Andrew Bishop  (amb@dan)

	* xref.c:
	Fixed bug where functions referenced from a file do not get cross-referenced.
	Tidied up the function cross referencing, rationalising the functions needed.
	Fixed the extern variable fixup where unknown definitions were ignored.
	Changed the variable xref file for variables referenced from files.
	Changed the type definition xref file for not typedef types.

Mon Nov 20 19:09:06 1995  Andrew Bishop  (amb@dan)

	* Makefile:
	Added 'program' as the default target and put 'program' and 'docs' as dependencies of 'all'.

Sun Nov 19 15:33:28 1995  Andrew Bishop  (amb@dan)

	* warn-raw.c:
	Fixed bugs with referencing null pointer if some comments are missing.

Wed Nov 15 19:15:01 1995  Andrew Bishop  (amb@dan)

	* parse.y: Added long long types, removed spaces from ends of lines.

	* latex.c: Added hard-space to the tables to stop latex2e breaking.

	* cxref.h: Made work on Solaris 2.3

	* Makefile: Stopped using echo -n for latex-style.c (fails on SVR4).

Tue Oct 17 20:18:25 1995  Andrew Bishop  (amb@dan)

	* latex.c, cxref.c, README.tex, README.html, README:
	Added support for LaTeX2e version.

Mon Oct  9 19:19:33 1995  Andrew Bishop  (amb@dan)

	* latex.c:
	Fixed some problems with the latex() function that converts illegal symbols to a legel format.

Thu Aug 24 20:41:11 1995  Andrew Bishop  (amb@dan)

	* parse.y, type.c: Fixed bug where 'See Also' for typedefs failed.

Tue Aug 22 20:03:42 1995  Andrew Bishop  (amb@dan)

	* cxref.c: Fixed bug with -xref options.

Sat Aug 12 16:27:07 1995  Andrew Bishop  (amb@dan)

	* cxref.el: Split up the "$Header$" string in the cxref-file-comment.

Thu Aug 10 20:09:43 1995  Andrew Bishop  (amb@dan)

	* cxref.el: Changed the cxref-endline-comment to use c-mode functions.

Sat Aug  5 16:03:11 1995  Andrew Bishop  (amb@dan)

	* html.c, latex.c: Bug with cross reference of extern variables.

Sat Aug  5 15:44:49 1995  Andrew Bishop  (amb@dan)

	* xref.c, warn-raw.c, func.c, cxref.h, cxref.c:
	Added -xref[...] options.
	used #defines for -xref[...], -warn[..] and -index[...] options.

	* README.tex, README.html, README:
	Added details of the -xref[...] options.

	* datatype.h, parse-yy.h, parse.y, memory.c, type.c:
	Fixed xref warnings.

Mon Jul 31 20:54:56 1995  Andrew Bishop  (amb@dan)

	* warn-raw.c, type.c, datatype.h:
	Typedef, references to other types was bogus.

	* latex.c, html.c: Variable and Typedef bugs.

	* Makefile: Changed the readme target.

	* README.tex, README.html, README: Miscellaneous improvements.

Sun Jul 30 17:53:01 1995  Andrew Bishop  (amb@dan)

	* README.html, README.tex: Initial revision

	* README: Spelling, grammar and syntax changes.

	* README.c: Changed the example include files to be system ones.

	* Makefile:
	Added a readme target to make README_c.tex and README.c.html.

Sat Jul 29 20:08:53 1995  Andrew Bishop  (amb@dan)

	* xref.c: Fixed references to external variables.

	* warn-raw.c: Added a FilePart output function.
	Renamed the #defines for option_warn options.

	* latex.c, html.c:
	Added functions and variables referenced to the file section.
	Added a FilePart output function and added functions and variables referenced in this file section.

	* README:
	Renamed a4.sty to page.sty, added cxref.el, improved xref section.

	* Makefile: Renamed a4.sty to page.sty.

	* cxref.el: Initial revision

Tue Jul 25 20:48:11 1995  Andrew Bishop  (amb@dan)

	* README: Removed examples to README.c.
	* README.c: Initial revision

	* cxref.c: Examples of the trailing and leading comments implemented.

	* cxref.h: Two function prototypes removed.
	* func.c, type.c:
	Implement the push through of comments, no spare comment needed and function removed.
	* comment.c: Implement the push through of comments.
	* parse.y, parse.l: Implement the push through of comments.

	* file.c: Fix a bug of freeing some data that is not mallocated.

	* html.c: Rationalise the usage of the html() function and fix it.

Sun Jul 23 16:23:36 1995  Andrew Bishop  (amb@dan)

	* parse.l: Handles trailing comments for #define / #include.
	* cxref.h, datatype.h, parse-yy.h, memory.h:
	Modified comment to trailing style for #define / #include.

	* README:
	Add explanation of new comment styles and Author / copyright info.

	* func.c: Option to have return value comment inline.

	* parse.y: Improved error function (reports EOF).

Wed Jul 12 19:02:56 1995  Andrew Bishop  (amb@dan)

	* html.c: Fixed stupid HTML bug with '<' and '>' special characters.

	* Makefile: Changed the rule for all etc (from ':' to '').

Sat Jul  8 14:37:30 1995  Andrew Bishop  (amb@dan)

	* html.c: Improved HTML.

Mon Jul  3 17:38:06 1995  Andrew Bishop  (amb@dan)

	* type.c: Big Bug fixes.

Sun Jul  2 17:59:59 1995  Andrew Bishop  (amb@dan)

	* latex.c: Added changes to mirror html.c.

	* html.c: Initial revision

Sun Jul  2 16:00:20 1995  Andrew Bishop  (amb@dan)

	* cxref.h, cxref.c: Added HTML option.

	* latex.c: Renamed the appendix file.

	* Makefile, README: Added HTML option.

Sat Jul  1 16:29:46 1995  Andrew Bishop  (amb@dan)

	* xref.c, warn-raw.c: Handles struct and union non-typedefs.

	* type.c: Typedef cross referencing, struct and union non-typedefs.

	* parse.y: Handles repeated comments, struct and union non-typedefs.

	* parse.l: Handles bogus comment styles.

	* latex.c: Typedef cross referencing, Type option.

	* datatype.h: Typedef cross referencing.

	* cxref.h: New prototypes.

	* cxref.c: New options.

	* comment.c: Handles repeated comments, can discard partial comments if bogus.

	* Makefile: Added LaTeX style sheets, more verbose output.

Wed Jun 28 20:20:09 1995  Andrew Bishop  (amb@dan)

	* README: Updated with new command line options.

Wed May  3 20:30:04 1995  Andrew Bishop  (amb@dan)

	* xref.c: New index and warn options.

	* warn-raw.c: New warn option.

	* var.c: Now includes scope.c.

	* type.c: Bug fix.

	* parse.y: Better type handling.

	* parse.l: Better handling of comments and #defines.

	* latex.c: New index and warn options and general tidying up and improvements.

	* cxref.h, cxref.c: New index and warn options.

	* comment.c: Change for all-comments option (first comment is for file) and tidy up.

	* Makefile: Removed scope.c.

Wed May  3 20:30:04 1995  Andrew Bishop  (amb@dan)

        Beta testing of this version now.

Wed Apr 26 21:57:27 1995  Andrew Bishop  (amb@dan)

	* cxref.c:
	Handle -all-comments option and discard all '-...' arguments.

Wed Apr 26 21:45:21 1995  Andrew Bishop  (amb@dan)

	* type.c: Better handling of comments and multi-file fixed.

	* Makefile: Bug fixes for local cpp.

	* cxref.c: Handle -all-comments option and discard all '-...' arguments.

	* func.c: Handle spare_arg_commment better, variable refs for file.

	* parse.y: Many changes, better handling of pointer to functions etc.

	* var.c: Mult-file fixed.

	* parse.l: New -all-comments option and #define values.

	* latex.c: New output stuff and much better LaTeX, using environments etc.).

	* warn-raw.c: New outputs.

	* xref.c: Output list of typedefs and better handling of function/variable refs.

	* scope.c: Removed stray variable CurFile.

	* cxref.h: Value of #defines function proto.

	* preproc.c: Value of simple #defines.

	* datatype.h, file.c: Variable refs for file, value for #defines and visible for variables.

	* comment.c: handle -all-comments option.

Sun Apr 23 15:08:36 1995  Andrew Bishop  (amb@dan)

	* README: Minor change to reflect the new cross referencing.

	* Makefile: Add the option to use a local copy of cpp and added the two new files.

	* memory.h: Added note about how the memory is used in the program.

	* parse.l: Changed some of the memory handling to reduce usage.

	* parse-yy.h: Changed to YYDEBUG = true.

	* warn-raw.c, xref.c: Function and Variable references and StringLists.

	* cxref.c: Handles Makefile option of which cpp.

	* latex.c: Have variable and function references.

	* parse.y: Multiple changes, to handle function calls, references, typedefs, prototypes and definitions better.
		   New error message when YYDEBUG is set.
		   Scoping for variables.

	* datatype.h: New datatypes for string lists.

	* cxref.h: New functions in new files.

	* comment.c: No change.

	* file.c: Use StringLists and have function references.

	* func.c: Use StringLists and have variable and function references.

	* preproc.c, type.c, var.c: Use StringLists.

	* scope.c, slist.c: Initial revision

Wed Apr  5 20:08:54 1995  Andrew Bishop  (amb@dan)

	* warn-raw.c, var.c, type.c, preproc.c, parse.l, parse-yy.h, memory.h, memory.c, latex.c, func.c, file.c, datatype.h, cxref.h, cxref.c, comment.c, Makefile:
	Second Beta Version, to allow RPC to test it fully.

	* README: Initial revision

Mon Apr  3 20:22:00 1995  Andrew Bishop  (amb@dan)

	* xref.c, warn-raw.c, var.c, type.c, preproc.c, parse.y, parse.l, parse-yy.h, memory.h, memory.c, latex.c, func.c, file.c, datatype.h, cxref.h, cxref.c, comment.c, Makefile:
	Stable Version for beta testing.

Sat Mar 25 16:15:54 1995  Andrew Bishop  (amb@dan)

	* parse.y, parse.l, cpp.l, xref.c, warn-raw.c, var.c, type.c, preproc.c, parse-yy.h, memory.h, memory.c, latex.c, func.c, file.c, datatype.h, cxref.h, cxref.c, comment.c, Makefile:
	Initial revision