about summary refs log blame commit diff stats
path: root/js/games/nluqo.github.io/~bh/v2ch10/v2ch10.html
blob: c523eb19684bb117ee7927423121c0689affd77a (plain) (tree)
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



























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                      
<HTML>
<HEAD>
<TITLE>Computer Science Logo Style vol 2 ch 10: Iteration, Control Structures, Extensibility</TITLE>
</HEAD>
<BODY>
<CITE>Computer Science Logo Style</CITE> volume 2:
<CITE>Advanced Techniques</CITE> 2/e Copyright (C) 1997 MIT
<H1>Iteration, Control Structures, Extensibility</H1>

<TABLE width="100%"><TR><TD>
<IMG SRC="../csls2.jpg" ALT="cover photo">
<TD><TABLE>
<TR><TD align="right"><CITE><A HREF="http://www.cs.berkeley.edu/~bh/">Brian
Harvey</A><BR>University of California, Berkeley</CITE>
<TR><TD align="right"><BR>
<TR><TD align="right"><A HREF="../pdf/v2ch10.pdf">Download PDF version</A>
<TR><TD align="right"><A HREF="../v2-toc2.html">Back to Table of Contents</A>
<TR><TD align="right"><A HREF="https://people.eecs.berkeley.edu/~bh/v2ch9/v2ch9.html"><STRONG>BACK</STRONG></A>
chapter thread <A HREF="../v2ch11/v2ch11.html"><STRONG>NEXT</STRONG></A>
<TR><TD align="right"><A HREF="https://mitpress.mit.edu/books/computer-science-logo-style-second-edition-volume-2">MIT
Press web page for <CITE>Computer Science Logo Style</CITE></A>
</TABLE></TABLE>

<HR>

<P>
In this chapter we're taking a tour &quot;behind the scenes&quot; of Berkeley Logo.
Many of the built-in Logo procedures that we've been using all along are
not, strictly speaking, primitive; they're written in Logo itself.  When you
invoke a procedure, if the Logo interpreter does not already know a procedure
by that name, it automatically looks in a <EM>library</EM> of predefined
procedures.  For example, in Chapter 6 I used an operation called
<CODE>gensym</CODE> that outputs a new, unique word each time it's invoked.  If
you start up a fresh copy of Logo you can try these experiments:

<PRE>
? <U>po "gensym</U>
I don't know how  to gensym
? <U>show gensym</U>
g1
? <U>po "gensym</U>
to gensym
if not namep "gensym.number [make "gensym.number 0]
make "gensym.number :gensym.number + 1
output word "g :gensym.number
end
</PRE>

<P>
The first interaction shows that <CODE>gensym</CODE> is not really a Logo
primitive; the error message indicates that there is no such procedure.  Then
I invoked <CODE>gensym</CODE>, which made Berkeley Logo read its definition
automatically from the library.  Finally, once Logo has read the definition,
I can print it out.

<P>
In particular, most of the tools we've used to carry out a computation
repeatedly are not true Logo primitives: <CODE>for</CODE> for numeric
iteration, <CODE>foreach</CODE> for list iteration, and <CODE>while</CODE>
for predicate-based iteration are all library procedures.  (The word
<EM>iteration</EM> just means &quot;repetition.&quot;) The only iteration mechanisms
that are truly primitive in Logo are <CODE>repeat</CODE> and recursion.

<P>
Computers are good at doing things over and over again.  They don't
get bored or tired.  That's why, in the real world, people use
computers for things like sending out payroll checks and telephone
bills.  The first Logo instruction I showed you, in the first volume, was

<PRE>
repeat 50 [setcursor list random 75 random 20 type "Hi]
</PRE>

<P>
When you were first introduced to turtle graphics, you
probably used an instruction like

<PRE>
repeat 360 [forward 1 right 1]
</PRE>

<P>
to draw a circle.

<H2>Recursion as Iteration</H2>

<P>
The trouble with <CODE>repeat</CODE> is that it always does <EM>exactly</EM>
the same thing repeatedly.  In a real application, like those payroll
checks, you want the computer to do <EM>almost</EM> the same thing each
time but with a different person's name on each check.  The usual way
to program an almost-<CODE>repeat</CODE> in Logo is to use a recursive
procedure, like this:

<PRE>
to polyspi :side :angle :number
if :number=0 [stop]
forward :side
right :angle
polyspi :side+1 :angle :number-1
end
</PRE>

<P>
This is a well-known procedure to draw a spiral.  What makes
it different from

<PRE>
repeat :number [forward :side right :angle]
</PRE>

<P>
is that the first input in the recursive invocation is <CODE>:side+1</CODE>
instead of just <CODE>:side</CODE>.  We've used a similar technique for
almost-repetition in procedures like this one:

<PRE>
to multiply :letters :number
if equalp :number 0 [stop]
print :letters
multiply (word :letters first :letters) :number-1
end
</PRE>

<P>
Since recursion can express any repetitive computation, why bother
inventing other iteration tools?  The answer is that they can make
programs easier to read.  Recursion is such a versatile mechanism
that the intention of any particular use of recursion may be hard to
see.  Which of the following is easier to read?

<PRE>
to fivesay.with.repeat :text
repeat 5 [print :text]
end
</PRE>

<P>
or

<PRE>
to fivesay.with.recursion :text
fivesay1 5 :text
end

to fivesay1 :times :text
if :times=0 [stop]
print :text
fivesay1 :times-1 :text
end
</PRE>

<P>
The version using <CODE>repeat</CODE> makes it obvious at a glance
what the program wants to do; the version using recursion takes some
thought.  It can be useful to invent mechanisms that are intermediate
in flexibility between <CODE>repeat</CODE> and recursion.

<P>
As a simple example, suppose that Logo did not include <CODE>repeat</CODE> as
a primitive command.  Here's how we could implement it using recursion:

<PRE>
to rep :count :instr
if :count=0 [stop]
run :instr
rep :count-1 :instr
end
</PRE>

<P>
(I've used the name <CODE>rep</CODE> instead of <CODE>repeat</CODE> to avoid
conflict with the primitive version.)  The use of <CODE>run</CODE> to carry out
the given instructions is at the core of the techniques we'll use
throughout this chapter.

<H2>Numeric Iteration</H2>

<P>
<CODE>Polyspi</CODE> is an example of an iteration in which the value of a
numeric variable changes in a uniform way.  The instruction

<PRE>
polyspi 50 60 4
</PRE>

<P>
is equivalent to the series of instructions

<PRE>
forward 50 right 60
forward 51 right 60
forward 52 right 60
forward 53 right 60
</PRE>

<P>
As you know, we can represent the same instructions this way:

<PRE>
for [side 50 53] [forward :side right 60]
</PRE>

<P>
The <CODE>for</CODE> command takes two inputs, very much like
<CODE>repeat</CODE>.  The second input, like <CODE>repeat</CODE>'s second
input, is a list of Logo instructions.  The first input to <CODE>for</CODE>
is different, though.  It is a list whose first member is the name of a
variable; the second member of the list must be a number (or a Logo
expression whose value is a number), which will be the <EM>initial</EM>
value of that variable; and the third member must be another number (or
numeric expression), which will be the <EM>final</EM> value of the
variable.  In the example above, the variable name is <CODE>side</CODE>, the
initial value is <CODE>50</CODE>, and the final value is <CODE>53</CODE>.
If there is a fourth member in the list, it's the amount to add to the named
variable on each iteration; if there is no fourth member, as in the example
above, then the <EM>step</EM> amount is either 1 or -1, depending on
whether the final value is greater than or less than the initial value.

<P>
As an example in which expressions are used instead of constant numeric
values, here's the <CODE>polyspi</CODE> procedure using <CODE>for</CODE>:

<PRE>
to polyspi :start :angle :number
for [side :start [:start+:number-1]] [forward :side right :angle]
end
</PRE>

<P>
Most of the work in writing <CODE>for</CODE> is in evaluating the expressions
that make up the first input list.  Here is the program:

<PRE>
<A name="impfor">to for :values :instr</A>
localmake "var first :values
local :var
localmake "initial run first butfirst :values
localmake "final run item 3 :values
localmake "step forstep
localmake "tester ~
          ifelse :step < 0 [[:value < :final]] [[:value > :final]]
forloop :initial
end

to forstep
if (count :values)=4 [output run last :values]
if :initial > :final [output -1]
output 1
end

to forloop :value
make :var :value
if run :tester [stop]
run :instr
forloop :value+:step
end
</PRE>

<P>
One slightly tricky part of this program is the instruction

<PRE>
local :var
</PRE>

<P>
near the beginning of <CODE>for</CODE>.  The effect of this instruction is
to make whatever variable is named by the first member of the first input
local to <CODE>for</CODE>.  As it turns out, this variable isn't given a
value in <CODE>for</CODE> itself but only in its subprocedure
<CODE>forloop</CODE>.  (A <EM>loop,</EM> by the way, is a part of a program
that is invoked repeatedly.) But I'm thinking of these three procedures as a
unit and making the variable local to that whole unit.  The virtue of this
<CODE>local</CODE> instruction is that a program that uses <CODE>for</CODE>
can invent variable names for <CODE>for</CODE> freely, without having to
declare them local and without cluttering up the workspace with global
variables.  Also, it means that a procedure can invoke another procedure in
the instruction list of a <CODE>for</CODE> without worrying about whether
<EM>that</EM> procedure uses <CODE>for</CODE> itself.  Here's the case I'm
thinking of:

<PRE>
to a
for [i 1 5] [b]
end

to b
for [i 1 3] [print "foo]
end
</PRE>

<P>
Invoking <CODE>A</CODE> should print the word <CODE>foo</CODE> fifteen
times: three times for each of the five invocations of <CODE>B</CODE>.  If
<CODE>for</CODE> didn't make <CODE>I</CODE> a local variable, the invocation
of <CODE>for</CODE> within <CODE>B</CODE> would mess up the value of
<CODE>I</CODE> in the outer <CODE>for</CODE> invoked by
<CODE>A</CODE>.  Got that?

<P>
Notice that the <CODE>make</CODE> instruction in <CODE>forloop</CODE> has
<CODE>:var</CODE> as its first input, not <CODE>"var</CODE>.  This
instruction does not assign a new value to the variable <CODE>var</CODE>!
Instead, it assigns a new value to the variable whose name is the value of
<CODE>var</CODE>.

<P>
The version of <CODE>for</CODE> actually used in the Berkeley Logo library is
a little more complicated than this one.  The one shown here works fine as
long as the instruction list input doesn't include <CODE>stop</CODE> or
<CODE>output</CODE>, but it won't work for an example like the following.
To check whether or not a number is prime, we must see if it is divisible by
anything greater than 1 and smaller than the number itself:

<PRE>
to primep :num
for [trial 2 [:num-1]] [if divisiblep :num :trial [output "false]]
output "true
end

to divisiblep :big :small
output equalp remainder :big :small 0
end
</PRE>

<P>
This example will work in the Berkeley Logo <CODE>for</CODE>, but not
in the version I've written in this chapter.  The trouble is that the
instruction

<PRE>
run :instr
</PRE>

<P>
in <CODE>forloop</CODE> will make <CODE>forloop</CODE> output
<CODE>false</CODE> if a divisor is found, whereas we really want
<CODE>primep</CODE> to output <CODE>false</CODE>!  We'll see in Chapter 12
how to solve this problem.

<H2>Logo: an Extensible Language</H2>

<P>
There are two ways to look at a program like <CODE>for</CODE>.  You can take
it apart, as I've been doing in these last few paragraphs, to see how it
works inside.  Or you can just think of it as an extension to Logo, an
iteration command that you can use as you'd use <CODE>repeat</CODE>, without
thinking about how it works.  I think both of these perspectives will be
valuable to you.  As a programming project, <CODE>for</CODE> demonstrates
some rather advanced Logo techniques.  But you don't have to think about
those techniques each time you use <CODE>for</CODE>.  Instead you can think
of it as a primitive, as we've been doing prior to this chapter.

<P>
The fact that you can extend Logo's vocabulary this way, adding a new way to
control iteration that looks just like the primitive <CODE>repeat</CODE>, is
an important way in which Logo is more powerful than toy programming
languages like C++ or Pascal.  C++ has several iteration commands built in,
including one like <CODE>for</CODE>, but if you think of a new one, there's
no way you can add it to the language.  In Logo this kind of language
extension is easy.  For example, here is a preview of a programming project
I'm going to develop later in this chapter.  Suppose you're playing with
spirals, and you'd like to see what happens if you change the line length
<EM>and</EM> the turning angle at the same time.  That is, you'd like to be
able to say

<PRE>
multifor [[size 50 100 5] [angle 50 100 10]] [forward :size right :angle]
</PRE>

<P>
and have that be equivalent to the series of instructions

<PRE>
forward 50 right 50
forward 55 right 60
forward 60 right 70
forward 65 right 80
forward 70 right 90
forward 75 right 100
</PRE>

<P>
<CODE>Multifor</CODE> should step each of its variables each time
around, stopping whenever any of them hits the final value.  This tool
strikes me as too specialized and complicated to provide in the Logo
library, but it seems very appropriate for certain kinds of project.
It's nice to have a language in which I can write it if I need it.

<H2>No Perfect Control Structures</H2>

<P>
Among enthusiasts of the Fortran family of programming languages (that is,
all the languages in which you have to say ahead of time whether or not the
value of some numeric variable will be an exact integer), there are fierce
debates about the &quot;best&quot; control structure.  (A <EM>control structure</EM>
is a way of grouping instructions together, just as a <EM>data
structure</EM> is a way of grouping data together.  A list is a data
structure.  A procedure is a control structure.  Things like
<CODE>if</CODE>, <CODE>repeat</CODE>, and <CODE>for</CODE> are special
control structures that group instructions in particular ways, so that a
group of instructions can be evaluated conditionally or repeatedly.)

<P>
For example, all of the Fortran-derived languages have a control
structure for numeric iteration, like my <CODE>for</CODE> procedure.  But
they differ in details.  In some languages the iteration variable
must be stepped by 1.  In others the step value can be either 1 or
-1.  Still others allow any step value, as <CODE>for</CODE> does.  Each of
these choices has its defenders as the &quot;best.&quot;

<P>
Sometimes the arguments are even sillier.  When Fortran was first
invented, its designers failed to make explicit what should happen
if the initial value of an iteration variable is greater than the
final value.  That is, they left open the interpretation of a Fortran
<CODE>do</CODE> statement (that's what its numeric iteration structure is
called) equivalent to this <CODE>for</CODE> instruction:

<PRE>
for [var 10 5 1] [print :var]
</PRE>

<P>
In this instruction I've specified a positive step (the
only kind allowed in the Fortran <CODE>do</CODE> statement), but the initial
value is greater than the final value.  (What will <CODE>for</CODE> do in
this situation?) Well, the first Fortran compiler, the program that
translates a Fortran program into the &quot;native&quot; language of a
particular computer, implemented <CODE>do</CODE> so that the statements
controlled by the <CODE>do</CODE> were carried out once before the computer
noticed that the variable's value was already too large.  Years later
a bunch of computer scientists decided that that behavior is
&quot;wrong&quot;; if the initial value is greater than the final value, the
statements shouldn't be carried out at all.  This proposal for a
&quot;zero trip <CODE>do</CODE> loop&quot; was fiercely resisted by old-timers who
had by then written hundreds of programs that relied on the original
behavior of <CODE>do</CODE>.  Dozens of journal articles and letters to the
editor carried on the battle.

<P>
The real moral of this story is that there is no right answer.
The right control structure for <EM>you</EM> to use is the one that
best solves <EM>your</EM> immediate problem.  But only an extensible
language like Logo allows you the luxury of accepting this moral.
The Fortran people had to fight out their battle because they're
stuck with whatever the standardization committee decides.

<P>
In the remainder of this chapter I'll present various kinds of
control structures, each reflecting a different way of looking at the
general idea of iteration.

<H2>Iteration Over a List</H2>

<P>
Numeric iteration is useful if the problem you want to solve is about
numbers, as in the <CODE>primep</CODE> example, or if some arbitrary number is
part of the rules of a game, like the seven stacks of cards in solitaire.
But in most Logo projects, it's more common to want to carry out a
computation for each member of a list, and for that purpose we have
the <CODE>foreach</CODE> control structure:

<PRE>
? <U>foreach [chocolate [rum raisin] pumpkin] [print sentence [I like] ?]</U>
I like chocolate
I like rum raisin
I like pumpkin
</PRE>

<P>
In comparing <CODE>foreach</CODE> with <CODE>for</CODE>, one thing you might
notice is the use of the question mark to represent the varying datum in
<CODE>foreach</CODE>, while <CODE>for</CODE> requires a user-specified
variable name for that purpose.  There's no vital reason why I used these
different mechanisms.  In fact, we can easily implement a version of
<CODE>foreach</CODE> that takes a variable name as an additional input.  Its
structure will then look similar to that of <CODE>for</CODE>:

<PRE>
to named.foreach :var :data :instr
local :var
if emptyp :data [stop]
make :var first :data
run :instr
named.foreach :var (butfirst :data) :instr
end

? <U>named.foreach "flavor [lychee [root beer swirl]] ~</U>
                        <U>[print sentence [I like] :flavor]</U>
I like lychee
I like root beer swirl
</PRE>

<P> Just as in <A HREF="v2ch10.html#impfor">the implementation of <CODE>for</CODE></A>,
there is a recursive invocation for each member of the data input.  We
assign that member as the value of the variable named in the first input,
and then we <CODE>run</CODE> the instructions in the third input.

<P>
In order to implement the version of <CODE>foreach</CODE> that uses question
marks instead of named variables, we need a more advanced version of
<CODE>run</CODE> that says &quot;run these instructions, but using this value
wherever you see a question mark.&quot; Berkeley Logo has this capability as a
primitive procedure called <CODE>apply</CODE>.  It takes two inputs, a
<EM>template</EM> (an instruction list with question marks) and a list of
values.  The reason that the second input is a list of values, rather than a
single value, is that <CODE>apply</CODE> can handle templates with more than
one slot for values.

<PRE>
? <U>apply [print ?+3] [5]</U>
8
? <U>apply [print word first ?1 first ?2] [Peter Dickinson]</U>
PD
</PRE>

<P>
It's possible to write <CODE>apply</CODE> in terms of <CODE>run</CODE>, and
I'll do that shortly.  But first, let's just take advantage of Berkeley
Logo's built-in <CODE>apply</CODE> to write a simple version of
<CODE>foreach</CODE>:

<PRE>
to foreach :list :template
if emptyp :list [stop]
apply :template (list first :list)
foreach (butfirst :list) :template
end
</PRE>

<P>
<CODE>Apply</CODE>, like <CODE>run</CODE>, can be either a command or an
operation depending on whether its template contains complete Logo
instructions or a Logo expression.  In this case, we are using
<CODE>apply</CODE> as a command.

<P>
The version of <CODE>foreach</CODE> in the Berkeley Logo library can take
more than one data input along with a multi-input template, like this:

<PRE>
? <U>(foreach [John Paul George Ringo] [rhythm bass lead drums]</U>
           <U>[print (sentence ?1 "played ?2)]</U>
John played rhythm
Paul played bass
George played lead
Ringo played drums
</PRE>

<P>
We can implement this feature, using a special notation in the title line of
<CODE>foreach</CODE> to notify Logo that it accepts a variable number of
inputs:

<PRE>
to foreach [:inputs] 2
foreach.loop (butlast :inputs) (last :inputs)
end

to foreach.loop :lists :template
if emptyp first :lists [stop]
apply :template firsts :lists
foreach.loop (butfirsts :lists) :template
end
</PRE>

<P>
First look at the title line of <CODE>foreach</CODE>.  It tells Logo
that the word <CODE>inputs</CODE> is a formal parameter--the name of an input.
Because <CODE>:inputs</CODE> is inside square brackets, however, it represents
not just one input, but any number of inputs in the invocation of
<CODE>foreach</CODE>.  The values of all those inputs are collected as a list,
and that list is the value of <CODE>inputs</CODE>.  Here's a trivial example:

<PRE>
to demo [:stuff]
print sentence [The first input is] first :stuff
print sentence [The others are] butfirst :stuff
end

? <U>(demo "alpha "beta "gamma)</U>
The first input is alpha
The others are beta gamma
</PRE>

<P>
As you know, the Logo procedures that accept a variable number of inputs
have a <EM>default</EM> number that they accept without using parentheses;
if you want to use more or fewer than that number, you must enclose the
procedure name and its inputs in parentheses, as I've done here with the
<CODE>demo</CODE> procedure.  Most Logo primitives that accept a variable
number of inputs have two inputs as their default number (for example,
<CODE>sentence</CODE>, <CODE>sum</CODE>, <CODE>word</CODE>) but there are
exceptions, such as <CODE>local</CODE>, which takes one input if parentheses
are not used.  When you write your own procedure with a single input name in
brackets, its default number of inputs is zero unless you specify another
number.  <CODE>Demo</CODE>, for example, has zero as its default number.  If
you look again at the title line of <CODE>foreach</CODE>, you'll see that it
ends with the number <CODE>2</CODE>; that tells Logo that
<CODE>foreach</CODE> expects two inputs by default.

<P>
<CODE>Foreach</CODE> uses all but its last input as data lists; the last
input is the template to be applied to the members of the data lists.  That's
why <CODE>foreach</CODE> invokes <CODE>foreach.loop</CODE> as it does,
separating the two kinds of inputs into two variables.

<P>
Be careful when reading the definition of <CODE>foreach.loop</CODE>; it
invokes procedures named <CODE>firsts</CODE> and <CODE>butfirsts</CODE>.
These are not the same as <CODE>first</CODE> and <CODE>butfirst</CODE>!
Each of them takes a <EM>list of lists</EM> as its input, and outputs a list
containing the first members of each sublist, or all but the first members,
respectively:

<PRE>
? <U>show firsts [[a b c] [1 2 3] [y w d]]</U>
[a 1 y]
? <U>show butfirsts [[a b c] [1 2 3] [y w d]]</U>
[[b c] [2 3] [w d]]
</PRE>

<P>
It would be easy to write <CODE>firsts</CODE> and <CODE>butfirsts</CODE> in
Logo:

<PRE>
to firsts :list.of.lists
output map "first :list.of.lists
end

to butfirsts :list.of.lists
output map "butfirst :list.of.lists
end
</PRE>

<P>
but in fact Berkeley Logo provides these operations as primitives, because
implementing them as primitives makes the iteration tools such as
<CODE>foreach</CODE> and <CODE>map</CODE> (which, as we'll see, also uses
them) much faster.

<P>
Except for the use of <CODE>firsts</CODE> and <CODE>butfirsts</CODE> to
handle the multiple data inputs, the structure of <CODE>foreach.loop</CODE>
is exactly like that of the previous version of <CODE>foreach</CODE> that
only accepts one data list.

<P>
Like <CODE>for</CODE>, the version of <CODE>foreach</CODE> presented here
can't handle instruction lists that include <CODE>stop</CODE> or
<CODE>output</CODE> correctly.

<H2>Implementing <CODE>Apply</CODE></H2>

<P>
Berkeley Logo includes <CODE>apply</CODE> as a primitive, for efficiency, but
we could implement it in Logo if necessary.  In this section, so as not
to conflict with the primitive version, I'll use the name <CODE>app</CODE> for
my non-primitive version of <CODE>apply</CODE>, and I'll use the percent sign
(<CODE>%</CODE>) as the placeholder in templates instead of question mark.

<P>
Here is a simple version of <CODE>app</CODE> that allows only one input to the
template:

<PRE>
to app :template :input.value
run :template
end

to %
output :input.value
end
</PRE>

<P>
This is so simple that it probably seems like magic.  <CODE>App</CODE> seems
to do nothing but <CODE>run</CODE> its template as though it were an ordinary
instruction list.  The trick is that a template <EM>is</EM> an instruction
list.  The only unusual thing about a template is that it includes special
symbols (<CODE>?</CODE> in the real <CODE>apply</CODE>, <CODE>%</CODE> in
<CODE>app</CODE>) that represent the given value.  We see now that those
special symbols are really just ordinary names of procedures.  The question
mark (<CODE>?</CODE>) procedure is a Berkeley Logo primitive; I've defined
the analogous <CODE>%</CODE> procedure here for use by <CODE>app</CODE>.

<P>
The <CODE>%</CODE> procedure outputs the value of a variable,
<CODE>input.value</CODE>, that is local to <CODE>app</CODE>.  If you invoke
<CODE>%</CODE> in some context other than an <CODE>app</CODE> template,
you'll get an error message because that variable won't exist.  Logo's
dynamic scope makes it possible for <CODE>%</CODE> to use <CODE>app</CODE>'s
variable.

<P>
The real <CODE>apply</CODE> accepts a procedure name as argument instead of a
template:

<PRE>
? <U>show apply "first [Logo]</U>
L
</PRE>

<P>
We can extend <CODE>app</CODE> to accept named procedures, but the
definition is somewhat messier:

<PRE>
to app :template.or.name :input.value
ifelse wordp :template.or.name ~
       [run list :template.or.name "%] ~
       [run :template.or.name]
end
</PRE>

<P>
If the first input is a word, we construct a template by combining that
procedure name with a percent sign for its input.  However, in the rest of
this section I'll simplify the discussion by assuming that <CODE>app</CODE>
accepts only templates, not procedure names.

<P>
So far, <CODE>app</CODE> takes only one value as input; the real
<CODE>apply</CODE> takes a list of values.  I'll extend <CODE>app</CODE> to
match:

<PRE>
to app :template :input.values
run :template
end

to % [:index 1]
output item :index :input.values
end
</PRE>

<P>
No change is needed to <CODE>app</CODE>, but <CODE>%</CODE> has been changed
to use another new notation in its title line.  <CODE>Index</CODE> is the
name of an <EM>optional input.</EM> Although this notation also uses square
brackets, it's different from the notation used in <CODE>foreach</CODE>
because the brackets include a <EM>default value</EM> as well as the name
for the input.  This version of <CODE>%</CODE> accepts either no inputs or
one input.  If <CODE>%</CODE> is invoked with one input, then the value of
that input will be associated with the name <CODE>index</CODE>, just as for
ordinary inputs.  If <CODE>%</CODE> is invoked with no inputs, then
<CODE>index</CODE> will be given the value 1 (its default value).

<PRE>
? <U>app [print word first (% 1) first (% 2)] [Paul Goodman]</U>
PG
</PRE>

<P>
A percent sign with a number as input selects an input value
by its position within the list of values.  A percent sign by itself
is equivalent to <CODE>(% 1)</CODE>.

<P>
The notation <CODE>(% 1)</CODE> isn't as elegant as the <CODE>?1</CODE> used
in the real <CODE>apply</CODE>.  You can solve that problem by defining
several extra procedures:

<PRE>
to %1                to %2                to %3
output (% 1)         output (% 2)         output (% 3)
end                  end                  end
</PRE>

<P>
Berkeley Logo recognizes the notation <CODE>?2</CODE> and automatically
translates it to <CODE>(? 2)</CODE>, as you can see by this experiment:

<PRE>
? <U>show runparse [print word first ?1 first ?2]</U>
[print word first ( ? 1 ) first ( ? 2 )]
</PRE>

<P>
(The primitive operation <CODE>runparse</CODE> takes a list as input
and outputs the list as it would be modified by Logo when it is about
to be run.  That's a handwavy description, but the internal workings
of the Logo interpreter are too arcane to explore here.)

<P>
Unlike the primitive <CODE>apply</CODE>, this version of <CODE>app</CODE>
works only as a command, not as an operation.  It's easy to write a separate
version for use as an operation:

<PRE>
to app.oper :template :input.values
output run :template
end
</PRE>

<P>
It's not so easy in non-Berkeley versions of Logo to write a
single procedure that can serve both as a command and as an operation.
Here's one solution that works in versions with <CODE>catch</CODE>:

<PRE>
to app :template :input.values
catch "error [output run :template]
ignore error
end
</PRE>

<P>
This isn't an ideal solution, though, because it doesn't report errors other
than &quot;<CODE>run</CODE> didn't output to <CODE>output</CODE>.&quot; It could be
improved by testing the error message more carefully instead of just
ignoring it.

<P>
Berkeley Logo includes a mechanism that solves the problem more
directly, but it's not very pretty:

<PRE>
to app :template :input.values
.maybeoutput run :template
end
</PRE>

<P>
The primitive command <CODE>.maybeoutput</CODE> is followed by a Logo
expression that may or may not produce a value.  If so, that value is
output, just as it would be by the ordinary <CODE>output</CODE> command; the
difference is that it's not considered an error if no value is produced.

<P>
From now on I'll use the primitive <CODE>apply</CODE>.  I showed you
<CODE>app</CODE> for two reasons.  First, I think you'll understand
<CODE>apply</CODE> better by seeing how it can be implemented.  Second, this
implementation may be useful if you ever work in a non-Berkeley Logo.

<H2>Mapping</H2>

<P>
So far the iteration tools we've created apply only to commands.
As you know, we also have the operation <CODE>map</CODE>, which is similar
to <CODE>foreach</CODE> except that its template is an expression (producing
a value) rather than an instruction, and it accumulates the values
produced for each member of the input.

<PRE>
? <U>show map [?*?] [1 2 3 4]</U>
[1 4 9 16]
? <U>show map [first ?] [every good boy does fine]</U>
[e g b d f]
?
</PRE>

<P>
When implementing an iteration tool, one way to figure out how to write
the program is to start with a specific example and generalize it.  For
example, here's how I'd write the example about squaring the numbers in
a list without using <CODE>map</CODE>:

<PRE>
to squares :numbers
if emptyp :numbers [output []]
output fput ((first :numbers) * (first :numbers)) ~
            (squares butfirst :numbers)
end
</PRE>

<P>
<CODE>Map</CODE> is very similar, except that it applies a template to
each datum instead of squaring it:

<PRE>
to map :template :values
if emptyp :values [output []]
output fput (apply :template (list first :values)) ~
            (map :template butfirst :values)
end
</PRE>

<P>
You may be wondering why I used <CODE>fput</CODE> rather than
<CODE>sentence</CODE> in these procedures.  Either would be just as good in
the example about squares of numbers, because each datum is a single word (a
number) and each result value is also a single word.  But it's important to
use <CODE>fput</CODE> in an example such as this one:

<PRE>
to swap :pair
output list last :pair first :pair
end

? <U>show map [swap ?] [[Sherlock Holmes] [James Pibble] [Nero Wolfe]]</U>
[[Holmes Sherlock] [Pibble James] [Wolfe Nero]]

? <U>show map.se [swap ?] [[Sherlock Holmes] [James Pibble] [Nero Wolfe]]</U>
[Holmes Sherlock Pibble James Wolfe Nero]
</PRE>

<P>
Berkeley Logo does provide an operation <CODE>map.se</CODE> in which
<CODE>sentence</CODE> is used as the combiner; sometimes that's what you
want, but not, as you can see, in this example.  (A third possibility that
might occur to you is to use <CODE>list</CODE> as the combiner, but that
never turns out to be the right thing; try writing a <CODE>map.list</CODE>
and see what results it gives!)

<P>
As in the case of <CODE>foreach</CODE>, the program gets a little more
complicated when we extend it to handle multiple data inputs.  Another
complication that wasn't relevant to <CODE>foreach</CODE> is that when we
use a word, rather than a list, as the data input to <CODE>map</CODE>, we
must use <CODE>word</CODE> as the combiner instead of <CODE>fput</CODE>.
Here's the complete version:

<PRE>
to map :map.template [:template.lists] 2
op map1 :template.lists 1
end

to map1 :template.lists :template.number
if emptyp first :template.lists [output first :template.lists]
output combine (apply :map.template firsts :template.lists) ~
               (map1 bfs :template.lists :template.number+1)
end

to combine :this :those
if wordp :those [output word :this :those]
output fput :this :those
end
</PRE>

<P>
This is the actual program in the Berkeley Logo library.  One feature I
haven't discussed until now is the variable <CODE>template.number</CODE>
used as an input to <CODE>map1</CODE>.  Its purpose is to allow the use of
the number sign character <CODE>#</CODE> in a template to represent the
position of each datum within its list:

<PRE>
? <U>show map [list ? #] [a b c]</U>
[[a 1] [b 2] [c 3]]
</PRE>

<P>
The implementation is similar to that of <CODE>?</CODE> in templates:

<PRE>
to #
output :template.number
end
</PRE>

<P>
It's also worth noting the base case in <CODE>map1</CODE>.  When the data input
is empty, we must output either the empty word or the empty list, and
the easiest way to choose correctly is to return the empty input itself.

<H2>Mapping as a Metaphor</H2>

<P>
In this chapter,
we got to the idea of mapping by this route: iteration, numeric
iteration, other kinds of iteration, iteration on a list, iterative
commands, iterative operations, mapping.  In other words, we started
thinking about the mapping tool as a particular kind of repetition in
a computer program.

<P>
But when I first introduced <CODE>map</CODE> as a primitive operation,
I thought about it in a different way.  Never mind the fact
that it's <EM>implemented</EM> through repetition.  Instead think of
it as extending the power of the idea of a list.  When we started
thinking about lists, we thought of the list as one complete entity.
For example, consider this simple interaction with Logo:

<PRE>
? <U>print count [how now brown cow]</U>
4
</PRE>

<P>
<CODE>Count</CODE> is a primitive operation.  It takes a list as
input, and it outputs a number that is a property of the entire list,
namely the number of members in the list.  There is no need to think
of <CODE>count</CODE> as embodying any sort of repetitive control structure.
Instead it's one kind of handle on the <EM>data</EM> structure called
a list.

<P>
There are other operations that manipulate lists, like <CODE>equalp</CODE>
and <CODE>memberp</CODE>.  You're probably in the habit of thinking of these
operations as &quot;happening all at once,&quot; not as examples of
iteration.  And that's a good way to think of them, even though it's
also possible to think of them as iterative.  For example, how does
Logo know the <CODE>count</CODE> of a list?  How would <EM>you</EM> find out
the number of members of a list?  One way would be to count them on
your fingers.  That's an iteration.  Logo actually does the same
thing, counting off the list members one at a time, as it would if
we implemented <CODE>count</CODE> recursively:

<PRE>
to cnt :list
if emptyp :list [output 0]
output 1+cnt butfirst :list
end
</PRE>

<P>
I'm showing you that the &quot;all at once&quot; Logo primitives can be
considered as iterative because, in the case of <CODE>map</CODE>, I want to
shift your point of view in the opposite direction.  We started
thinking of <CODE>map</CODE> as iterative; now I'd like you to think of it
as happening all at once.

<P>
Wouldn't it be nice if we could say

<PRE>
? <U>show 1+[5 10 15]</U>
[6 11 16]
</PRE>

<P>
That is, I'd like to be able to &quot;add 1 to a list.&quot; I want
to think about it that way, not as &quot;add 1 to each member of a list.&quot;
The metaphor is that we're doing something to the entire list at once.
Well, we can't quite do it that way, but we can say

<PRE>
? <U>show map [1+?] [5 10 15]</U>
[6 11 16]
</PRE>

<P>
Instead of thinking &quot;Well, first we add 1 to 5, which gives
us 6; then we add...&quot; you should think &quot;we started with a list of
three numbers, and we've transformed it into another list of three
numbers using the operation add-one.&quot;

<H2>Other Higher Order Functions</H2>

<P>
Along with <CODE>map</CODE>, you learned about the higher order functions
<CODE>reduce</CODE>, which combines all of the members of a list into a single
result, and <CODE>filter</CODE>, which selects some of the members of a list.
They, too, are implemented by combining recursion with <CODE>apply</CODE>.
Here's the Berkeley Logo library version of <CODE>reduce</CODE>:

<PRE>
to reduce :reduce.function :reduce.list
if emptyp butfirst :reduce.list [output first :reduce.list]
output apply :reduce.function (list (first :reduce.list)
                                    (reduce :reduce.function
                                            butfirst :reduce.list))
end
</PRE>

<P>
If there is only one member, output it.  Otherwise,
recursively reduce the butfirst of the data, and apply the template
to two values, the first datum and the result from the recursive call.

<P>
The Berkeley Logo implementation of <CODE>filter</CODE> is a little more
complicated, for some of the same reasons as that of <CODE>map</CODE>: the
ability to accept either a word or a list, and the <CODE>#</CODE> feature
in templates.  So I'll start with a simpler one:

<PRE>
to filter :template :data
if emptyp :data [output []]
if apply :template (list first :data) ~
   [output fput (first :data)
                (filter :template butfirst :data)]
output filter :template butfirst :data
end
</PRE>

<P>
If you understand that, you should be able to see the
fundamentally similar structure of the library version despite
its extra details:

<PRE>
to filter :filter.template :template.list [:template.number 1]
localmake "template.lists (list :template.list)
if emptyp :template.list [output :template.list]
if apply :filter.template (list first :template.list) ~
   [output combine (first :template.list)
                   (filter :filter.template (butfirst :template.list)
                           :template.number+1)]
output (filter :filter.template (butfirst :template.list) 
               :template.number+1)
end
</PRE>

<P>
Where <CODE>map</CODE> used a helper procedure <CODE>map1</CODE> to handle
the extra input <CODE>template.number</CODE>, <CODE>filter</CODE> uses an
alternate technique, in which <CODE>template.number</CODE> is declared as an
optional input to <CODE>filter</CODE> itself.  When you invoke
<CODE>filter</CODE> you always give it the default two inputs, but it
invokes itself recursively with three.

<P>
Why does <CODE>filter</CODE> need a local variable named
<CODE>template.lists</CODE>?  There was a variable with that name in
<CODE>map</CODE> because it accepts more than one data input, but
<CODE>filter</CODE> doesn't, and in fact there is no reference to the value
of <CODE>template.lists</CODE> within <CODE>filter</CODE>.  It's there
because of another feature of templates that I haven't mentioned:  you can
use the word <CODE>?rest</CODE> in a template to represent the portion of
the data input to the right of the member represented by <CODE>?</CODE> in
this iteration:

<PRE>
to remove.duplicates :list
output filter [not memberp ? ?rest] :list
end

? <U>show remove.duplicates [ob la di ob la da]</U>
[di ob la da]
</PRE>

<P>
Since <CODE>?rest</CODE> is allowed in <CODE>map</CODE> templates as well as
in <CODE>filter</CODE> templates, its implementation must be the same for both:

<PRE>
to ?rest [:which 1]
output butfirst item :which :template.lists
end
</PRE>

<H2>Mapping Over Trees</H2>

<P>
It's time to move beyond the iteration tools in the Logo library and
invent our own new ones.

<P>
So far, in writing operations on lists, we've ignored any sublist structure
within the list.  We do something for each top-level member of the
input list.  It's also possible to take advantage of the complex
structures that lists make possible.  For example, a list can be used
to represent a <EM>tree,</EM> a data structure in which each branch can
lead to further branches.  Consider this list:

<PRE>
[[the [quick brown] fox] [[jumped] [over [the [lazy] dog]]]]
</PRE>

<P>
My goal here is to represent a sentence in terms of the
phrases within it, somewhat like the sentence diagrams you may have
been taught in elementary school.  This is a list with two members;
the first member represents the subject of the sentence and the
second represents the predicate.  The predicate is further divided
into a verb and a prepositional phrase.  And so on.  (A representation
something like this, but more detailed, is used in any computer
program that tries to understand &quot;natural language&quot; interaction.)

<P>
Suppose we want to convert each word of this sentence to capital letters,
using Berkeley Logo's <CODE>uppercase</CODE> primitive that takes a word as
input.  We can't just say

<PRE>
map [uppercase ?] ~
    [[the [quick brown] fox] [[jumped] [over [the [lazy] dog]]]]
</PRE>

<P>
because the members of the sentence-list aren't words.  What
I want is a procedure <CODE>map.tree</CODE> that applies a template to
each <EM>word</EM> within the input list but maintains the shape of the
list:

<PRE>
? <U>show map.tree [uppercase ?]~</U>
     <U>[[the [quick brown] fox] [[jumped] [over [the [lazy] dog]]]]</U>
[[THE [QUICK BROWN] FOX] [[JUMPED] [OVER [THE [LAZY] DOG]]]]
</PRE>

<P>
After our previous adventures in mapping, this one is relatively easy:

<PRE>
to map.tree :template :tree
if wordp :tree [output apply :template (list :tree)]
if emptyp :tree [output []]
output fput (map.tree :template first :tree) ~
            (map.tree :template butfirst :tree)
end
</PRE>

<P>
This is rather a special-purpose procedure; it's only good for trees
whose &quot;leaves&quot; are words.  That's sometimes the case but not
always.  But if you're dealing with sentence trees like the one in my
example, you might well find several uses for a tool like this.  For
now, I've introduced it mainly to make the point that the general idea
of iteration can take many different forms, depending on the
particular project you're working on.  (Technically, this is <EM>not</EM>
an iteration, because it doesn't have a two-part structure in which the
first part is to perform one step of a computation and the second part
is to perform all the rest of the steps.  <CODE>Map.tree</CODE> does have a
two-part structure, but <EM>both</EM> parts are recursive calls that might
carry out several steps.  But <CODE>map.tree</CODE> does generalize the broad
idea of dividing a large computation into similar individual pieces.
We'll go into the nature of iteration more carefully in a moment.)

<H2>Iteration and Tail Recursion</H2>

<P>
If you look back at the introduction to recursion in the first volume,
you'll find that some recursive commands seem to be carrying out an
iteration, like <CODE>down</CODE>, <CODE>countdown</CODE>, or
<CODE>one.per.line</CODE>.  (In this chapter we've seen how to implement
<CODE>countdown</CODE> using <CODE>for</CODE>, and you should easily be able
to implement <CODE>one.per.line</CODE> using <CODE>foreach</CODE>.
<CODE>Down</CODE> isn't exactly covered by either of those tools; can you see
why I call it an iterative problem anyway?) Other recursive commands don't
seem to be repeating or almost-repeating something, like <CODE>downup</CODE>
or <CODE>hanoi</CODE>.  The difference is that these commands don't do
something completely, then forget about it and go on to the next
repetition.  Instead, the first invocation of <CODE>downup</CODE>, for
example, still has work of its own to do after all the lower-level
invocations are finished.

<P>
It turns out that a command that is <EM>tail</EM> recursive is one
that can be thought of as carrying out an iteration.  A command that
invokes itself somewhere before the last instruction is not
iterative.  But the phrase &quot;tail recursive&quot; doesn't <EM>mean</EM>
&quot;equivalent to an iteration.&quot; It just happens to work out, for
commands, that the two concepts are equivalent.  What &quot;tail
recursive&quot; means, really, is &quot;invokes itself just before stopping.&quot;

<P>
I've said before that this isn't a very important thing to worry about.  The
reason I'm coming back to it now is to try to clear up a confusion that has
been part of the Logo literature.  Logo implementors talk about tail
recursion because there is a tricky way to implement tail recursion that
takes less memory than the more general kind of recursion.  Logo
<EM>teachers,</EM> on the other hand, tend to say &quot;tail recursive&quot; when
they really mean &quot;iterative.&quot; For example, teachers will ask, &quot;Should we
teach tail recursion first and then the general case?&quot; What's behind this
question is the idea that iteration is easier to understand than recursion.
(By the way, this is a hot issue.  Most Logo teachers would say yes; they
begin by showing their students an iterative command like <CODE>poly</CODE>
or <CODE>polyspi</CODE>.  I generally say no; you may recall that the first
recursive procedure I showed you is <CODE>downup</CODE>.  One reason is that
I expect some of my readers have programmed in Pascal or C, and I want to
make it as hard as possible for such readers to convince themselves that
recursion is just a peculiar way to express the idea of iteration.)

<P>
There are two reasons people should stop making a fuss about tail
recursion.  One is that they're confusing an idea about control
structures (iteration) with a Logo implementation strategy (tail
recursion).  The second is that this way of thinking directs your
attention to commands rather than operations.  (When people think
of iterative procedures as &quot;easier,&quot; it's always commands that
they have in mind.  Tail recursive operations are, if anything,
less straightforward than versions that are non-tail
recursive.)  Operations are more important; they're what gives Logo much of
its flexibility.  And the best way to think about recursive operations
isn't in implementation terms but in terms of data transformation
abstractions like mapping, reduction, and filters.

<H2>Multiple Inputs to <CODE>For</CODE></H2>

<P>
Earlier I promised you <CODE>multifor</CODE>, a version of <CODE>for</CODE>
that controls more than one numeric variable at a time.  Its structure is
very similar to that of the original <CODE>for</CODE>, except that we use
<CODE>map</CODE> or <CODE>foreach</CODE> (or <CODE>firsts</CODE> or
<CODE>butfirsts</CODE>, which are implicit uses of <CODE>map</CODE>) in
almost every instruction to carry out <CODE>for</CODE>'s algorithm for each
of <CODE>multifor</CODE>'s numeric variables.

<PRE>
to multifor :values.list :instr
localmake "vars firsts :values.list
local :vars
localmake "initials map "run firsts butfirsts :values.list
localmake "finals map [run item 3 ?] :values.list
localmake "steps (map "multiforstep :values.list :initials :finals)
localmake "testers map [ifelse ? < 0 [[?1 < ?2]] [[?1 > ?2]]] :steps
multiforloop :initials
end

to multiforstep :values :initial :final
if (count :values)=4 [output run last :values]
if :initial > :final [output -1]
output 1
end

to multiforloop :values
(foreach :vars :values [make ?1 ?2])
(foreach :values :finals :testers [if run ?3 [stop]])
run :instr
multiforloop (map [?1+?2] :values :steps)
end
</PRE>

<P>
This is a very dense program; I wouldn't expect anyone to read and understand
it from a cold start.  But if you compare it to the implementation of
<CODE>for</CODE>, you should be able to make sense of how each line
is transformed in this version.

<P>
Here is an example you can try:

<PRE>
? <U>multifor [[a 10 100 5] [b 100 10 -10]] ~</U>
           <U>[print (sentence :a "+ :b "= (:a + :b))]</U>
10 + 100 = 110
15 + 90 = 105
20 + 80 = 100
25 + 70 = 95
30 + 60 = 90
35 + 50 = 85
40 + 40 = 80
45 + 30 = 75
50 + 20 = 70
55 + 10 = 65
?
</PRE>

<H2>The Evaluation Environment Bug</H2>

<P>
There's a problem with all of these control structure tools that I haven't
talked about.  The problem is that each of these tools uses <CODE>run</CODE>
or <CODE>apply</CODE> to evaluate an expression that's provided by the
calling procedure, but the expression is evaluated with the tool's local
variables active, in addition to those of the calling procedure.  This can
lead to unexpected results if the name of a variable used in the expression
is the same as the name of one of the local variables in the tool.  For
example, <CODE>forloop</CODE> has an input named <CODE>final</CODE>.  What
happens if you try

<PRE>
to grade :final
for [midterm 10 100 10] [print (sum :midterm :final) / 2]
end

? <U>grade 50</U>
</PRE>

<P>
Try this example with the implementation of <CODE>for</CODE> in this
chapter, not with the Logo library version.  You might expect each iteration
to add 10 and 50, then 20 and 50, then 30 and 50, and so on.  That is, you
wanted to add the iteration variable <CODE>midterm</CODE> to the input to
<CODE>grade</CODE>.  In fact, though, the variable that contributes to the
sum is <CODE>forloop</CODE>'s <CODE>final</CODE>, not <CODE>grade</CODE>'s
<CODE>final</CODE>.

<P>
The way to avoid this problem is to make sure you don't use variables
in superprocedures of these tools with the same names as the ones
inside the tools.  One way to ensure that is to rewrite all the tool
procedures so that their local variables have bizarre names:

<PRE>
to map :template :inputs
</PRE>

<P>
becomes

<PRE>
to map :map.qqzzqxx.template :map.qqzzqxx.inputs
</PRE>

<P>
Of course, you also have to change the names wherever they
appear inside the definition, not just on the title line.  You can see
why I preferred not to present the procedures to you in that form!

<P>
It would be a better solution to have a smarter version of <CODE>run</CODE>,
which would allow explicit control of the
<EM>evaluation environment</EM>--the variable names and values
that should be in effect while evaluating <CODE>run</CODE>'s input.  Some
versions of Lisp do have such a capability.

<P><A HREF="../v2-toc2.html">(back to Table of Contents)</A>
<P><A HREF="https://people.eecs.berkeley.edu/~bh/v2ch9/v2ch9.html"><STRONG>BACK</STRONG></A>
chapter thread <A HREF="../v2ch11/v2ch11.html"><STRONG>NEXT</STRONG></A>

<P>
<ADDRESS>
<A HREF="../index.html">Brian Harvey</A>, 
<CODE>bh@cs.berkeley.edu</CODE>
</ADDRESS>
</BODY>
</HTML>
a> ^
d4a8ec3c ^
6d7ee048 ^




d4a8ec3c ^

6d7ee048 ^



2a256611 ^



a2e94617 ^
d4a8ec3c ^
08fc6e5c ^
2a256611 ^













d3f9d547 ^

2a256611 ^




d3f9d547 ^

































08fc6e5c ^
d3f9d547 ^












08fc6e5c ^
d3f9d547 ^



08fc6e5c ^
d3f9d547 ^





fb0d3183 ^
d3f9d547 ^
fb0d3183 ^
d3f9d547 ^















































a735f5ad ^

d3f9d547 ^
























a735f5ad ^



d3f9d547 ^




a735f5ad ^

d3f9d547 ^








a735f5ad ^

d3f9d547 ^






08fc6e5c ^
d3f9d547 ^















































































































a735f5ad ^


d3f9d547 ^


















































































































08fc6e5c ^
d3f9d547 ^




a735f5ad ^

d3f9d547 ^































08fc6e5c ^
d3f9d547 ^




































a735f5ad ^

d3f9d547 ^










































a735f5ad ^

d3f9d547 ^
























































08fc6e5c ^
d3f9d547 ^
08fc6e5c ^
d3f9d547 ^














a735f5ad ^
d3f9d547 ^












08fc6e5c ^
a735f5ad ^
d3f9d547 ^


































































































































































































a735f5ad ^
d3f9d547 ^
















































































a735f5ad ^


d3f9d547 ^







































































































43797ce7 ^






d8e8363b ^















a735f5ad ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
                              
                                                                               
 

































































































































































































































































                                                                               
                        
                                                                           









































































                                                                               

                                                                          
                                                                           
                                                                       
                                                                          






































                                                                               
                                                                           
                                                                         
                                                                       


















                                                                               
                                                                      

















































                                                                               
                                                                              























                                                                               
                                                                          


                                                                       


                                                              
























                                                                               
                                                                       















                                                                               






                                                                               

                                                                    

                                                                           

























                                                                             
                                                                              
                                                                



                                                                        











                                                                               

                                                                             













                                                                              





















































                                                                               



                                                                         








                                                                              



















                                                                               




                                                                              






                                                                              






























































                                                                               

                                                                    
                                                                     
                                          















                                                                               
                        







































                                                                              











































                                                                               
           



                                                                


                                                      




                                                                               



















                                                                               

                                                      



















































                                                                               
                                                  












































                                                                               





                                                                               
                                                                           





















































                                                                               
                                                                           









                                                                               



                                                                              
                                                                              











































                                                                               
                                                                              


                                                                               
                                                


                                                                           
                                                                    













                                                                               
                                                                         

                                                                               
                                                                              


                                                                          
                                                                              

























































































                                                                               
                                                                           














                                                                               
                                                                          






                                                                               
                                                                           





















                                                                               
                                                                             







                                                                              
                                                                         








                                                                              
                                                                              






















































































                                                                               






                                                                              
 

                       


                                                       
                        
                                                    









                                                                              

















                                                                               
















                                                                              




















                                                                               


                                                                               
               


                                                                              
                                                        















                                                                             


                                                                          





















                                                                               














                                                                               





























                                                                              




















                                                                            









                                                                              
                                                                          






































                                                                               

                             



                                                                         








                                                                              

                                                             









































                                                                               
                                                 







                                                                              
                                                                          






















                                                                               
                                                             














                                                                             
                                                                              
                                                                         






                                                                               






















                                                                               
                        
                                                         






                                                                               
                                                                              




                                                                               




                                                                               








                                                                               
                                                                           



                                                                               
                                                                           

                                                                               






                                                                              


                                                                             


                                                                         
                                                                            
                                                                             
                                            

                                                                           
                                         







                                                                               
                                                                         









                                                                               
                                                                        












                                                                               
                                                                             

                                                                            

                                                                             
                                                                              
                                                                

                                                                            
                                                              
                                                                             
                                    
                                                                            





                                                                               








                                                                             
                                                                         









                                                                          
                                                                         



                                                                               
                       
                                                           
                                                             

                                                                            
























                                                                               
                                                                              














                                                                          
                                                                              




                                                                      






                                                                               
                                                          




                                                                               

                                                                     


                                                                               






















                                                                           




                                                                           
                                                       
                                                                        
                                                                               




                                                                             
                                                                      
                                                                          
                











                                                                             
                                                  
                                                            
                                                         
                                                                          



                                                                            

                                                               
                                                                    
                                                    



                                                                           
                                                                             
                                                
                                      
                                                                              














                                                                               




                                                            

                                                    

                                                                      

















                                                                               


                                                                              





























































                                                                               
                                                        























                                                                               








                                                                             
                                                                     









































































                                                                               
                                                    











                                                                             

                                                  
                                                                           
                                 
                                                                             







                                                                               
                                                                           

















                                                                               
                                                                         


                                                                             

                                                                             
                                                         
                                                                       

                                                                         

                                                                            





                                                                             
                                                                    

                                                               

                                                                        














































                                                                               






















                                                                               
                                                                 





































































                                                                               








                                                                             
                                                                          





                                                                             


                                                       
                                                                               
                                                   
                                                                        


                                                                            



                                                                             
                                                            
                                                                         
                                                  
                                                                    





                                                                               
                                                                               





















                                                                               
                                                                     



















                                                                               
                        









                                                                          
                                                                             
                                                                               

                                                                           
                                                                              



































                                                                             
                                                                           




                                                                               

                                                                          

                                                                             
                                                                             


                                                                              
                                                                








                                                                               
                                            




                                                                            


                                                                      
                                                           












                                                                              



























                                                                               


                                                                             
                                                                            










                                                                              
                                                                               








                                                                               
                                                      
                                                                           
                                                                     
                                                                            

                                                                            
                                                                             



                                                                               
                                                                             















                                                                              
                                                                           
































                                                                               
                                                                           






                                                                             

                                                                         
                                                                             


                                                                               
                                                                         




                                                                             
                                                                               
                                                                              
                                                                           










                                                                               
                                         

































                                                                               








                                                                             
                                                                            


                                                                               
                                                                        



                                                                            
                                                                            





                                                                               
                                                                       









                                                                              
                                                                    










                                                                               
                               

                                                                           
                  
                                                                              
                       
                                                                               
                                                    
                                                                         
                                                        
































                                                                               





















                                                                               
                       
                                                                             



                                                                            
                                                           







                                                                             



                                                                             
                                                                  






















































                                                                               
                                                   






                                                                            













                                                                               
                                               
               




                                         
                                                                           
                                   
                                        







                                                                             
                                                              
                                                                        
                          




                                                                             

                                                                 



                                                                      



                                                                           
                                                                           
                                                                    
                                                                              













                                                                               

                                                                               




                                                                               

































                                                                              
                                                                     












                                                                               
                                                                               



                                                                              
                                                                        





                                                                            
 
                       
                       















































                                                                               

                                                                      
























                                                                               



                                                                             




                                                                           

                                                                        








                                                                              

                                                                       






                                                                            
                                                                            















































































































                                                                               


                                                                             


















































































































                                                                               
                                                                    




                                                                             

                                                                   































                                                                               
                                                                              




































                                                                               

                                                                 










































                                                                               

                                                                           
























































                                                                              
                                                                        
                                                                               
                                                                         














                                                                              
                                                                               












                                                                              
                                              
                                                                               


































































































































































































                                                                               
                                                                               
















































































                                                                               


                                                                               







































































































                                                                               






                                                                             















                                                                              
                                                                               
Changes since Lynx 2.8 release
===============================================================================

1999-11-03 (2.8.3dev.14)
* modify no_color_video check for A_UNDERLINE so it is active for any
  combination that uses underlining (reported by KW) -TD
* modified HTML.c so configure --enable-internal-links builds -TD
* improved 'lynx.patch' rule in makefile.in -PG
* add rough version of makelynx.bat for use with Khan's MingW32 (from Victor
  Schneider <vtailor@gte.net>)
* update dependencies in makefile.bcb for src/TRSTable.c -HS
* fix PDCurses ifdef's in LYCurses.c to work with WATT-32 -DK
* correct ifdef's in LYPrint.c so that send_file_to_mail() works with DJGPP -DK
* modify DOS makefiles for PDCURSES for watt-32 and some of the other recent
  changes to lynx.  Included some of the EXP_ defines that DOS users may want.
  Changed the -O3 back to -O2, since -O3 has no advantage under djgpp -DK
* remove a useless ';', use FREE() instead of free() - JB
* correct spelling lexem/lexeme (reported by KW) -TD
* split-out function check_history() in LYMainLoop.c -TD
* add configure check for vasprintf -TD
* add configure check for _GNU_SOURCE -TD
* minor fixes for configure script macros CF_TERMCAP_LIBS, CF_DISABLE_ECHO,
  CF_GCC_ATTRIBUTES, CF_GCC_WARNINGS -TD
* fixed bug in psrcmode code.  Now htmlsrc_tag encloses only tagname, not
  everything in generalized brackets <,>,</,/> (reported by KW) -VH
* fixed a bug with 'g' command (reported by KW) -VH
* default value for 'OPT' in SGML.c made '1', removed alternatives to code
  surrounded by #if OPT1
* notes (VH):
  + Seems that 'OPT' stuff doesn't contain errors. Let's enable it for several
    releases, and then remove alternative code.
  + Added comments about pools.
  + Docs updated to reflect new functionality of -dont-wrap-pre
* old psrcview bug fixed  - markup was unbalanced in some situations -VH
* content of SAMP tag made justifiable -VH
* implemented HTStyleChange pooling - sizeof(HTStyleChange) is 4 times smaller
  than before, and only necessary number of stylechanges is allocated now,
  instead of some constant (1024 by default) -VH
* functionality of dont-wrap-pre improved and extended. Now it's possible to
  avoid wrapping the document being dumped completely (size of the non-wrapped
  line before the patch was limited by MAX_LINE = 1024 by default). Specifying
  -dont-wrap-pre with interactive session enables wrapped lines (in PRE) to
  be marked as in source view - with '+' in normal view -VH
* functionality of -force-empty-hrefless-a was cleaned up,
  #ifndefs NO_EMPTY_HREFLESS_A and endif's were removed -VH
* colorstyle changes are not emitted in HTML_end_element if me->skip_stack was
  >0 on entry to this function. This caused some glitches if
  -force-empty-hrefless-a was enabled -VH
* LYPrettySrc.c was slightly cleaned up, added support for lynx.cfg reloading,
  memory deallocation -VH
* possible bug in print_wwwfile_to_fd fixed - when quoting the page, seems that
  several '>'s could be emitted on the long line formed by concatenating ilnes
  with LY_SOFT_NEWLINEs at the begining of them -VH
* general notes -VH:
  + users of lss-enabled lynx should consider on upgrading the lynx - at least
    those who use lynx for viewing huge files.  By default, each line on the
    screen took 1K for colorstyles (on x86).  With new approach colorstyle
    changes take 24 bytes (on x86) per line in average document.  Old lynx with
    900K html file loaded as startfile occupied 30M of virtual memory, lynx
    with patch applied occupied 5 Mb on the same file.  Old code is still
    accessible by defining OLD_STYLECHANGE.
  + I spent 4 hours debugging attempting to write/fix code that cleans up the
    memory allocated in LYPrettySrc.c, but Lynx.leaks shows that I didn't
    succeeded.  I fear that leak detection stuff is broken - I checked/traced
    the code very carefully several times.
> the remainder (most) of this patch from KW:
* for confirmation prompts (HTConfirm), also accept English letters 'Y', 'y',
  'N', 'n' as responses.  If characters different from those are derived from
  the first letters of the translation of "yes" and "no" in a localized lynx,
  the latter will still be the ones that appear in the prompt text and will
  have precedence.  Message translations using multibyte character sets should
  continue to *not* translate "yes" and "no".  Added a note to that effect. 
* small update for some chartrans tables, minor comment changes.
* for Unix, use LYSystem instead of system for invoking telnet, rlogin,
  rtn3270 commands.
  [ For some non-Unix systems, LYSystem messes around with the passed command
    string in various ways, and does some other stuff for DJGPP.  So no change
    for those, since I assume it worked before.  For Unix the change prevents
    the following occuring with ncurses (at least if USE_SIGACTION is defined):
     - access some (valid) telnet://some.host URL.
     - within telnet client, escape to command level (usually '^]')
     - suspend (usually 'z' or ^Z)
     - resume (fg).  Lynx process gets woken up, redraws lynx screen,
       screen & tty state get messed up. ]
* another tweak for display refreshing when text previously displayed
  had UTF-8 (for ncurses) - a check in display_page was missing.
* corrected stupid problem in LYGetFileInfo - invalid memory access.
* corrected and extended handling for textarea INSERTFILE and EDITTEXTAREA
  (or DWIMEDIT), the previous patch wasn't quite right:
  - now really truncate very long lines as intended for INSERTFILE, instead of
    wrapping with loss of one character.
  - for EDITTEXTAREA (DWIMEDIT), implement wrapping instead of truncation
    (Rationale for the difference:  user's editing work shouldn't be lost if we
    can avoid it; it is only temporarily stored in a file which may be
    unrecoverable, different from the typical INSERTFILE case.) If, upon
    returning from the external editor, lines are encountered that don't fit in
    the displayed width of the textarea fields, the user may be given the
    option to wrap to that width.  (This prompt may not be given when the first
    such line has no suitable spaces for breaking - the file may be binary
    garbage after all, not worth fixing up too much.) Line breaking is
    attempted at spaces if possible (using isspace() for checking), but not if
    the only available spaces are close to the beginning of a line.  An attempt
    is made to join the wrapped part of a line (if not too long) with the next
    line if it is not indented, by suppressing the next line break (if not too
    far away).  Some other heuristics are used that work reasonably well for
    normal text paragraphs.
    If the above mechanisms fail, or the user did not confirm wrapping when
    prompted, very long lines will still be wrapped to fit into the buffer size
    (around 1024 chars).
  [ The wrapping works quite nicely in "normal" cases - please try it! ]
* mouse action in popups would lead to call of fancy_mouse() with wrong row
  number, which could lead to messed-up display as well as invalid memory
  access.
* The previous changes in link redrawing made things worse instead of better
  for UTF-8 display with ncurses (without color style).  This time (using
  wredrawln, not touchline) it should really get better... 
  [ The UTF-8 related changes would need testing with non-ncurses curses libs,
    if anyone has one of those AND a working UTF-8 environment - late xterm
    betas(?) from Tom's site should do.  If the functions used for ncurses are
    available in other curses libs, the code should probably look the same as
    for ncurses.  ]
* SGML.c to compile without --enable-prettysrc (reported by HN) -KW
* fixes an invalid memory problem from previous patch 
* adds alignment inheritance from COLGROUP / COL / THEAD / TFOOT / TBODY. 
* remove some logic from LYmbcsstrlen() that gave an incorrect count for
  the number of cells displaying multibyte characters, resulting in too-few
  cells being highlighted (reported by HN, HS) -KW
* added support for ROWSPAN attribute of TD and TH to TRST.  This only
  reserves the appropriate amount of space in subsequent lines.
  [ Pages that show off ROWSPAN nicely:
    <http://www.iro.umontreal.ca/contrib/po/HTML/domain-hello.html>
    and related ones for other "domain"s.  (Verify that there really
    is a ROWSPAN= in the current version.)  View with a screen width
    of 100.  With 80 there is some kind of problem, compare both
    ^V settings... ]
* some corrections in TRST code.
* change initialization order of key escape sequence mappings for slang, so
  that terminfo/termcap information always overrides defaults that may
  conflict.
* minimal memory cleanup / leak prevention for EXP_FILE_UPLOAD error
  cases in GridText.c.
* in HText_SubmitForm, don't change the post_content_type of the
  passed in newdoc structure unless that is really wanted.
* tweaked UTF-8 prevention of display library wrapping/truncation to make
  better use of available width for centered text, and to not apply if dumping
  to stdout.
* for UTF-8 output with ncurses, do a clearok in display_page also if the page
  that was *previously* displayed had UTF-8 characters.  Without this there
  were still display glitches.
* made previous changes to SGML.c and HTMLDTD for handling OBJECT more generic.
* minor tweaks, cleanups, glitch removal in previous changes.
* better tracking of HTSprintf0/HTSprintf with --enable-find-leaks
  (-DLY_FIND_LEAKS).  This can be disabled in LYLeaks.h by removing the
  definition of LY_FIND_LEAKS_EXTENDED.
* added variant behavior in StrAllocVsprintf to make HTSprintf0/HTSprintf use
  less memory allocation calls and keep its temporary string buffers across
  calls.  The buffers then only grow and never get cleaned up.  This is enabled
  by defining SAVE_TIME_NOT_SPACE in HTString.c, disable the definition there
  in case of problems.
* added code so HTSprintf0/HTSprintf can use vasprintf() in some situations,
  which should be more efficient.  It also works with --enable-find-leaks
  (EXTENDED or not).  This only comes into play if USE_VASPRINTF is defined
  (not defined automatically anywhere).
  [ For me (some Debian glibc version), the prototype for this function
    is in stdio.h but only gets included with an explicit -D_GNU_SOURCE. ]
  [ Which of the four combinations with/without vasprintf, with/without
    SAVE_TIME_NOT_SPACE is better (if any) remains to be tested.  I have seen
    drastic differences under leak tracking, but that's just too much
    different from a normal situation to count for anything. ]
* Some minor leaks fixed. (LYMainLoop.c)

[ Had to make owner_address and ownerS_address file-wide PRIVATE's
 instead of auto to unleak them.  Could be taken out of more
 argument lists now. ]

* HTFile.c: correction in FormatNum (could duplicate fields for some
  LIST_FORMAT settings), avoid some HTSprintf0 calls in FormatStr.
* replaced calls to HTSprintf with calls to HTSprintf0 in various files.
* added missing include of LYLeaks.h in LYPrettySrc.c.  But disabled memory
  tracking there, too many allocations show up as leaks.
* allow digits in tagspec for -prettysrc.
* the 'fixit' change of 1999-05-16 didn't really let LYConvertToURL() revert to
  the right old behavior in the non-'g' use.  Now return a file URL for the
  nonexisting file in the relevant situation again, as before 1998-03-25,
  instead of an erroneous "file://localhost" which (on Unix-like systems at
  least) would result in access to the root directory.  This change (like the
  changes of 1999-05-16 and 1998-03-25) only matters for strings that aren't
  already in absolute URL form, don't start with a slash (or, for DOSPATH
  systems, other path separator) either, and don't get turned into remote URLs
  by successful 'guessing' and DNS lookup.  None of the changes affect VMS.
* protect INSERTFILE and EDITTEXTAREA from generating memory access violations
  if the inserted file has lines that are too long for the buffer used.  An
  alert message is issued and the long lines are truncated.  Also don't exit if
  memory allocation fails for the buffer to hold the whole file, since the only
  reason for the failure may be that the file is too huge when otherwise lynx
  has enough memory.
* improved handling of some invalid constructs in SGML, especially
  '<' followed by various characters; don't lose those characters from
  what gets displayed for -prettysrc.
* a pre-filled TEXTAREA text that needed charset translation could cause
  use of an invalid pointer when building the page, resulting in garbage
  data being displayed (or worse).  The problem was in HTML.c, not related
  to TEXTAREA editing or other related new functions.
  [ preceding three were partially already in previous patch ]
* recognize '<?' as introducing an SGML PI.  Within most elements' content (or
  outside of any elements) this makes no effective difference except for TRACE
  messages and -prettysrc, the input is still junked up to the next '>' as for
  a completely invalid tag.  Within PCDATA elements the PI is now also ignored
  instead of being treated as character data, this makes a difference for
  example in a TEXTAREA in SortaSGML mode.  (PI's aren't really expected to
  occur in the middle of HTML, but are used at the beginning of XHTML documents
  and other XML documents.)
* the earlier change of TEXTAREA handling (treating as SGML_PCDATA, SortaSGML
  only) created a problem, some lynx special characters were passed on as data
  characters in the field contents and would mess up line editing and possibly
  the submitted form data.  Actually the problem also existed before, but only
  for non break space, soft hyphen etc.  encoded directly as character data
  (not NCRs or entities).  Resolved by telling SGML.c not to generate lynx
  special chars for some element contents (currently only TEXTAREA), with new
  flag Tgf_nolyspcl.
* corrected some logic errors in LYUCFullyTranslateString.  Special attribute
  characters are now more often translated to real characters when 'Back' flag
  is set, and should now be translated to the *right* characters for the target
  charset.  (They were sometimes converted to ISO-8859-1 values when the 'to'
  charset was different.)
* added a missing significant cast in UCReverseTransChar.
* for scrollbar mouse clicking, use codes that work independent of current
  line-editor key bindings.
* better calculation of "subjective distance" from next anchor for mouse. 
  Change of 1999-07-30 had various problems, it wasn't quite intuitive.  Use
  scaled numbers for finer granularity.  Don't make "basin of attraction" too
  wide, or it becomes hard to find a "background" spot to click on that doesn't
  affect a link if a page has a high density of links.
  [ For example with a pair of fields:
         Submit Reset
                xxx
  clicking in any of the positions marked 'x' on the next line would
  select the first field, not the second. That was not an improvement. ]
* functions LYmbcsstrlen, LYno_attr_mbcs_case_strstr, and LYno_attr_mbcs_strstr
  in LYStrings.c where unclear about the concept of 'printable' or 'physical'
  used for some returned values in the CJK case.  Callers expected number of
  display cells, implemented was number of 'characters' counting full-width
  characters as 1 instead of 2.  Now these functions take an additional
  argument 'count_gcells' that tells them how to count.
  This removes some long-standing, somewhat obscure problems with search target
  highlighting under CJK display character sets, as well as new (and less
  obscure) CJK problems introduces by the latest changes for highlighting. 
  Also fixed some details in the *strstr functions.  The positioning of the
  highlighting in CJK mode should now be correct and work as expected (as for
  other display character sets) for anchors, search targets, and combinations
  of both.
* reorganized LYOpenTempRewrite.  It should finally make sense for systems
  without HAVE_TRUNCATE defined.
* corrected SNACat (was unused).
* changes for SUP and SUB:  Render SUP visibly as a '^' character if it needs
  to be separated from a preceding character in order to prevent
  misinterpretation.  The test currently used is isxdigit for the the preceding
  character.  Render <SUB> and </SUB> always as brackets '[' and ']'
  respectively.  SUB is mostly used in technical material while SUP occurs
  frequently in pages of general nature where it is not essential, therefore
  the different treatment.
1999-10-21 (2.8.3dev.13)
* revert a change from dev.4 which disabled getbkgd support in PDCurses -DK
* modify ifdef for USE_QUOTED_PARAMETER to include __CYGWIN__, else names such
  as "telnet.sh" are translated to "telnet" -DK
* improve/simplify scrollbar support (Ilya Zakharevich)
* implement LYNXMESSAGES:/ page using non-tempfile approach -LP
* correct an assignment to last_kcode, broken by restructuring of LYMainLoop.c
  in dev.11 -HS
* tweak LYExecv() to exclude SH_EX conditional (dired commands didn't work
  on non-Windows platforms when SH_EX defined) -LP
* fix a potential out-of-range pointer in HTParse - JB
* fix a small leak in the statusline history page - JB
* restore DELEL lineedit key binding in the Alternate map (which apparently was
  changed in -dev.4 to the DELNW function) to the ^K key -KED
* LYMainLoop.c:  remove a dozen of unnecessary `refresh_screen' flags from
  LYK_HISTORY, LYK_PRINT, LYK_LIST, LYK_ADDRLIST, LYK_VLINKS where a new html
  page is generated (any document update that may be displayed in "partial
  display" mode need not set `refresh_screen' flag) -LP
* correct some typos in cernrules.txt -VH
* move declaration of LastDisplayChar to make GridText.c compile with DJGPP -LP
> the remainder (most) of this patch from KW:
* HTFTP.c: (already sent w/o description - this is updated to dev.10)
  - interrupted_in_next_data_char was not being reset.  That could make all
    subsequent FTP directory listings fail (by showing an empty directory)
    after receipt of one directory listing had been interrupted.
  - be nice, send quit before closing at least in the normal (non-interrupted
    and successful) case.  Some servers (wu-ftpd at least) otherwise complain
    with "You could at least say goodbye" which in turn causes unnecessary RST
    packets.  To minimize round-trip delays, the QUIT is sent before we start
    reading the returned data (but after the initial response to our retrieval
    command).
  - always close data connection immediately after we are done reading from it,
    also for directory requests.  This was already the case for file requests.
    Some servers (including recent wu-ftpd beta) wait for indication that we
    closed before proceeding.
  - keep better track of closed sockets.  Some more trace messages.
    Some comments corrected.
* tabular representation for simple tables.  See included file README.TRST.
* made User-Agent warning more friendly, and more specific.  Tell the user what
  lynx expects in order to avoid the warning.  On the other hand, issue an
  equivalent warning when -useragent is used.  Change documentation
  accordingly.
* don't send User-Agent header at all if it somehow would be blank.
* indicate on forms 'O'ptions Screen which options are not saved to .lynxrc.
* disable the form fields in the 'O'ptions Screen if the screen is generated
  when FORMS_OPTIONS code is compiled in but not actually active.
* LYPrint.c: In subject_translate8bit (see OUTGOING_MAIL_CHARSET
  option), use higher level function to charset-translate mail Subject
  line, rather than low-level UCTransCharStr.
* UPPER8, UCForce8bitTOUPPER:  was severely broken for UTF-8 display, making
  WHEREIS search for strings containing non-ASCII characters impossible (and
  probably with other bad effects).  Now case mapping may still be wrong, but
  at least identical strings compare as equal.
* LYHistory.c:  Entification for saved statusline messages happened twice by
  mistake.
* HTFWriter.c:  Made code for automatic decompression of bzip2 files
  conditional on BZIP2_PATH.  Such files should be treated as normal binary
  files on systems without bzip2.  The configure seems to always define
  BZIP2_PATH, but it could be undefined manually.
* HTFWriter.c:  Use LYRemoveTemp instead of remove in some cases, to avoid
  keeping those files in the temp file list after they are long gone.
* HTTCP.c: Check whether port numbers in URLs are really numbers.
* HTPlain.c:
  - deal with backspace formatting as used in formatted man pages.
    (No highlighting, only avoid double output of characters)
  - pass on 0xAD (soft hyphen) character in more cases.
* HTNews.c:  Prevent some ways that could trick lynx into treating a regular
  "news:" or "nntp:" URL as something else, like snewspost.  Extra check in
  LYNews.c whether posing is allowed.  Return with an error message in some
  cases of URLs that are too long, instead of silently truncating.  Make HEAD
  work again on news articles.  Some memory leaks in error path removed.  A
  message tweak.
* HTFormat.c:  HTStreamStack:  avoid some unnecessary work, add a trace message
  to show what is returned.
* SGML.c:  some cleanup of ugly ifdefs, and of unnecessary abuse of global
  variables.  (still a lot left!)
* handle INCLUDE and CDDATA marked sections: output the contents.
* parse various elements differently that had/have special requirements or
  hacks.  Extend meaning of Tgf_strict for literal-like content modes.  Use
  SGML_CDATA in some cases (and treat it similar to SGML_LITTERAL), use
  SGML_PCDATA for literal-like parsing (but if modified by Tgf_strict it's
  more like regular SGML_MIXED).  A '<' that would start a tag gets displayed
  (since not element content is allowed that's just error recovery).  Comments
  now work in TEXTAREA instead of getting displayed as text (SortaSGML mode
  only).
* minor tweak of sorta SGML handling for invalid end tag if start tag could be
  validly omitted.
* more consistent and correct recognition of element names.  The characters
  "_-.:" don't end tag names.
* improved handling of '/' after element name in a tag:  "<foo/>" is treated as
  an empty element (as in XML).  If we recognize "foo" as an empty element, do
  nothing special; and if we recognize "foo" as a non-empty element; convert to
  "<foo></foo>".  "<foo/bar/" is treated as a shortref construct, by converting
  to "<foo>bar</foo>" (for non-empty and recognized "foo").  This is not
  general as it would have to be for or real SGML parser, in particular '/' is
  only treated this way if it directly follows the element name, and it may not
  even be quite right.  It is better than the recovery lynx previously did in
  these cases though.
* changed handling of include buffer which is used to pass back data
  from HTML.c to SGML.c.  Passing data upstream now works without strange
  reordering effects even when SGML_character was already parsing data from
  a previous include buffer.
  Character set translation would happen several times on data passed back
  to SGML_character in the include buffer for re-parsing.  This is now
  avoided.  Well at least in most cases, and for characters that *can* be
  translated, there are likely combinations of input and output character
  sets where the assumptions made are still wrong.
* the start_element and end_element methods of structured stream class now
  return a status code.  Currently only used for the OBJECT stuff below.
* mostly HTML.c, SGML.c: Changed handling of OBJECT and MAP.
  - avoid using the include buffer mechanism as much as possible.  This
    involves introducing some new special handling in SGML.c to change parsing
    mode for element contents, and a way for HTML_{start,end}_element to signal
    to SGML_character what it should do.  In most cases when the OBJECT element
    content should be parsed and displayed, SGML_character now only needs one
    pass through the data.
  - don't lose content when several OBJECTs are nested.
  - in HTML 4, an OBJECT with USEMAP attribute can refer to a MAP within the
    OBJECT's content, possibly within nested inner OBJECTs.  Lynx would fail to
    find the MAP in that case, now it doesn't.
  - in HTML 4, MAP can contain arbitray block elements in addition to AREA.
    Lynx now shows such block content, even if it occurs within (possibly
    nested) OBJECTs with USEMAP whose contents we would otherwise skip.
    Sometimes we may show too much now, by generating a LYNXIMGMAP link as well
    as showing block content or by showing more of the OBJECT content than what
    is within a MAP, but that is preferable to losing data.
  - treat an A tag with COORDS attribute as equivalent to an AREA when it is
    within MAP, for the purpose of collecting links for LYNXIMGMAP.
  - as a fallback, internally redirect a LYNXIMGMAP request to the position of
    the MAP element in the normally rendered text of the document containing
    the MAP, if it is known that the MAP element exists and just doesn't
    contain any AREA (or equivalent A-with-COORDS) links.  It is assumed that
    in such a case there is some block content within the MAP that is rendered
    normally.
* HTFile.c: new function LYGetFileInfo.
* HTAnchor.c: new function HTAnchor_findSimpleAddress.
* new function HTStartAnchor5.
* modified the way link text is (re-)drawn by function highlight.  The bulk of
  processing now happens in new function LYMoveToLink.  The data of the
  containing line is now scanned from the beginning, using the same logic as in
  display_line to make sure that lynx and the display library have the same
  idea of where in the line the link starts.  In UTF-8 output mode, parts of
  the line preceding the link are also repainted if this is necessary.
  Refreshing of the physical line is forced if necessary in UTF-8 mode.  For
  anchors split across lines, the new approach is currently only used for the
  first line.
  This change is not in effect for lynx with color style.  In that case
  highlighting already is sometimes done in a similar similar, but not quite
  the same, separate function.
* modified WHEREIS target highlighting for hypertext links.  Now this is done
  in the same pass as drawing the normal link text, in LYMoveToLink.  This
  avoids problems in UTF-8 display mode.  It also avoids a lot of complicated
  and extremely hard to understand older code in highlight(), but that code is
  still there for use by lynx with color style and for other remaining cases
  (non-hypertext anchors, second line highlighting).
* modified WHEREIS target highlighting for general text.  Instead of first
  writing each line's characters in display_line, then scanning again through
  the line's data for portions to highlight and repainting those parts after in
  display_page, this is now done in one pass within display_line.  However,
  this isn't (yet?) done for lynx with color style which still uses the old
  code.
* these last three changes reduce problems that occur when using UTF-8 display
  character set (in an appropriate terminal environment that understands it, of
  course).  Most of them don't apply with color style lynx, so it continues to
  have more UTF-8 problems.  Pages with mostly ASCII characters should be more
  or less ok.  Problems that otherwise are not visible become apparent in
  search higlighting, and after ^Z / fg.
* GridText.c:  More changes to deal with problems caused by using UTF-8 output
  with a display library that isn't aware of it.  Break line with UTF-8 before
  curses does it.  This causes lines that are too short, effectively the
  rightmost part of a line cannot be used if there are UTF-8 encoded
  characters.  The alternative, letting curses wrap the line when it thinks it
  got too long, is worse, so do it in lynx code instead.
* avoid memory overrun for very long lines in UTF-8 mode.  Avoid splitting line
  in the middle of a mutibyte UTF-8 character.
* test for SHOW_WHEREIS_TARGETS instead of 'defined(FANCY_CURSES) ||
  defined(USE_SLANG)'.
* initialize new textarea lines created by insert_new_textarea_anchor with
  current display character set for value_cs.  (The "cloned" value can be stale
  in some cases if the user changed the display character set after the
  document was last loaded - normally that should not happen).  For a file
  inserted into a textarea with INSERTFILE use new function LYGetFileInfo
  instead to determine the file content's charset.  Thus -assume_local_charset
  and conventions based on file suffix should be honored.
* for Unix, added more specific error message if calling external editor for
  textarea failed, based on the status returned by system().
* it is possible to require an additional prompt before Enter in
  an input field causes form submission: define TEXT_SUBMIT_CONFIRM_WANTED,
  explained in userdefs.h.
* some small changes to prevent overstepping string boundary (HTParse.c)
* extended SUFFIX option, added SUFFIX_ORDER option, see documentation in
  lynx.cfg.  The long list of built-in file suffix rules in HTInit.c can now be
  disabled, either at compile time - see userdefs.h - or at run time.  The
  equivalent functionality is now available in lynx.cfg for those who want it.
  Added somments, see HTFileInit in HTInit.c.
* various tweaks of built-in file suffix rules.
* allow XLOADIMAGE_COMMAND to be empty (in lynx.cfg) or NULL (in userdefs.h),
  just don't use a default X viewer for image types in that case.
* moved UCGetUniFromUtf8String from LYCharUtils.c to UCAux.c.
* renamed LYUCFullyTranslateString -> LYUCTranslateHTMLString, and
  LYUCFullyTranslateString_1 -> LYUCFullyTranslateString.
* tweaks for special chars in (what is now) LYUCFullyTranslateString, in
  obscure cases (input fields of type password prefilled with unusual content)
  lynx would pass text back to the server with special characters (soft hyphen
  or non-break space) expressed as lynx-internal code values.
* added some replacement characters or strings to various chartrans tables.
* experimental command line option -convert_to, only compiled in if new
  MISC_EXP symbol is defined.  This takes a string in the form of a MIME type,
  which can also be combined with an appended ";charset=" parameter.  (This
  needs shell quoting of course).  The charset value can be used to set the
  display character set from the command line.  The MIME type can be one of the
  non-official types used internally, for some interesting effects (crashing
  lynx not excluded).  Try www/download, www/source, www/dump, or some
  unrecognized string.
* fixed HTMainText_Get_UCLYhndl, it was returning the wrong kind of charset
  handle (a "UChndl", which is different from a "LYhndl" or "UCLYhndl" etc.,
  and shouldn't be directly accessed by arbitrary bits of lynx code - it should
  be regarded as private to the chartrans mechanism).
* protect various printf-like calls against crashes from strings with '%':
  LYSyslog.
* LYDownload.c: made parsing of LYNXDOWNLOAD: URL slightly more robust.
* disabled some broken pieces.
1999-10-14 (2.8.3dev.12)
* fixes for restructured LYMainLoop.c (reported by PG, LP) -TD
* minor fix for makeutcb, to compile with K&R C -TD
1999-10-13 (2.8.3dev.11)
* restructured LYMainLoop.c, so the main switch statement calls functions
  rather than doing everything inline.  This greatly reduces memory required
  to compile that module, as well as making the compile 3-4 times faster -TD
* tweak CJK_EX code for incorrect x-transparent charset handler - it now
  depends on --with-charsets= configure flag -LP
* tweak comments in UCDomap.c to be consistent with KW changes as of
  2.8.3dev7 -LP
* define DECL_ERRNO for Borland compiler, so errno will be declared (report
  by JS) -TD
* add definition for DJGPP so truncate() function is used there, needed for
  LYOpenTempRewrite() function -LP
* correct character set for lines added in an external editor (Marek Kubita
  <kubitovi@mbox.lantanet.cz>, KW, KED)
* remove a couple more duplicate includes -LP
* remove a couple of duplicate includes (JB - John Bley <jbley@cs.cmu.edu>)
* fix some missing ifdef's for win32 versus DOS, as well as change calls to
  strcasecomp() to strncasecmp() -Hiroyuki
* undo spurious change from win32 integration in dev.5 to HTSprint0() which
  causes a memory leak (reported by John Bley, analysis KW) -TD
* prevent embedded "%s" in generated messages from causing a core dump in
  exit_immediately_with_error_message by using fputs rather than fprintf/printf
  (reported by KW) -TD
* Changes in UCAuto.c for --enable-font-switch:  Support some more code pages
  if available.  Check return code from setfont invocation, and use it to
  determine whether font and/or translation map loading was successful.
  Warning, this is not based on any documented interface but on
  experimentation, so may not work for long or for anyone but me; it shouldn't
  be worse than before though.  Better logic for keeping track of state, some
  parts just didn't work right.  Workaround for wrong data in some distributed
  font files.  Minor memory leak removed -KW
* modify test/c1.html to use tabs for better formatting, added comments -KW
* modify HTFTP.c for better conformance with RFC959.  Among other things, one
  major purpose was ending the control conversation cleanly, at least in the
  normal case, to get rid of the "221 You could at least say goodbye.."
  responses from wu-ftpd servers and resulting RST traffic.  In response to the
  problem with ftp.wu-ftpd.org, made one small change to when the data_soc is
  closed.  This was done early for some specially code server types, apparently
  those that has caused the same type of problem in the past; just changed it
  to close data_soc at that point independent of server type -KW
* set CDPATH to . in the makefile.in's that use cd, in case user has set
  CDPATH without . at the beginning -TD
1999-09-29 (2.8.3dev.10)
* change CTRACE macro to double-parenthesis form, to allow ifdef'ing most
  trace statements -TD
* fix the creation of a new bookmark file and takes care that older bookmarks
  files do not fall into the same bug anymore by making sure the <ol> tag is in
  a line by itself.  This correction will only be activated when the first
  bookmark is attempted to be erased (patch by Eduardo Chappa L)
* change a trace/error message in HTInit.c to say "Lynx" rather than
  "metamail", to avoid confusion -HN
* change <tab> formatting in user's guide, etc., to <pre> sections, thereby
  appeasing Dave Raggett's "tidy" program -TD
1999-09-13 (2.8.3dev.9)
* add -nobold, -noreverse, -nounderline options to disable corresponding
  video attributes (based on a patch by John Hawkinson <jhawk@MIT.EDU>) -TD
* add STICKEY_FIELDS to lynx.cfg, which tells lynx whether to activate the
  previous document when an extra key-left is given -VH,TD
* minor cleanup of run_external(), use single return, HTSprintf0 -TD
* for WATT32 configuration, call _eth_release() and _eth_init() in HTTelnet.c
  to make telnet work properly -DK
* correct redefinition of u_long for WATT32 -LP
* modify syslog change to make it more specific, based on comments by KW -TD
* fix potential security problem with SYSLOG_REQUESTED_URLS, which would let
  syslog() send sensitive information as broadcast to any syslog daemon that
  care to listen.
  E.g. URLs with embedded passwords are sent to syslog:
    Sep 11 12:26:06 lynx[16177]: ftp://joe:password@host/~joe
  The patch masks the password by breaking up the URL and replacing
  the password with "******" (Gisle Vanem <giva@bryggen.bgnett.no>).
* fix mismatch of const's from call of map_string_to_keysym() in
  lkcstring_to_lkc() -TD
* Supply trailing slash for protocol_proxy settings (whether environment
  variables or lynx.cfg) in HTAccess.c if the slash was omitted and if the
  content otherwise looks normal (starts with http, no su) -KW
* add links for "Free WWW E-mail services" to online help -PW
* add links in online help to FAQ-o-matic -JS
* more fixes to build with slang under cygwin32 - DK
* add/use LYwaddstr(), etc to fix more const-casts (reported by PG) -TD
* modify HTTCP.c to prevent telnet and similar applications from inadvertently
  using hostname tokens which look like command-line options -KW
* modify configure script's --with-charsets option so that if the option
  --without-charsets is selected, then it will use a 'minimal' set.  The
  keyword 'minimal' is recognized as the list us-ascii,iso-8859-1,utf-8
  (request by KW, HN) -TD
* ifdef'd recursive calls on UCGetLYhndl_byMIME() for charsets that may be not
  present (--with-charsets), and add getLYhndl_byCP() to cover a special case
  of recursion which was also a preexisting hole (reported by Frederic L W
  Meunier, analysis by KW) -TD
* replace fr.po with a placeholder.  Add placeholders for ru.po, pt_BR.po -JS
* review/modify HTNews.c to avoid potential buffer overflows, as well as reduce
  the number of embedded constants that make it difficult to adjust fixed
  buffer sizes -TD
1999-08-28 (2.8.3dev.8)
* correct ifdef's combining HAVE_POPEN and __CYGWIN__ in LYPrint.c, which would
  link popen() code when it was not available -TD
* correct order of ifdef's for __CYGWIN__ in LYGlobalDefs.h, which would result
  in a syntax error if the symbol __CYGWIN__ were undefined when __CYGWIN32__
  was defined -TD
* change hardcoded ifdef for <arpa/inet.h> include to autoconf'd form -TD
* modify makeuctb to add ifdef's allowing most charsets to be suppressed at
  compile time.  Use similar ifdef's in UCdomap.h to suppress registration
  of non-uctb charsets.  Add configure option --with-charsets to specify list
  of charsets which are not suppressed (def7_uni is always active) -TD
* change makeuctb to generate the name of the output file, simplifying all of
  the build scripts in chartrans -TD
* correct a syntax error in crypt_util.c from dev.7 and an ifdef in LYCurses.c
  that sets the codepath -SH
* use macro TABLESIZE throughout for consistency -TD
* revert use of TYPECAST for parameter of 'FREE()' macro, since that puts a
  cast on the parameter as an lvalue (reported by LV) -PG
* correct improperly-nested ifdef EXP_CHARSET_CHOICE in ifdef for USE_PSRC
  in LYReadCFG.c -TD
1999-08-26 (2.8.3dev.7)
* tweak ifdef'ing of `debug_delay' (only available with SH_EX _and_ WIN_EX) -LP
* tweak src/Xsystem.c (extern system_is_NT is now ifdef'ed with WIN_EX) so
  exec_command() can also be used with DJGPP when compiled with _WIN_CC symbol
  (though choice of _WIN_CC is questionable) -LP
* simplified ifdef'ing for resolv() vs LYGetHostByName() for DJGPP -TD
* DJGPP with WATT32 now does DNS lookup via LYGetHostByName()/gethostbyname()
  like other lynx ports so we get reasonable error recovery when DNS lookup
  fails.  (For example, we now avoid a hang when wattcp.cfg is not configured
  properly - a typical situation when playing with nullpkt.com).  Build with
  -DNSL_FORK (in both src and WWW makefiles) is recommended:  this will prevent
  unexpected 1 second curses delay when alerting a wrongly configured tcp.  (No
  real fork() in DJGPP, unfortunately:  this function always returns -1 and set
  'errno' to ENOMEM, as MS-DOS does not support multiple processes.  It exists
  only to assist in porting Unix programs) -LP
* alternative patch (replaces HN's) for UCdomap.c -KW
* modify initialization of lynx_temp_space in case the given name has
  embedded "~", ifdef'd for WIN_EX -SH
* fix a problem hanging caused by allowing some unknown entities in an ALT
  string.  The "hang" problem was caused by a combination of removing too much
  under 'case S_check_name' in 'LYUCFullyTranslateString_1', _and_ having
  having some Latin 1 character codes that are untranslatable to the display
  character set -KW
* added lynx.cfg setting PSRCVIEW_NO_ANCHOR_NUMBERING that inhibits link
  numbering when in psrc mode if set to TRUE (default is FALSE) -VH
* fixes for justification code (anchor position recalculation) and the
  GridText.c:*TrimHightext (it was not designed to support LY_SOFT_NEWLINES),
  correcting rendering of links on wrapped lines in psrc mode -VH
* fixes to www_tcp.h, LYUtils.c and UCdomap.c to build on BeOS 4.5 -TD
* fixes for CYGWIN with Slang, mainly due to platform differences in Slang -DK
* fixes for DJGPP, missing headers and declarations -DK
* let CJK charsets default to 7 Bit Approximations.  Needed to display entities
  in the decimal 160-255 range.  (Restore behavior before the changes made to
  declarations of charsets on 1999-03-04) -HN
* rename -number_links_forms to -number_fields -TD
* add the -number_links_forms command line option (John Hawkinson
  <jhawk@MIT.EDU>).
* modify configure script so --enable-change-exec sets default for
  the --enable-exec-links and --enable-exec-scripts options -TD
* modify ifdef's for ENABLE_OPTS_CHANGE_EXEC since one or both of EXEC_LINKS
  and EXEC_SCRIPTS must also be defined to make this effective (reported by
  KED).
* add explanations of the various choices for revealing/not images, to Users
  Guide, Options Help & lynx.cfg -PW
* fix LYgetstr() to disable saving of input text on LYE_ENTER state when the
  input is supposed to be hidden -KW
* add/use LYaddstr() to fix some const-casts -TD
* move dependency of "lynx$x" from "install" to
  "install-bin:" in top-level makefile.in -PG
* corrected display of SGML_LITTERAL content -VH
* now LY_SOFT_NEWLINE is used in psrc mode to denote wrapped lines (as in plain
  source mode) -VH
* add configure option --enable-scrollbar -TD
* make the charset-choice code lynx.cfg-reloading-safe -VH
* add experimental code to allow users to specify that a subset of the
  compiled-in charset definitions are available for selection for display
  (ifdef'd with EXP_CHARSET_CHOICE, added configure option
  --enable-charset-choice -TD) -VH
* add/use ANSI_PREPRO symbol to simplify ifdef's concerning preprocessor token
  substitution/concatenation -TD
* modify ifdef of code that shows current CJK code in the title area under
  SH_EX as well as CJK_EX -TD
* modify HTMLDTD.c to set canclose for <Hn> inside <PRE></PRE> -VH
* correct ifdef'ing of set_ws_title(), which should be applied only on win32
  (reported by Frederic L W Meunier) -LP, TD
* reduce compiler warnings from Borland C++Builder.  Most of these are casts,
  with boolean constructs dominating -JS
1999-08-13 (2.8.3dev.6)
* workarounds in LYMain.c and LYMainLoop.c for excessive compiler warnings due
  to defective design of glibc2 -TD
* modify logic for EXP_JUSTIFY_ELTS in GridText.c to change a raw
  LY_NONBREAK_SPACE to ' ', to work better for tables -VH
* add/clarify user's guide for command line option syntax -DK, KW
* add a new command line toggle for DOS to control debugging of packets under
  WATTCP and WATT-32.  Under WATT-32, once dbug_init is called, debugging
  cannot be turned off (although output can be sent to /dev/null).  This new
  option "-wdebug" controls whether debugging is active, is off by default -DK,
  Gisle Vanem
* allow ':' as a separator between the option and its value -DK
* corrected install rule using symbolic link for copyright files (reported by
  HN, KED) -TD
* reset "stalled for xxx" counter from Ilya's ETA change in dev.5 between ftp
  requests -VH
* add support for scrollbars, ifdef'd with USE_SCROLLBAR.  Use command-line
  options -scrollbar and -scrollbar_arrow or corresponding lynx.cfg to enable
  it.  Requires ncurses; may be further tuned if color-style configuration
  is used (Ilya Zakharevich)
* LYCopyFile():  Thanks to Hiroyuki Senshu, DOS-based systems need no cp.exe
  binary any more.  The code was originally ifdef'ed with SH_EX; now defined
  with DOSPATH so is used automatically by any dos/windows port, not used for
  UNIXes (permissions?) -LP
* a few includes labeled with _WIN_CC now tweaked with WIN_EX as should be -LP
* adjustments to SH_EX, CJK_EX ifdef's in LYMainLoop.c and LYUtils.c to aid in
  porting -LP
* improved logic in status_link() for -short_url option (patches from
  <nsh@itjit.ne.jp> and Eduardo Chappa L)
* modify display_page() to not necessarily call lynx_force_repaint() to make
  highlighting work when displaying UTF-8 -Christian Weisgerber, KW
* add check in read_directory() if transfer was interrupted -KED
1999-07-30 (2.8.3dev.5)
* add/use LYHideCursor() macro to accommodate position in older curses -TD
* add configure option --enable-cjk to compile-in CJK_EX logic -TD
* add -short_url option and associated logic to elide middle of long urls
  (adapted from patch by Eduardo Chappa L <chappa@math.washington.edu>) -TD
* ifdef'd read-progress changes with EXP_READPROGRESS, add configure option
  --enable-read-eta to turn this on -TD
* enhanced read-progress logic (Ilya Zakharevich)
  a) makes size/transfer rate reports use format "8.3 KB" (instead
     of "8 KB") if numbers are below 10 KB and reports are in KB;
  b) makes transferred/expected/transfer-rate use bytes/KB independently
     so "236 bytes of 56 KB" is possible, as is
     "8.3 of 56 KB, 456 bytes/sec";
  c) adds "ETA 23 sec" info if available;
  d) adds " (stalled for 75 sec)" info if available (updated each 5
     sec or so);
  e) uses gettimeofday() if present (instead of current hacks) to get more
     frequent updates.
* fixes for OS/2 and ncurses from Ilya Zakharevich:
  a) Makes lynx ignore mouse events which are not clicks (filtering through
     ncurses does not work as expected).
  b) Makes mouse-clicks "basin of attraction" of a link wider (the area where
     clicks make the link a current link).  It was 2 units vertically and
     horizontally, make it 2 units vertically, and 6 units horizontally.  This
     leads to "more intuitive selection".
  c) Make processing of .lynx-keymap write messages to trace buffer;
  d) LAC-keybindings were not working;
  e) Allow .lss files include one another via INCLUDE:/file/name
  g) Allow a change of default color in .lss files (not the color of attributes
     text, but colors for a style if "default" is specified); This (together
     with "e") allows for a simple modification of a color scheme
     Here is an example of a .lss file with a changed default
     foreground/background and a handful of other declarations fine-tuned for
     this change.  (It implements "Commander" style).  "Overriding"
     declarations should be put before INCLUDE:, and the "default:" declaration
     should be the last one.
		status:reverse:yellow:black
		h1:bold:yellow:black
		em.a:reverse:black:blue
		em.b:reverse:white:black
		font.letter:normal:default:black
		link.blue:bold:white:brightblue
		link.blue.prev:bold:yellow:brightblue
		title:normal:magenta:black
		i:bold:white
		table:normal:white
		blockquote:normal:white
		li.blue:bold:blue:black
		link.blue.next:bold:blue:black
		normal:normal:default:default
		INCLUDE:F:/emx.add/lib/lynx.lss
		default:normal:brightcyan:blue
  h) Improve algorithm for allocation of color-pairs;
  i) Lynx was not recognizing HOME directory on EMX;
  j) UP_LINK and DOWN_LINK now actually move along a vertical line (as far as
     it is possible), including an arbitrary sequence of such keypresses.
* modify LYIsPathSep() macro to include '\' for OS/2 EMX -TD
* correct a problem with spurious cookie names when reloading lynx.cfg (Michael
  Warner & KW)
* add check for too-long line in HText_ExtEditForm(), splitting it if needed
  (reported by <yury.burkatovsky@telrad.co.il>) -TD
* move NO_GROUPS definitions from HTFile.c to HTFile.h to make them available
  for use in LYUtils.c on DOS -LP
* correct several minor problems with integration of HS's changes in
  GridText.h, HTAlert.c and LYPrint.c (reported by LP) -TD
* restore dev.3 interface to LYLowerCase and LYUpperCase and do casts
  internally to work on unsigned chars -PG
* corrected typos in some messages (reported by Dmitry Sivachenko
  <demon@gpad.ac.ru>).
* changes for win32 -SH
  + added ifdef's using _WIN_CC (for Borland C) to some places in prettysrc
    definitions which use the __STDC__ symbol.
  + renamed makefile.w32 to makefile.bcb
  + renamed src/chrtrans/makefile.w32 to src/chrtrans/makefile.bcb
* the DOS port compiled with WATT-32 now works in a DOS window under Windows
  3.11 and Windows for Workgroups 3.11.  It still needs its own packet driver
  and does not use any native winsocks and  has only been tested with Toni
  Lopez's DOSPPP.  This does fill a void for those running Win3.x, who
  previously had to close Windows and go back to plain DOS before they could
  run lynx.  Updated the help files, reflecting current platform support -DK
* corrected definitions in HTTP.c and HTDOS.h to build with old TCP library -LP
* When keypad_mode was changed from forms options menu
  set_numbers_as_arrows()/reset_numbers_as_arrows() was not reinitialized
  (reported by KED) - LP
* SOURCE_CACHE: add one more parse setting member (keypad_mode)
  to HText structure -LP
* SOURCE_CACHE:  fix updating the document when "display charset" was changed
  from Options Menu by user:  FREE(anchor->UCStages) call from
  HTuncache_current_document() now duplicated in HTreparse_document().
  (problem reported by KW) - LP.
* tweak trace message in scan_cookie_sublist():  limit trace output by trying
  LYstrstr() as a first approximation before host_matches() -LP
* open temp-file in LYNewsPost() in binary mode for DJGPP to avoid translation
  of \r\n vs \n -DK
* add note about potential conflicts with cookie files to description of
  --disable-persistent-cookies -BJP
* added status message to indicate state of text inputs -VH
* added ability to make text inputs non-sticky (i.e., user will have to
  activate them explicitly via an LYK_ACTIVATE action) - seems useful for
  people navigating with alphanumeric keys.  Default is 'sticky' - i.e., old
  behavior.  Behavior is controlled via command line option '--sticky-inputs'
  and STICKY_INPUTS in lynx.cfg -VH
* added conditionals to 'userdefs.h' that disable support for
  force-empty-hrefless-a mode if lynx is configured without lss (it's not
  useful for such setup) -VH
* minor change to prettysrc mode, writing comments one character at a time
  to avoid translation of \r\n to \n\n in HText_appendText() -VH
* correct rendering of DL in EXP_JUSTIFY_ELTS, will inhibit justification of
  DT's content -VH
* other modifications to EXP_JUSTIFY_ELTS logic, to use information associated
  with each element that indicates whether it can be justified -VH
* modify HTMLDTD.c so that "center" is not treated with EXP_JUSTIFY_ELTS -VH
* fix for core-dump in EXP_JUSTIFY_ELTS -VH
* modify signal handling in LYSystem to workaround competing SIGTSTP handlers
  when a subprocess is active.  This adds a new function LYToggleSigDfl(),
  using sigaction as an alternative to signal to save/restore as much of the
  signal state as possible -KW
* add configure option --enable-justify-elts (request by VH) -TD
* add configure test for sigaction function and related structs -TD
* restore hardcoded escape sequences on Unix in setup_vtXXX_keymap()
  inadvertantly dropped in dev.4, to accommodate users of slang library who
  have their $TERM set incorrectly -TD
* correct ifdef's for resizeterm() call to allow Lynx to build with old
  versions of ncurses -TD
1999-07-14 (2.8.3dev.4)
* minor fixes to build with SunOS K&R compiler -TD
* cleanup unbalanced curly braces from other recent experimental options -TD
* rename internal definition for LINKS_AND_FORM_FIELDS_ARE_NUMBERED to
  LINKS_AND_FIELDS_ARE_NUMBERED to keep it shorter than 32 characters -TD
* change ifndef's for NO_JUSTIFY to ifdef EXP_JUSTIFY_ELTS since something in
  VH's recent code causes core dumps, by crosslinking the state of two parts of
  the parser -TD
* modify slang code to recognize F1 from terminfo/termcap on Unix (John Davis)
* changes to use the WATT-32 tcp library, making a DOS port that does http,
  ftp, news, mailto, and telnet -DK
  Remaining work includes:
  * This has been tested only with slang and the djgpp_keyhandler code.  There
    will probably need to be more changes to have this work properly with
    PDCurses.
  * There is at least one bug.  When set to use http_proxy, there seems to be a
    long wait between socket connect and write if the proxy is accessed too
    rapidly in succession.  It seems that if it is accessed more frequently
    than about 20 seconds, there is a timeout of up to about 85 seconds.
  * some problems with ctrl-break handling, will report to the watt-32 list.
* rename tcp.h to www_tcp.h -DK
* fix typo in manpage description of -color (Christian Hudon
  <chrish@debian.org>).
* add $(LDFLAGS) to chrtrans/makefile.in, for NetBSD -JS
* use symbolic link rather than hard link for installing copyright files -TD
* now dashes and underscores can be intermixed in commandline options, and in
  -restriction option, ifdef'd with OPTNAME_ALLOW_DASHES -VH
* added commandline switch '-dont_wrap_pre' that will inhibit line wrapping in
  <pre> when -dump'ing and -crawl'ing.  (But maximal length of line on output
  can't exceed MAX_LINE (1023 by default)) -VH
* lynx.man updated to reflect new option -dont_wrap_pre and to note that gnu
  style of options (with two dashes) is also supported -VH
* some small developer's docs tweaks -VH
* added text justification (controlled by commandline switch '-justify' and
  from lynx.cfg too), ifdef'd with NO_JUSTIFY -VH
* added support for emitting backspaces (a-la man) - commandline option is
  '-with-backspaces', ifdef'd with NO_DUMP_WITH_BACKSPACES -VH
* added support for forcing-empty-HREFless-As - ie A element that doesn't
  contain HREF will be closed after it was seen (without waiting for </a>) -
  this fixes rendering of documentation, produced by broken translators that
  don't emit balanced 'A's (eg RedHat docs produced by 'dlh', Sybase docs) -
  commandline option is --force-empty-hrefless-a, and force_empty_hrefless_a in
  lynx.cfg, ifdef'd with NO_EMPTY_HREFLESS_A -VH
* incorporate changes for win32 by Hiroyuki Senshu <senshu@shonai-cit.ac.jp>
  (SH) from
    ftp://crab.it.osha.sut.ac.jp/pub/Win32/develope/senshu/Lynx/
  based on his patch against 2.8.2pre.6
  Most changes are ifdef'd
    #define _WIN_CC=    .... for Windows C Compiler
    #define CJK_EX      .... CJK EXtension
    #define SH_EX       .... Senshu Hiroyuki EXtension
    #define WIN_EX      .... Windows EXtension
* add missing null-pointer check in MakeNewMapValue(), for verbose-images
  (from Debian bug report #39596) -TD
* test/build with gettext-0.10.35 -TD
* renamed uppercase makefiles and .bat files to lowercase, change the makefiles
  consistently to Unix-style format -TD
1999-06-29 (2.8.3dev.3)
* move HTAlert call so we don't get it each time we run the options menu -TD
* entify messages in LYshow_statusline_messages() -LP
* add -DNO_PORT to WWW/*/djgpp makefiles -DK
  This is to make ftp work with new version of the WATTCP library as revised by
  Igor Poretsky for building lynx with DJGPP.  The old version has been renamed
  to "tcplibdj-old.zip".  For the new package, go to:
    "http://www.rahul.net/dkaufman/tcplibdj.zip" or
    "ftp://ftp.rahul.net/pub/dkaufman/tcplibdj.zip"
* new option REUSE_TEMPFILES, see comments in lynx.cfg -KW
* use P instead of invalid TR for right-aligned "LYNXMESSAGES:" link in HISTORY
  page -KW
* better support for accessing FTP directory listings on Windows NT FTP
  servers:  try to switch MSDOS-like directory output off with SITE DIRSTYLE.
  The price to pay for this is one or (probably more often) two more command/
  response round trips -KW
* added support for accessing FTP directory listings in "dls" style sent by
  some OS/2 servers.  Only one server was known and used for testing, so the
  heuristics used may not be quite general enough.  File date/time is not shown
  since it doesn't seem to be part of the basic format -KW
* in lynx.man removed bogus "ID:" for -assume_charset,
  -assume_local_charset -KW
* in a list, render a <DIV> that doesn't have an ALIGN="center" or
  ALIGN="right" attribute like a <P> in that situation:  break the line if
  necessary but don't create an empty line, an keep list indentation.  This
  addresses Debian bug #21331 -KW
* other changes for DIV:  it's a block element, so make sure its contents
  doesn't get rendered inline, even for nested DIVs that don't change text
  alignment.  Try to avoid improperly kept change of DIV styles' alignment by a
  <P> or </P> in its content -KW
* make "treating H# in a list as an LH" work also for SortaSGML parsing,
  previously it only worked with TagSoup -KW
* removed special handling for empty last field from LYstrsep(), which made it
  act differently from (GNU) C library's strsep() -KW
* macro DEFAULT_INVCHECK_BV for default invalid cookie checking behaviour, can
  be changed at top of LYCookie.c for those who really want that -KW
* reorganize code for invalid cookie checking / prompting somewhat, it is
  hopefully easier to follow now, and should result in more logical prompting
  (or not) if a cookie is invalid for more than one reason -KW
* change invalid cookie confirmation prompts to default to "no" answer.  This
  can prevent the impression that Lynx hangs because the prompt is not
  completely visible.  There should be a better way to ensure that all prompts
  are recognizable as such (at least with "normal" screen widths) -KW
* use more of the available statusline width for showing cookie name and value
  in normal cookie prompts -KW
* handle \" in quoted cookie values, so that the quote char doesn't end the
  value string -KW
* write quoted cookie values to cookie file with the quotes ('"' chars).  When
  the cookie file is read, assume that quoted strings are quoted cookie values.
  It would be better to have a separate flag stored, but we are limited by the
  choice of the Netscape-compatible file format.  This should resolve Debian
  bug #35523 -KW
* handle empty value strings like any other cookie values:  they can be kept in
  the cookie jar (in memory), and can be written to and read from the cookie
  file -KW
* more checking whether a line read from a cookie file is complete -KW
* write out second field in cookie file lines a TRUE or FALSE depending on
  whether the domain can be used for suffix matching or has to match
  completely.  This seems to be how Netscape uses it.  We don't actually use
  this field when reading a file (presence of a leading dot in the domain value
  tells us what we need to know), but this should improve behavior for people
  sharing a cookie file between Lynx and a Netscape browser (although such
  sharing shouldn't be recommended) -KW
* treat case as insignificant in cookie domains more consistently -KW
* remove remnants of FROM_FILE domain behaviour, it was unused -KW
* add some clarifications in lynx.cfg regarding cookies -KW
* entify strings when adding them to LYNXMESSAGES: stack -KW
* save HTAlwaysAlert messages for LYNXMESSAGES: page -KW
* generate TRACE output for prompts that use HTConfirm() or HTConfirmDefault
  -KW
* make sure force_old_UCLYhndl_on_reload is initialized and reset properly -KW
* minor tweaks (LYCharUtils.c, LYMain.c, LYPrint.c) -KW
* flush Lynx.leaks file after writing each memory leak record but before
  freeing the memory block, to ensure the info is on disk if something goes
  seriously wrong (i.e., FREE causes a signal) -KW
* more general checking in postoptions - `lynx LYNXOPTIONS:foo' now doesn't
  crash -KW
* revived dired "install" functionality, more or less as it was (apparently)
  originally meant to be used, but with various checks added.  Compilation is
  now conditional on new symbol OK_INSTALL.  The "install" function is the
  closest we have to a "copy file" function, and could be used instead; the
  actual command executed depends on macros INSTALL_PATH and possibly
  INSTALL_ARGS, one can define INSTALL_PATH for example to "/bin/cp" before
  compilation to effectively get something like a dired "copy" function.  Note
  the the "install" function requires a special file in the home directory,
  which can be customized, see samples/installdirs.html -KW
* new function HTURLPath_toFile in HTFile.c.  Use it if we don't have a full
  URL where HTnameOfFile_WWW was used previously, this avoids misparsing of
  some unusual URL forms for files -KW
* other changes for dired support (KW):
  - various corrections with respect to URL-unescaping: don't escape
    too often or too little, dired operations could fail on filenames
    with special characters
  - avoid some unnecessary copying and allocation for filenames
  - avoid some more static buffers
  - add some buffer overflow checks
* make local directory display somewhat interruptible even without
  partial page display -KW
* make do_readme in HTFile.c 8-bit clean -KW
* tweak in HTTP.c to avoid doing strlen() on received data that are to be
  passed on raw; raw NUL bytes within the first block read could lead to data
  loss -KW
* change newly introduced CAN_ANONYMOUS_* at end of userdefs.h to be FALSE by
  default, to get behavior with -anonymous that is equivalent to 2.8.2 -KW
* handle some more common forms of mailcap $DISPLAY tests internally in
  HTInit.c -KW
* correct a problem which appears when the curses library causes FANCY_CURSES
  to be defined but not COLOR_CURSES:  the code can call attrset() twice for
  the same characters, thus replacing the original attribute with the new one.
  Fix by using attron() instead (patch by Julian Coleman
  <J.D.Coleman@newcastle.ac.uk>)
* modify LYonedot() so it does not change its parameter, avoiding corrupting
  the name to be zipped (reported by DK) -TD
* modify LYDownload.c to skip over delimiter for file://localhost to avoid
  treating it as part of the DOS filename -DK
* alter LYExecv() to only do an HTAlert if the return-code is zero, i.e., an
  error was reported.  This lets us reuse (and free) memory pointed to by
  tmpbuf (reported by DK) -TD
* remove redefinition of lstat() and change test of stat() function with DJGPP,
  which returns nonzero rather than negative on failure -DK
1999-06-18 (2.8.3dev.2)
* move some of the path-manipulation from the DJGPP dired change into new
  functions LYisAbsPath, LYisRootPath and LYLastPathSep -TD
* integrated patch adapted by DK from Igor B Poretsky <root@goga.energo.ru> for
  dired support with DJGPP.  (Some corrections/rework by TD also - must
  retest).  Some notes from DK:
  + since this is DJGPP based, it may be incompatible with a called program
    that uses a WATCOM DOS extender.  I think I had this problem with a
    precompiled binary for zip.  The current zip binary doesn't have this
    problem.
  + The key to making this work with DJGPP is the __sysflags = 0x501d in
    LYMain.c, since this lets the system() call handle multiple commands on one
    line and allows the cd command to work across disks.
  + I didn't look at Igor's changes to LYMainLoop.c as regards to the HTUncache
    calls.  He said he wasn't sure about this.
  + This was tested with Info-Zip's zip and unzip, GNU tar, gzip, comp430d,
    PKZIP, and PKUNZIP.  This was only tested when built with slang.  I don't
    see where PDCurses is likely to cause a problem, however.
  Problems:
  + To make this work, I made lynx_edit_mode = TRUE in LYMainLoop.c.  This does
    not seem to be the correct solution.  It seems that this should be handled
    by the code in HTAccess.c, but I don't understand how this works.  If
    lynx_edit_mode isn't true, the dired menu doesn't appear with the "f"
    invocation of LYK_DIRED_MENU.
  + I'll try to explain this briefly, but this bug is very reproducible.  If a
    program is invoked from the dired menu which needs to interact with the
    user, the system sometimes freezes and has to be rebooted.  For example, a
    call to unzip a zip archive where the files already exist has zip ask if
    the file should be overwritten.  If done initially after lynx is started,
    no keystrokes are accepted and the system always hangs.  If, however, any
    file has been moved or had its name changed via the dired menu, then the
    above problem doesn't occur.  I have tried to see what changes after the
    name change that fixes this problem, but I am stumped.  Gzip and unzip seem
    to have this problem, but PKUNZIP doesn't.
* correct most-recent LYNX_RELEASE_DATE (reported by KW) -TD
* change touchline() call in LYOptions.c to touchwin() in case anyone wants to
  compile with BSD 4.4 curses (reported by IC) -TD
* modified ifdef for DECL_ERRNO to allow for errno to be a macro -TD
* ifdef'd the extern declaration of h_errno in HTTCP.c in case that name is
  also a macro, e.g., for threaded code (reported by Mike Gravitz
  <ddavid@lamar.ColoState.EDU> on AIX 4.3.1.0) -TD
* rename ALLOW_USERS_TO_CHANGE_EXEC_WITHIN_OPTIONS to keep the names less than
  31 characters, and add configure option --enable-change-exec to set the
  ENABLE_OPTS_CHANGE_EXEC ifdef -TD
* correct syntax of popup_choices() within
  ALLOW_USERS_TO_CHANGE_EXEC_WITHIN_OPTIONS ifdef (reported by IC) -KW
* modified some message texts, mostly for consistency -KW
* correct display of local file times in INFO screen -KW
* add null-pointer checks for buf2 variable in
  exit_immediately_with_error_message().  Invalid memory access happens if
  access to startfile fails but first_file is not true -KW
* change all ifdef's except on for VAX ultrix that use the presumed predefined
  symbol 'unix' to 'UNIX', which the configure script sets.  Not all Unix
  systems define this in their compiler -TD
  From compiler warning on NetBSD 1.4 (report by JS):
    deprecated symbol "unix" is no longer predefined
* add experimental file-upload, ifdef'd with EXP_FILE_UPLOAD and configured
  with --with-file-upload (adapted from patch by RP) -TD
* document use of '|' pipes in PRINTER commands in lynx.cfg -TD
* add shell script man2hlp.sh, used that to generate lynx.hlp from lynx.man -TD
* SOURCE_CACHE:  source_cache_file and source_cache_chunk are now members of
  HTParentAnchor (where they should belong, not HText nor mutable globals).
  Add one more parse setting member (verbose_img) to HText structure -LP
* correct spelling of ifdef for reload_read_cfg() (reported by KW) -LP
* minor docs tweaks -LP
* test/{sgml.html, unicode.html} files were badly broken for tagsoup mode
  (incorrect html: extra <pre>..</pre> were added inside PRE mode in dev26) -LP
* fix back-slashes conversion for DOSPATH systems when expanding ~ to local
  path (mostly affects information screen) -LP
* correct default value for --disable-persistent-cookies configure option
  (reported by HenSiong Tan <tan@stat.psu.edu>) -TD
* uncomment --with-libjs configure option -TD
1999-06-11 (2.8.3dev.1)
(This is KW's patch, with minor corrections)
* Key handling changes:
  - Extended lynxkeycodes:  a bit flag is used to indicate that the lower bits
    of the value already are a lynxactioncode and need not be looked up again.
    Reduces need for back and forth forward and reverse binding lookups;
    currently only used in some places.
  - Extended lynxkeycodes:  several (currently three) bit flags are used to
    indicate key modifiers.
  - Added some macros for manipulating and mapping of these codes, see
    especially LYKeymap.h, LKC_TO_LAC() etc.  Added some comments about the
    various kinds of codes.
  - Added several editaction codes and flags for setting key modifier on next
    key (i.e.  for declaring keys as prefix keys, for the purposes of line
    editing); for flagging a key for different action if same key is repeated;
    for exiting input field line editing and passing a specific lynxactioncode
    on; and for undoing 8-bit C1 -> 7-bit replacement transformation for some
    chars.  Added code to line-editor implementation to react to these new
    editactions.  Note that the mapping of lynxkeycode to lynxactioncode
    outside of line editing, i.e.  KEYMAP in lynx.cfg etc., ignores the
    modifiers.  The main loop just drops modifier flags or ignores the modified
    key; modifier flags cannot be used in lynx.cfg KEYMAP 'keystroke' values.
  - An ESC not recognized as part of an escape sequence can set the appropriate
    modifier flag in LYgetch(), except for SLANG which normally uses a
    different LYgetch() implementation.  Interpreting an ESC prefix as modifier
    is very useful for situations where a held-down Alt key (or some other key)
    is encoded this way:  linux console, kermit with emacs key mappings,
    possibly xterm with '*eightBitInput:  false'.  OTOH it doesn't work for all
    characters or in all situations.
  - Extended syntax recognized in .lynx-keymaps file (which is only used if
    compiling with USE_KEYMAPS defined, which in turn depends on slang and
    ncurses version):
    (a) Meta-foo can be used to map an escape sequence to a key + modifier.
    (b) LAC:foo can be used to map an escape sequence directly to a
        lynxactioncode (actually, to an extended lynxkeycode that
        encapsulates a lynxactioncode).
    See examples added to samples/lynx-keymaps.
  - Extended syntax of KEYMAP option, additional field can override line-editor
    behavior.  PASS documented in lynx.cfg.
  - Extended syntax that can be used for specifying key in KEYMAP, some of the
    forms allowed in .lynx-keymaps file are now additionally recognized, but
    only if compiling with USE_KEYMAPS defined.  Left undocumented in lynx.cfg
    (maybe subject to change).
  - New "Bash-like" Line Editor binding.  Adds several new emacs-like editing
    functions.  Adds tables for keys with modifiers (actually the same table is
    currently used for all modifiers, to save some space).  Most notably, ^X is
    a prefix key to set a modifier flag.  Keys with second function when
    pressed twice are ^E^E and ^K^K.  ESC is also recognized as setting a
    modifier flag, in case it gets through without been having been handled in
    LYgetch().  See new file keystrokes/bashlike_edit_help.html for more info.
    The Bash-like Line Editor Bindings are only compiled in if compiled with
    -DEXP_ALT_BINDINGS / configured with --enable-alt-bindings (but not subject
    to a new macro).  Implementation code for the new emacs-like functions
    additionally ifdef'd with ENHANCED_LINEEDIT.
  - Avoid dependency on DNARROW key binding when form field line-editing is
    ended with Enter or Return key.
  - Take setting of real_c/old_c into consideration after return from form
    field line-editing.  Previously there were some strange effects:
    statusline messages would sometimes not appear when they should, the KEYMAP
    command would sometimes not work when invoked with ^Vk while in a form
    field.
  - Make NOCACHE ('x') work for TEXT_SUBMIT_TYPE form fields (i.e.  forms with
    a single text input field where Enter automatically submits).  Of course
    'x' has to be typed as ^Vx while line-editing the field (or NOCACHE mapped
    to a different key).  Similarly allow DOWNLOAD, and HEAD to work for such
    fields.  Try to ensure that all permission checks that apply to other form
    submissions are also done for TEXT_SUBMIT_TYPE fields, this wasn't the case
    before.
  - New key actions LPOS_PREV_LINK and LPOS_NEXT_LINK.  They are like PREV_LINK
    and NEXT_LINK, with the difference that, when moving to a form input or
    textarea line, the last column position (relative to the field) is
    remembered.  They are not mapped by default, but mentioned in lynx.cfg.
  - New key action DWIMHELP.  It should give some context-sensitive help.
    Currentely the appropriate Line Editor Binding help page is shown if a form
    input field is selected, otherwise it defaults to the main HELP page.
  - New key action DWIMEDIT.  Revert meaning of EDIT back to previous meaning:
    always edit document file, not textarea content.  DWIMEDIT acts like
    EDITTEXTAREA if the current link is a form textarea or input field and
    AUTOEXTEDIT was defined, and like EDIT otherwise.  Also added slightly
    different statusline message if form field external editing cannot be done
    because editing is disabled:  it shouldn't refer to "The 'e'dit command".
  - Summary of reasonable ways to invoke external texarea editing (assuming
    that it is desired to keep the action of 'e' to edit files at least outside
    of input fields):
    1) KEYMAP 'e' to DWIMEDIT, invoke ^Ve.  (if AUTOEXTEDIT is defined,
       which is the case by default.)
    1a) KEYMAP <some other key> to DWIMEDIT, invoke ^V<some other key>.
    1b) KEYMAP <some other key> to EDITTEXTAREA, invoke ^V<some other key>.
    2) KEYMAP a key (function or control, not printable!) to EDITTEXTAREA
       or DWIMEDIT, using PASS in the KEYMAP line.
    2a) Find some key whose LineEdit binding is already LYE_FORM_PASS, and
        KEYMAP it to EDITTEXTAREA or DWIMEDIT.
    3) compile with EXP_ALT_BINDINGS defined (--enable-alt-bindings),
       select Bash-like Bindings,
       invoke ^E^E or ^X^E (or ESC ^E aka M-C-e), or
       invoke ^Xe (or ESC e aka M-e), or
    3a) compile with EXP_ALT_BINDINGS defined (--enable-alt-bindings),
        and without selecting Bash-like Bindings
        (invoke ESC ^E aka M-C-e or ESC e aka M-e).
    Bindings in parentheses under 3/3a may not work with slang unless a
    tweaked .lynx-keymaps file is used.
* Other changes related to textarea handling:
  - More appropriate message statusline message if GROWTEXTAREA or INSERTFILE
    cannot be done because a textarea is not selected:  it shouldn't refer to
    "external editor".
  - Check whether an editor is defined before trying to use it for textarea
    editing.  Generate message if spawning of external textarea editor failed.
  - Allow INSERTFILE only if file access is not restricted.
  - Enforce dotfiles restriction and "show dot files" setting for INSERTFILE.
* Mouse handling changes, mostly only if mouse support comes via ncurses:
  - Re-enabled changing link by clicking in area *near* a link (but not on the
    link text), but limit max.  distance to 2 character positions.
  - Make mouse popup menu disappear when it should, by applying the right magic
    touchline() in popup_choice().
  - Lots of small tweaks to remove glitches in mouse handling, among them:  No
    left scrolling of long input fields on entering with mouse.  Try to ensure
    statusline is updated after mouse menu.  Make menu actions work as
    expected.  Avoid acting on mouse events, especially invoking mouse menu, in
    wrong context (e.g.  while at a prompt), at least in many places.
  - Clicking on left or right border of mouse menu now only moves selection.
  - At right end of top/bottom line, where single click causes HISTORY action,
    double click now causes VLINKS action.
  - Allow to distinguish between submitting and just positioning into a
    TEXT_SUBMIT_TYPE input field.  Single click positions, double click
    submits, 'activate' from menu also submits.
  - When initializing ncurses mouse, call mousemask() with only those bits set
    that we may actually be interested in.
* Changes relevant for handling window size changes:
  - For ncurses, changed the way how mainloop() notifies the curses library
    about a window size change.  The approach taken previously, and still used
    if we are not using ncurses, has more overhead, can unnecessarily switch
    out of the alternative screen buffer (and back) under xterm, and didn't
    really make ncurses update the WINDOW structures for the new size in time.
  - Other tweaks for size change:  make sure curdoc.link is valid after
    refresh.
  - Detection of size changes in more situations:  tolerate EOF from GetChar in
    the (non-SLANG) LYgetch_for() in more cases if errno is EINTR, if this
    happens check for a size change and generate trace output.  Recognize
    KEY_RESIZE from ncurses, check for a size change and generate trace output
    when it occurs.
  - Added NONRESTARTING_SIGWINCH lynx.cfg option and -nonrestarting_sigwinch
    flag.  If set, lynx *may* react more immediately to window size changes
    when running under xterm or similar.  Whether this actually has an effect
    depends on the implementation of sigaction() and on the behavior of the
    curses (or similar) library when a read() (or other system call) is
    interrupted by signals.
    Depends on '#if HAVE_SIGACTION', which currently has to be defined by hand,
    for example by 'make SITE_DEFS="-DHAVE_SIGACTION"'.  The command line flag
    is only available on systems with HAVE_SIGACTION and SIGWINCH.
  - Tweaks so that lynx in an xterm can survive when the window size is made
    (probably temporarily) very small, for example 1x1.  Avoid display_page's
    work if it wouldn't be displayable anyway.  Make display_title handle very
    small screen widths, at least to the degree that it doesn't crash.
* Except for VMS or when DOSPATH is defined, set restore_sigpipe_for_children.
  Fixes Debian bug #33853, maybe not really a bug but let's be nice.
* Changes in HTTCP.c:
  - Added a CTRACE_FLUSH before creation of NSL_FORK child process.
  - Block certain signals during creation of NSL_FORK child process, if
    sigprocmask() and friends are available.  This should prevent a rare
    problem where sometimes the child process could be killed before it has a
    chance to modify its signal handlers, resulting in screen corruption, a
    seemingly hanging lynx, and/or other problems.  It is assumed that
    sigprocmask() etc.  are available if HAVE_SIGACTION is true.  It currently
    has to be defined by hand, for example by 'make
    SITE_LYDEFS="-DHAVE_SIGACTION"'.
  - Generate diagnostic messages for some failures of forked lookup.  Depends
    on HAVE_H_ERRNO.  In particular, try to detect whether the child process
    failed because of memory problems, and also fake a 'z' in that case to
    short-circuit a URL guessing cycle.
  - For most systems, generate more trace output for connection attempts, close
    to the actual connect() and select() calls to prevent clobbering errno.
    See SOCKET_DEBUG_TRACE.  This should help diagnose some obscure
    system-dependent problems that have occasionally been reported.
* Added some missing stuff for color handling to forms Option Menu code.
* Printing to screen sometimes didn't show anything for short texts, if screen
  output was buffered (and ncurses makes stdout buffered).  Added another
  fflush(stdout) in send_file_to_screen().
* Some checks for specific URLs (helpfilepath, lynxlistfile, and lynxjumpfile)
  in LYGetFile.c were inappropriately case-insensitive for Unix.  The
  comparison is now case-sensitive except for VMS.  This may need tweaking for
  DOS and similar systems.
* Added additional LYNoRefererForThis check in getfile(), the one in mainloop()
  could be missed for TEXT_SUBMIT_TYPE form fields.  Also moved other check for
  whether to send Referer header earlier, and made it apply for URL types that
  might be proxied.
* LYAddVisitedLink tried to regard documents with the same address but a
  different title string as different documents, but this was coded wrong.
  Removed ineffective comparison, but keep old title string if new title string
  is empty.
* Correct long-standing logic error in MAIL_SYSTEM_ERROR_LOGGING handling.
  Apparently not many people are using it...
* Fix for traversal code to put the right address into the TRAVERSE_REJECT_FILE
  if a request fails after popping a document from the history stack (this can
  only occur if a previous request for the same document had succeeded).  Also
  don't try to send mail in such a case if MAIL_SYSTEM_ERROR_LOGGING is on.
  Also prevent possible history stack underflow if this occurs on return to the
  first document.
* According to lynx.cfg, error logging mail may be sent to ALERTMAIL if no
  document owner is known, but this was not implemented; now it is.  ALERTMAIL
  is used if it is defined non-empty in userdefs.h.  Of course normally it
  should be left undefined.
* Fix for traversal code to reject form fields a bit earlier.  This prevents
  unnecessary lookups as well as adding of an empty line to the
  TRAVERSE_REJECT_FILE for each form field encountered.
* Format -crawl output as was documented in CRAWL.announce:  with this switch,
  link numbering is always off by default (userdefs.h and lynx.cfg defaults und
  saved user preference are ignored) unless -number_links is given, and -crawl
  -traversal format is now consistent with -crawl -dump with respect to link
  numbering.  As a side effect, -crawl without either -traversal or -dump now
  also turns link numbering off unless -number_links is used (the meaning of
  -crawl without either of these was undocumented), so it then acts effectively
  as a (less powerful) negation of the -number_links switch.
* For -crawl -dump, the list of links was appended twice.  Fixed.
* Check URL as well as title before deciding that a document should not be
  pushed on the history stack because it looks like a generated special page.
* Made "Don't waste the cache" optimization in historytarget() subject to
  additional checks, to avoid uncaching of the wrong document in some cases.
* LYSafeGets() would drop the last line from a file if it was not terminated.
  Changed to return the unterminated line like fgets().
* Clarifications on restrictions.  "download" does not imply "disk_save" while
  "print" does, this doesn't seem to make much sense but has been the behavior
  for a long time.
* Restrictions inside_news, outside_news now apply to reading as well as
  posting.  The documentation (except for the corresponding comments in
  userdefs.h) said that they apply to posting, while in fact they were
  implemented for reading only.  [Does nobody read this stuff???] Also, the
  implementation only checked the flag for news:  URLs, but not for nntp:
  URLs, which doesn't make much sense given that the latter provide an
  alternative way for most (if not all) purposes of the first.  So now these
  restrictions apply to news:, nntp:, newspost:, and newsreply:  (but not to
  snews:, snewspost:, or snewsreply:).
* Document -restrictions=externals.
* Some of the restriction stuff not added to VMS lynx.hlp file, since I'm not
  quite sure whether the corresponding features work there at all.
* Changed restriction parsing so that "all" and "default" don't get ignored if
  they appear as one of several items in the same list.
* Implement listing of current restrictions to stdout with new -restrictions=?
  option.  This should appear as the last command line option, otherwise the
  effect of options appearing later may not be shown.  The '?' may require
  quoting.
* Made -restrictions= (without any option flags) act like -restrictions
  (without equal sign either) as implied by documentation, i.e.  list
  recognized restriction options.
* LYRestricted has been greatly abused.  Once upon a time it was a PRIVATE flag
  in LYMain.c (then called anon_restrictions_set), used only to get the
  precedence of various command line options right.  Recently it has been
  misused as a check (and as the only one) whether "anonymous restrictions" are
  in effect.  This undermines various assumptions:
  - that -anonymous is basically an aggregate set of restrictions which could
    be specified individually with -restrictions=.
  - that individually listed restrictions (-restrictions=...) act as expected,
    and can be used to restrict various aspects in a useful manner.
  - that -validate implies the strongest restrictions, except for what is
    explicitly exempted (i.e. 'g'oto for http/https URLs).
  Use specific restrictions instead:
  - new "compileopts_info" for LYNXCOMPILEOPTS:  - for anonymous default see
    userdefs.h
  - new "lynxcfg_info" for LYNXCFG: - for anonymous default see userdefs.h
  - new "lynxcfg_xinfo" for extended LYNXCFG: - for anonymous default see
    userdefs.h
  - new invisible "goto_configinfo" for LYNXCOMPILEOPTS: & LYNXCFG: for
    anonymous default, see userdefs.h
  - additionally check existing "option_save" for LYNXCFG://reload/ -
    always restricted by anonymous default
  ("invisible" means that this restriction cannot be explicitly listed in a
  -restrictions=...  list, but has a value derived from userdefs.h that is used
  with -anonymous and -restrictions=default.)
* Forms options menu can now be used with -validate.
* Allow following local help file links, even if "file_url" restriction is set,
  from LYNXKEYMAP, LYNXCOOKIES.  (Possibly more need to be added.)
* Apparently realm checking (with -realm option) is bypassed for URLs from
  (some) form submissions (it seems to be intentional, but why?).  Made sure
  this at least doesn't weaken -validate restrictions.
* Apply -localhost check in getfile for news URLs that include a hostname,
  i.e., that begin with with "news://".
* Add '&' to nonalphanumeric characters forbidden by exec_ok() for lynxexec and
  lynxprog URLs, but keep allowing it for lynxcgi.  There's not much point in
  excluding ';' and so on if '&' is acceptable!
* Tweaked LYNXMESSAGES:  handling slightly:  don't bypass normal getfile
  handling.
* Reset LYforce_no_cache flag in mainloop() after failed access, before popping
  the previous (or, actually, probably currently still displayed) document.
* Tweak for 'no data' handling:  it isn't always an error, but was sometimes
  treated as such.  It mostly doesn't make a difference, except for the message
  printed when the startfile cannot be accessed and for traversal and mail
  error logging.  This needs to be revised to apply for all protocols.
* Added new functionality for rules:  Redirect, UseProxy, various others.  See
  cernrules.txt in samples directory for details.
* Prevent crashes in HTNews.c with HEAD.
* Allow HEAD requests for proxied URLs (checking whether any applicable proxy
  begins with http:  or lynxcgi:), as far as this can be determined based on
  regular environment settings (i.e.  unaware of proxying by rules).
* Modified add_item_to_list() so that if the restriction flag is omitted from a
  DOWNLOADER/UPLOADER/EXTERNAL line in lynx.cfg, it is assumed FALSE.  This
  modifies the change of 1998-10-17 to be on the safer side, it is more
  consistent with how PRINTER lines or lines with the colon separator present
  but the flag value absent are handled, and it only makes a difference when a
  -restriction command line option or its equivalent is in effect anyway.
* Deal with unusual cases where telnet and similar protocols are proxied, or
  possibly changed to a different type of protocol by rules.  Normally such
  protocols should never be proxied, but there was no protection against it,
  and lynx could crash.  The approach now taken does not disallow it, but just
  tries to deal with the situation in a way that avoids crashing; it is
  conceivable that one may want to direct e.g.  telnet or rlogin URLs to a HTTP
  page that explains why theses types are not supported.  A similar problem
  that occurred when e.g.  telnet was forbidden by a rule is also dealt with.
* Protect start_curses calls in getfile against being executed if
  dump_output_immediately is in effect.  Maybe access to telnet, rlogin,
  lynxexec URLs should be completely disabled for this case; skipping the
  start_curses at least avoids being left with non-restored tty settings after
  the program exits, is someone attempts to use -dump or -source with such a
  URL (the -dump or -source flags is then effectively more or less ignored).
* Tweaks in fix_http_urls, renamed fix_httplike_urls.
* Moved LYStrerror from LYStrings.{h,c} to HTAlert.{h,c}, so that it can be
  used in HT*.c files without pulling in yet more LY*.h headers.
* Reset 'safe' flag in anchor on parsing "Safe: no" and "Safe: false" headers.
* The top makefile.in had some 'rm -rf' for whole directories $(helpdir) and
  $(docdir) in install targets that could potentially wipe out unrelated files;
  added checks to make sure the directories haven't been changed to something
  not lynx-specific (they are regarded as lynx-specific if the last component
  is lynx_help and lynx_doc, respectively).
* Various doc tweaks.
* Updated README.defines.  Other contributors should please add their stuff
  there, too.
* Additional non-option args (before the last one), i.e.  URLs or filenames,
  are made available for 'g'oto recall.  If unwanted, this can be disabled by
  changing EXTENDED_STARTFILE_RECALL in LYMain.c -KW
* In UCChangeTerminalCodepage() used for --enable-font-switch with linux:  use
  LYOpenTemp() etc.  instead of tempnam(), this avoids "Invalid pointer" with
  LY_FIND_LEAKS and avoids leaving old temporary files hanging around in some
  situations.  Also added some error checking -KW

1999-06-01 (2.8.2rel.1)
-----------------------
1999-06-01 (2.8.2pre.11)
* minor fixes from W3C HTML validation -TD
* update links to HTML'ized lynxcfg in users' guide -VH
1999-05-31 (2.8.2pre.10)
* add links to HTML'ized lynxcfg to users' guide -LP
* cleanup temporary files left by
     lynx -dump LYNXCFG:// > /dev/null
  (analysis by LP) -VH
* add comments to lynx.cfg describing effect of restricting configuration
  settings in nested includes -VH
* delineate URL's in README with "<URL:" and ">", with space in lynx.man -LV
* add some comments to lynx.lss -TD
* minor improvements to configure script:  use newer config.guess and
  config.sub from xterm, which adds case for HP 9000/800 (fix problem reported
  by Peter Jones <jones.peter@uqam.ca>) -TD
1999-05-29 (2.8.2pre.9)
* use StrAllocCopy rather than HTSprintf in LYstore_message() because no
  formatting is done there; the message may contain formatting controls such as
  %s (related to bug report by Frederic L W Meunier <fredlwm@urbi.com.br>) -TD
* add/use function LYRenamedTemp() to update our record of temporary filename
  when using external decompression program, so we will remove the decompressed
  file correctly on exit.  This is the usual case if we do not link with zlib
  (reported by HN) -TD
* modify LYValidateFilename() to derive original directory preferably from
  Current_Dir() rather than environment variable $PWD, since the $PWD directory
  may not be writable if Lynx is invoked from another application rather than
  directly from the command line -TD
* add/use function Current_Dir(), to check for failure in getcwd/getwd -TD
* change ALL_LINGUAS assignment in configure script to use the .po file which
  actually reside in the po directory, making it simpler to drop/add message
  files from a distribution of Lynx.  Also, make the assignment contigent on
  ALL_LINGUAS not being set externally, making it simple to override -TD
1999-05-28 (2.8.2pre.8)
* when reloading/reparsing the document with forms, issue a warning only when
  user input is detected (forms content is changed from its default so
  information will be lost).  New function HText_HaveUserChangedForms() is
  called from HTReparse_document() and HTuncache_current_document() -LP
* fix exit from postoptions() when need_reload is set but no source_cache,
  was broken in dev23 -LP
* remove unneeded float from integer calculations -LP
* move comment for 'const' off the definition line, to simplify debugging
  configure problem on HPUX for David Eaton -TD
* move LYGetYX() out of conditional expression, just in case it cannot be
  evaluated as a function, i.e., return a value (from bug report by David
  Eaton) -TD
* make install for COPYHEADER and COPYING work when the build directory is not
  the top source directory -PG
* add check to FastTrimColorClass() to avoid updating stylename and pointer
  into it when the tag to be trimmed is not found (fixes a core dump reported
  by VH) -TD
1999-05-25 (2.8.2pre.7)
* update illustration of forms options menu in Lynx User Guide according to
  current lynx output -LP
* old-style options menu:  hot key for "local e(X)ecution links" is now
  displayed in bold (call addlbl() instead of addstr() like the other options
  do), adapted from Hiroyuki diffs -LP
* fix handling of incorrect html in psrc mode.  If a piece of html matched the
  pattern "<known_tag_name unknown_attr_name any_attr_name>", then styles of
  internal markup were unbalanced - resulted in cluttered colors -VH
* comment-out (for release) configure option --enable-libjs -TD
* change configure script defaults for --enable-persistent-cookies and
  --enable-alt-bindings to 'yes' -TD
* add DESTDIR variable to top-level makefile to facilitate packaging releases
  with compiled-in pathnames -TD
* further correction to VMS pathname in HFTPLoad.c, to translate /vms/fileserv/
  to [vms.fileserv], for example.  The wku fileserver gives back a Unix-style
  listing rather than VMS-style when given a Unix-style CWD, which confuses
  Lynx into discarding the listing (reported by Andy Harper) -TD
* modify LYCookies.c to append new items to the end of the list rather than
  at the start, so cookies will be written and read from .lynx_cookies in
  consistent order (reported by KED) -TD
1999-05-24 (2.8.2pre.6)
* fix for problem reported by LP -VH
  Load an html file with META charset and switch "\" to source mode.  Now press
  ^R to reload:
  (1) In -prettysrc case you got a broken document (charset will be assumed by
    lynx from assume_charset or assume_local_charset, not from a META charset
    which was previously pushed with LYPushAssumed() so you get a problem with
    8bit documents when assume_charset != META charset).
  (2) Without -prettysrc you got a document handled properly via META charset
    assumption.  Now if you press ^R again you will get a broken document.
* LYK_SOURCE & HTreparse_document():  when using SOURCE_CACHE_MEMORY fix tiny
  charset problem when switching to the source mode and the original document
  have its charset specified.  Now aligned with SOURCE_CACHE_NONE and
  SOURCE_CACHE_FILE.  More LYK_SOURCE fixes that might affect next coming
  document in come cases (mainly Info page and Options menu, which now show
  correct charset information) -LP
* add CTRACE_FLUSH call before fork() in NSL_FORK logic so child's messages
  will not mess parent ones -LP
* add a few trace messages -LP
* HTReadProgress message now display statusline properly in TRACE mode
  (was always broken since early HTReadProgress days) -LP
* install COPYING and COPYRIGHT for install-help rule as well as install-doc,
  so we can refer to local copies of those files -TD
* tweak HTParse trace message -LP
* minor formatting change for Lynx_users_guide.html -Hiroyuki
* correct a few mismatches between variable declarations (char vs BOOLEAN)
  (from win32 version by Hiroyuki Senshu <senshu@shonai-cit.ac.jp>).
1999-05-20 (2.8.2pre.5)
* correct links to COPYHEADER and COPYING in about_lynx.html, by pointing to
  author's URLs, rather than to files which are not installed anyway -PG
* shorten a couple of identifiers to keep with 31-character limit:
  hash_code_aggregate_lower_on_fly -> hash_code_aggregate_lower_str
  LYprint_statusline_messages_on_exit -> LYstatusline_messages_on_exit
  (reported by Andy Harper) -TD
* correct VMS pathname in HTFTPLoad(), allowing connect to
  ftp://ftp.wku.edu/vms/fileserv (reported by Andy Harper) -TD
* chartrans:  cpXXXX Microsoft codepages verified against ftp.unicode.org -
  apparently cp1256 (Arabic) was updated recently.  Although Arabic letters are
  hardly useful for lynx (no right-to-left support) this codepage is supported
  under chrtrans.  So update, just for fun -LP
* fix core dump when starting "lynx LYNXOPTIONS:" command.  All phases of forms
  options logic now handled by postoptions():  LYNXOPTIONS:/ without post_data
  create a page (gen_options() now PRIVATE), LYNXOPTIONS:/ with post_data do
  proccess changes as before.  Also LYK_ADD_BOOKMARK fixed:  forms options page
  will not be added to bookmarks file -LP
* modify HTGetRelLinkNum(), removing increment of HText_getTopOfScreen() value
  so checks for line number begin at the very top of the screen, fixing a
  problem reported when processing the 123[g][+-] command -LE
* minor change to LYReadCFG.c to combine similar gettext'd strings -HN
1999-05-16 (2.8.2pre.4)
* add 'fixit' parameter to LYEnsureAbsoluteURL() to suppress logic in
  LYConvertToURL() that was changed in 2.8.1dev.4, to re-offer the original
  string after an invalid URL is entered at a 'g' prompt.  The calls to support
  'g' are unmodified; other calls revert to the older behavior (recommended by
  KW) -TD
* add/use string functions that make EBCDIC comparisons sort in the ASCII
  collating sequence, eliminating some special ifdef's in HTMLDTD.c -PG
* when STARTFILE cannot not be loaded, lynx now exits with more understandable
  status messages:  all important statusline messages are now printed to
  stderr/stdout -LP
* add definition for _DECC_V4_SOURCE for VMS SOCKETSHR_TCP configuration to
  top-level and ./src build*.com files (reported by Andy Harper) -TD
* change UNKNOWN_URL_TYPE to 1, to keep it distinct from NOT_A_URL_TYPE, fixes
  an error introduced when changing UrlTypes to an enum (reported by KW) -TD
1999-05-12 (2.8.2pre.3)
* add DEBUG_SOURCE_CACHE makefile flag so all documents will be cached in
  SOURCE_CACHE mode, including local files.  Normally undef'ed so only http
  served documents cached with sources -LP
* in LYK_HISTORY, set newdoc.link = 1 so position at link #2 bypassing "recent
  statusline messages" link -LP
* comment out "partial_thres=" option in .lynxrc (it was coded so the changes
  from lynx.cfg file could not be activated) -LP
* add a sanity check to LYCurses.h to point out problems with the FANCY_CURSES
  configure checks -TD
* fix uninitialized pointer used in decoding of -term switch (patch by Sergey
  Svishchev)
* define _DECC_V4_SOURCE for VMS SOCKETSHR_TCP configuration, to fix conflict
  with unistd.h versus non-POSIX prototypes in the other headers (report by
  Andy Harper) -TD
* ifdef'd includes for HTUtils.h to limit size of preprocessor listings with
  DEC C; verify that all header files include definitions needed for their
  contents -TD
* add docs/OS-390.announce (Paul Gilmartin <pg@sweng.stortek.com>)
* add fallback extern declaration for h_errno to HTTCP.c for systems that have
  that variable but do not declare it (reported by Jean-Pierre Radley
  <jpr@jpr.com> for SCO OpenServer 5.0.5) -BL
* correct SortaSGML element info: SPAN can contain SPAN -KW
* fix several small memory leaks (John Bley):
  + minor (~ 7 bytes) leak in LYCookie.c
  + leak in the warning message about invalid cookies
  + obvious leak in do_readme
  + small leak in dired_options (LYLocal.c)
  + leak with -selective option in HTFile.c
  + a few leaks and a minor cleanup in local_dired
1999-05-08 (2.8.2pre.2)
* substitute a few more free()s with FREE()s in files HTString.c and
  LYReadCFG.c (John Bley)
* fix buffer problems with long filenames and custom DOWNLOADERs (John Bley)
* fix typical alloc-fail-return-error-without-free leakage in
  save_bookmark_link (LYBookmark.c) (John Bley)
* modify generated WWW/*/makefile and src/chrtrans/makefile to omit include
  from intl directory if it is not used (report by LP) -TD
* add configure test for h_errno, by splitting CF_ERRNO macro and reusing
  test for external data.  Noticed that DECL_ERRNO was not defined/used,
  added that as well.  The h_errno symbol is provided in some network
  libraries, e.g., on SCO and Linux, but may/may not be declared (report
  by BL) -TD
* fix some serious lossage in lookup_reject (LYTraversal.c): memory and
  logic errors.  This (replaced) line is one for the record books:
      frag = strlen(buffer) - 1; /* real length, minus trailing null */
  Previously, this code caused a read before an array boundary as well as
  failing to compare the right number of characters in a pattern (John Bley)
* fix some minor leakage in the cookie jar (John Bley)
* fix up some casts and mode_t types in HTAAProt.c, HTFile.c, LYLocal.c,
  LYUtils.c (John Bley)
1999-05-05 (2.8.2dev.26 - 2.8.2pre.1)
* remove some weird cruft from HTAAUtil.h (yeah, "/home2/luotonen" is a good
  default path) (John Bley)
* correct a buffer overflow in LYDownload.c (reported by John Bley) -TD
* 8bit attribute values are now translated in psrc view (reported by LP) -VH
* trailing ';' now is shown after HTML entities (reported by LP) -VH
* split-up/correct typo in text at top of generated bookmark file -JS, -TD
* allow anchors as input for commands 'g','G','E' -VH
* correct off-by-one error in pointer to filename in DOSPATH configuration for
  LYPathLeaf() -DK
* fix infinite recursion bug in lynx.cfg includes, from dev.25 integration
  (reported by LP) -VH
* implement the following separators in lynx.cfg "include" commands:
  ":" on Unix
  " for " on all OS's -VH
* fixes for LYList.c,  adding title info to the (mostly unused) HTLinkType -KW
* change remaining <banner>'s to <blockquote> in other html files, fix
  a few escapes that tidy (15-apr-99) reports.  Leaving <tab>'s alone for the
  moment because there appears to be no standard equivalent -TD
* change <banner> in lynx-dev.html to <blockquote> since the latter is
  standard, correct IEFT version and supply <p>'s as needed (Karl Eichwalder)
* correct a couple of two documentation inconsistencies in the sources for
  USE_PSRC and -prettysrc (Karl Eichwalder <ke@gnu.franken.de>)
* register free_messages_stack with atexit to fix some statusline leakage,
  explicitly fill out a struct initializer (John Bley)
* fix a few html nits in the docs (John Bley)
* cleanup some gcc -Wundef warnings -TD
* add logic to free_lynx_cfg() to unset environment variables (requested by
  LP) -TD
* modify SafeHTUnEscape() to work with EBCDIC (pg@sweng.stortek.com)
* remove dangling comma in UrlTypes enum (reported by pg@sweng.stortek.com) -TD
* make description of STARTFILE in userdefs.h agree with lynx.cfg -TD
* fix:  newline position when we come from the history stack and cached HText
  is used (say, return from 'p'rint menu), was broken in dev23 -LP
* remove numerous HTMLSetCharacterHandling() calls from getfile(), use single
  call in mainloop instead -LP
* #define PUTS() in LYCookie.c and LYMap.c to make code more readable -LP
* fix:  LYmouse_menu() in LYStrings.c calls popup_choice(), which is #ifdef'd
  out when --disable-menu-options is used (patch by Sergey Svishchev)
* modify generated src/makefile to omit include from intl directory if it is
  not used.  This in turn required fixing a redefinition of gettext on Solaris
  when using cc, since the locale.h file includes Sun's libintl.h file which
  prototypes gettext.  Successfully built/ran using Sun's msgfmt utility, (had
  to manually add -lintl to src/makefile) though the generated message objects
  are incompatible, resulting in a core dump if not reinstalled (unnecessary
  include reported by LP) -TD
* change VMS WWW descrip.mms file to use prefix=all rather than prefix=ansi, so
  that POSIX functions such as 'read()' are linked properly (reported by Andy
  Harper) this is a detail I overlooked in dev.18 -TD
* fixes to compile with SunOS K&R cc -TD
1999-04-27 (2.8.2dev.25)
* updates to INSTALLATION -HN
* undo some redundant dev23 changes, in particular PSRC_TEST in HText_new
  was responsible for a wrong line breaking in -prettysrc mode
  (try "lynx .  -prettysrc" and press "\" to see wrapping with altered
  define).  Also fix Visited Links for internal pages -LP
* restore links in lynx-dev.html to original form, to make redirection work
  properly -TD
* add to MAKEFILE.W32 (untested - suggested by LP) -TD
  * definitions for DISP_PARTIAL;SOURCE_CACHE;USE_PSRC
  * lypretty.obj to the list of objects.
* remove CF_MAKE_INCLUDE from configure script, since it is not needed -TD
* merge WWW/Library/Implementation/CommonMakefile into WWW/.../makefile.in -TD
* corrections/simplification of LYSafeGets(), and remove sizeof(buf) from
  related code in LYCookie.c (analysis by KW) -TD
1999-04-23 (2.8.2dev.24)
* added overlooked WWW/Library/Implementation/makefile.in -TD
1999-04-23 (2.8.2dev.23)
* add/use new function LYSafeGets to replace reads into fixed-size buffers -TD
* change xxxx_URL_TYPE definitions in LYUtils.h to a enum -TD
* use HTSprintf0 in LYCurses.c, LYReadCFG.c -TD
* implement restrictions on options that can be set via the lynx.cfg "include"
  directive -VH
  For example, admins may specify
    include:~/.lynx/colors:COLOR
    include:~/.lynx/keymap:KEYMAP
    include:~/.lynx/viewers:VIEWER
  safely - and be sure that no critical options were altered by those files.
  The syntax is
    include:<filename>[:[<OPTNAME>* ] ]
  More samples:
    include:~/.lynx/rc:COLOR KEYMAP VIEWER SUFFIX
    include:/usr/local/lib/lynx-cfg.part: #all settings can be changed
  The patch does this:
  * It prints warnings to stderr about unknown options specified in the list of
    allowed options in include command.  When 'o'->'lynx.cfg'->'RELOAD THE
    CHANGES' is activated, these warnings are also printed on stderr - so the
    screen will be corrupted if lynx.cfg and included are incorrect.
  * Only options, allowed for a given file are printed in
    'o'->'lynx.cfg'->'RELOAD THE CHANGES'.
  * Fully backward compatible - lines of the form
	include:filename
    will work as they did(i.e., if the list of allowed options is not
    specified, then the included file can use the same set of options, as the
    file that contained that 'include' command).
  * If you wish to allow an included file to
    include others, you must specify 'include' in the list of allowed options.
    Sample:
	  include:~/.lynx/suffixes:INCLUDE SUFFIX
    so that users will be able to use 'include' command in '~/.lynx/suffixes'
    (otherwise included file will be unable to include anything).
  * Option sets are ANDed. If file lynx.cfg contains:
  	  include:/usr/lib/lynx.cfg.0:COLOR SUFFIX VIEWER INCLUDE
    and /usr/lib/lynx.cfg.0 contains
        include:/usr/lib/lynx.cfg.1:SUFFIX VIEWER INCLUDE STARTFILE HELPFILE
    then /usr/lib/lynx.cfg.1 can use the following options:
	SUFFIX VIEWER INCLUDE
* change the STARTFILE description in lynx.cfg to offer the user's home
  directory as an alternative to lynx.browser.org (amended this to reflect
  consensus that l.b.o should be the default) -TD
* move a big chunk of code into print_status_message() -LP
* also add numerous HTProgress messages to LYNXMESSAGES:/ page (but not
  HTReadProgress) -LP
* HTAlert, HTUserMsg and HTInfoMsg statusline messages are now stored in a
  cycled buffer and accessible from the History Page as LYNXMESSAGES:/ link.
  This allows us to decrease the messages delay in lynx.cfg when we feel
  messages too annoying, but have a nice history list for diagnostic purposes.
  Uses a 40-line buffer (suggested by Bela Lubkin) -LP
* fix reloading with HTreparse_document() for LYK_MINIMAL, LYK_HISTORICAL,
  LYK_SOFT_DQUOTES, LYK_SWITCH_DTD mainloop events (hope we work around replies
  from POST properly) -LP
* elaborate description in Lynx_users_guide.html for "comments" (Michael
  Sobolev <mss@transas.com>)
* fix --disable-trace (by making the ifdef's directly depend on NO_LYNX_TRACE
  rather than DEBUG), chop more unneeded #includes (John Bley)
* combine WWW/Library/unix and WWW/Library/Implementation to simplify make
  dependencies, drop Makefile.old -TD
* fixes for DOS port - DK
  (a) When exiting with interrupt, the message was printed in binary mode,
      leaving the cursor in the middle of the screen
  (b) In the PDCurses build, the keypad enter key only worked when LYK_ACTIVATE
      was utilized, but not in GOTOLINK or GOTOPAGE.  This maps the keypad
      enter to '\n', so it works in all situations, but keypad enter will no
      longer be able to be mapped separately.  CTRL-PADENTER and ALT-PADENTER
      can still be separately mapped.
* various changes to userdefs.h and lynx.cfg explanatory text -KW
* corrected placement of "partial_thres" code in LYrcFile.c, removed an unused
  prototype in LYUtils.h -KW
* add a note about LYNX_SAVE_SPACE to INSTALLATION -JS
* remove docs/*.old (request by HN) -TD
* update INSTALLATION notes for DJGPP with PDCurses; a suggested patch is
  no longer applicable -DK
* fixes for control/C and control/BREAK handling on DJGPP -DK
* tweak in HTML_start_element case HTML_DT:  prevent generation of empty line
  between multiple simple DT elements without intervening DD elements (Debian
  bug #3846) -KW
* add list of downloaders to lynx_help_main.html -PW
* add attributes for {bq,blockquote}.cite,{frame,iframe,img}.longdesc,
  {table,td}.background, td.{height,width} -VH
* define DISP_PARTIAL for VMS (request by Andy Harper) -TD
* include <unistd.h> for DEC C, to prototype sleep() and alarm().  Ifdef'd
  include of HTString.h by HTUtils.h, but keep include as general rule for
  making headers standalone (report by Andy Harper) -TD
* modified LYrcFile.c to avoid putting '#' characters at the beginning of
  lines, since that confuses VAX C (report by Tony Bolton) -TD
* fix redefinition of h_errno (report by Tony Bolton) -TD
* ifdef'd print_local_dir in HTFile.c since this function does not compile on
  VMS (report by Andy Harper, Tony Bolton) -TD
* fix reload_read_cfg() to avoid persistent cookies mode changing at run time;
  reload printers list, downloaders list, environments - as expected - LP
* fixes for SOURCE_CACHE!=NONE mode, trying to accommodate HTreparse_document()
  for mainloop() events:
  - add/use flag "from_source_cache" for better mainloop maintenance
  - add partial display mode for HTreparse_document() operations
  - add warning when the reparsed document may lose its forms content
  - fix options menu stuff to use HTreparse_document() when possible - LP
* fix exit from postoptions() when the reloaded document was in source mode -LP
* update flags to correct behavior with SOURCE_CACHE!=NONE:  the length of the
  re-rendered text may vary so the scrolling down is broken (especially nice
  when switching to source).  ("more" updated, "lines_in_file" inlined) -LP
* use configure script macro CF_CHECK_CACHE to compile-in Unix SYSTEM_NAME,
  for info screen (request by LP) -TD
* minor fixes for uncaching document, other items missed in dev.22 -LP
* merge the two versions of start_curses() function -LP
* add -DSOURCE_CACHE and -DUSE_PSRC to djgpp makefiles -LP
* add a few words for CHANGES and INSTALLATION -LP
* add a configure option for prettysrc -TD
* separate ifdef's for prettysrc from color-style -LP
* fix for -prettysrc:  when pressing '\' on non-local files, the prettysrc view
  is shown, but there is no way out of this mode -VH
* change all PUTS() with a string of length 1 to PUTC(), fix a uid_t/int
  assumption in LYLocal.c, remove some unneeded #includes, remove some spurious
  semicolons.  (John Bley)
* fix typo in configure --help for --disable-direct (reported by LV) -TD
* update user's guide and lynx.cfg descriptions of jumps files - PW
* fixes for related bugs tweaked by going to an internal page while viewing
  source, and a few blurbs in the documentation -DSB
* fixes to separate RAW_MODE from internal variable LYRawMode by adding new
  variable LYUseDefaultRawMode -LP
* add a missing null-pointer check in expand_tiname() (from report by KW) -TD
1999-04-13 (2.8.2dev.22)
* correct a missing include for LYLeaks.h in UCAuto.c -TD
* implement HTML source caching.  In this implementation, each document kept in
  cache has associated with it a temporary file containing the HTML source for
  the document (well, not all of them -- only those using the HTTP protocol, on
  the premise that file:// documents are probably local and ftp:// documents
  are probably not HTML).  The temporary file is deleted when the document is
  uncached.  For certain operations, instead of reloading the document via
  HTLoad<mumble>(), the source file is reparsed with HTParseFile().  The cached
  document also remembers certain parser settings (screen size, historical vs.
  minimal vs.  valid comment parsing, and the like), and is regenerated from
  source if it is fetched out of cache under different settings.  This behavior
  is selectable by a configure option --enable-source-cache and by a lynx.cfg
  option SOURCE_CACHE; I didn't add a command-line argument or an options menu
  entry, as this didn't seem to be the sort of thing one would want to change
  You had to challenge me, didn't you?  ;) Okay, after some pfutzing around
  with HTChunks, I think I've got a working version of memory caching of
  source.  The SOURCE_CACHE option now has settings FILE, MEMORY and NONE, with
  the obvious meanings, defaulting to NONE.  (DSB - Scott Bigham
  <dsb@cs.duke.edu>)
* amend HTConfirmDefault() logic so that a second character will cause the
  default response to be returned, e.g,. so that pressing "qq" will make
  Lynx exit (reported by John Bley) - TD
* change the PUTS("\n") calls in HTFile.c to PUTC('\n') since that would be
  a little more efficient (noted by KW) - TD
* minor cleanup: remove obsolete parameters from command-line parsing functions
  in LYMain.c, add newlines in HTFile.c for readability of html - LP
* change default STARTFILE to the current directory, "." - PW
* revised lynx-dev.html - PW
* lynx.cfg and further included cfg files can be edited from LYNXCFG:/ page
  with the default editor and changes can be activated for the same lynx
  session.  NOT allowed for restricted users (LYRestricted) and occasionally
  for user mode other than ADVANCED.  This is an *experimental* code
  (reload_read_cfg() in LYMain.c - more work required):  currently command-line
  switches may be lost when overridden by lynx.cfg changes, file paths like
  lynx_save_space and LYCookieFile should not be changed (unwanted results) -LP
* retest PARSE_DEBUG ifdef's (LYMain.c, LYReadCFG.c), minor corrections
  but found no specific reason for LP's problem with tables, except possibly
  different effect from "&(value)" versus "(&value)" - TD
* fix the problem of reading included lynx.cfg files by changing LYReadCFG.c
  table signature (now it is more close to one in LYMain.c).  The problem was
  the ignoring of *some* values got from the included cfg file (at least for
  DJGPP2.02/gcc2.8.1 build).  Probably we calculate the addresses of variables
  on a later stage now.  - LP
* DOSPATH changes: local directory style now configurable from lynx.cfg
  (LONG_LIST defined).  Unlike UNIX it is not "ls -l" by default
  but a more compact form (date and size present, from lynx.cfg example) - LP
* cookies:  domains now match case insensitively (reported by Paul Wagner
  <paul.wagner@mci.com>) - LP
* correct an ifdef in LYGetFile.c for config-page - LP
* reading of long local directories now benefits from partial mode and fully
  interruptible.  Split out print_local_dir() function from HTLoadFile() - LP
* behave sanely if NSL_FORK fork() fails -BL
* NSL_FORK try for dns_patience *seconds*, not dns_patience select() calls,
  which might have been shortened by keyboard input  -BL
* fix some screwy comment indentation -BL
* add section on editing TEXTAREA to user's guide - PW
* add a null-pointer check in LYCookie.c (Bill Nottingham <notting@redhat.com>)
* revise changes ifdef'ing LY_FIND_LEAKS by making atexit a no-op function
  since the DOS port depends on atexit to keep the DOS BREAK function properly
  set on exit.  Put back atexit, and ifdef's each place where atexit isn't
  needed except when finding leaks - DK
* modify LYMain.c on DOS, fixing the determination of BREAK status to be
  independent of SLANG or PDCurses - DK
* spawn a new function, www_user_search_internals, to begin canceling the
  effects of cut-n-paste coding in www_user_search.  The body of
  www_user_search_internals used to be duplicated at two points in
  www_user_search.  See comment in GridText.c for more details.  (John Bley)
* big pile of unneeded #includes removed (John Bley)
* remove obsolete files from the distribution (John Bley)
  WWW/Library/Implementation/HTWriter.*
* one malloc check, fix --disable-ftp (John Bley)
* fixes for compiler warnings when building for OpenVMS 6.2 using DEC C and the
  SOCKETSHR library (reported by Andy Harper) - TD
* add cpp -H option for HPUX bundled C compiler, which otherwise does not
  have enough symbol table space (reported by JS).  Also, modify ifdef's
  for <stdarg.h> vs <varargs.h> to avoid including the former when ANSI_VARARGS
  is not defined since HPUX had a broken <stdarg.h> - TD
* changed OMIT_SCN_KEEPING ifdef to 0 (inactive) in LYCurses.c and in HTML.c,
  still enabling the Style_className:HTML.c keeping and making lynx with lss
  slightly slower than it could be (though faster then dev21).  If somebody
  wishes to fix a bug, here is a description:  If contents of some tag that has
  corresponding color style occupies more than 2 screens, after navigating to
  the page, on which the content of that block starts, and then pressing PGDN
  PGDN PGUP, the effect (color style) of that tag will be lost.  The same
  (loosing style) happens when jumping to the anchor that is in such block and
  is located not on the 1st page.  IMO this is something with style stack.  If
  this will be fixed, then keeping of Style_className:HTML.c can be omitted
  again -VH
* fixed the bug in lynx with lss support -when displaying html pieces such as
  <b> A <b> B </b> C </b>, only 'AB' was drawn in style corresponding to <b>
  -VH
* added HTML source syntax highlighting (when option -prettysrc that is added
  is given to lynx). It's available for lynx compiled with and without lss
  support (it can be much more beautiful when compiled with lss support - read
  lynx.cfg for description). The code is ifdef'ed with USE_PSRC.
  This functionality coexists with old source view and with -preparsed logic
  (ie different commandline options make source view logic different) -VH
* HTChunkPutc was inlined in SGML.c for better performance -VH
* keeping of Style_className was omitted in HTML.c to increase performance of
  lynx compiled with lss support -VH
* performance of lynx compiled with lss support is increased ~ by 15-20% for
  normal documents, and by up to 50% for documents with a lot of tags VH
* fixed bug in lynx compiled with lss support  that caused it to load local CSS
  stylesheets - lynx didn't understand their syntax so it was exiting VH
* added type information for attributes in HTMLDTD.c (it's used in source
  syntax highlighting mode) VH
* sample .lss files are updated to support source syntax highlighting VH
1999-03-30 (2.8.2dev.21)
* disable LYatexit if memory-leak testing is not configured.
* fixes for unhighlighting problems with color-style support (Vlad Harchev)
* remove '(default: on)' and '(default: off)' strings from configure script
  help message (much lynx-dev discussion) - TD
* remove outdated link to the WebTechs HTML Validation Service from help menu
  and change link to more suitable location for rfc1945 - PW
* correct logic of --disable-full-paths configure option (reported by Georg
  Schwarz) - TD
* fix problems building on OpenVMS with DECC 6.2 (reported by Andy Harper
  <Andy.Harper@kcl.ac.uk>)
  + remove 'DEBUG' definition from build scripts since it is defined in
    the source code.
  + turn off code that tries to use getpwuid(), by defining NOUSERS, since
    those functions are not present on VMS.
  + provide a dummy location for h_errno for systems without that symbol.
  + correct string syntax in VMSexit function
  + ifdef'd use of lynx_version_putenv_command in LYMain.c
  + correct spurious parenthesis in mailform function
  + correct missing COPY_PATH definition for LYUtils.c
* check for 'z' user interrupt in HTLoadHTTP before setting up the output
  stream.  This avoids doing unnecessary work, including possible creation of a
  new HText structure that most likely is never displayed but still pushes
  another document out of the.  cache.  Most commonly this occurs when a HTTP
  error response is received and the user presses 'z' while the resulting alert
  message is shown - KW
* fix of HTUnEscapeSome in HTParse.c for non-ASCII - KW, PG
* tidy up around ed_offset initialization in GridText.c - KED
  (the patch as given did not compile on a non-ANSI compiler because it used
  aggregate initialization - TD)
* add samples/mild-colors.lss (Vlad Harchev)
* add samples/blue-background.lss (from Sergey Svishchev <svs@ropnet.ru>)
* documentation updates for INSTALLATION and PROBLEMS - PW
* use HTConfirm and HTConfirmDefault to gettext'ify CONFIRM_BOOKMARK_DELETE,
  CONFIRM_COMMENT, CONFIRM_LONG_PAGE_PRINT, CONFIRM_LONG_SCREEN_PRINT,
  CONFIRM_MAIL_SOURCE_PREPARSED, CONFIRM_MAIN_SCREEN, FILE_EXISTS_HPROMPT,
  FILE_EXISTS_OPROMPT, NO_OWNER_USE, PREV_DOC_QUERY, REALLY_EXIT_N,
  REALLY_EXIT_Y, REALLY_QUIT_N, REALLY_QUIT_Y (based on report by LP) - TD
* at LYNXCFG:/ page, add links for every included configuration file so we can
  read and edit them (no, currently the changes will be active the next session
  only.  Minor reorganization of LYMain.c done, more required) - LP
* correct test/spaces.html - it should not be in a <PRE> mode by default - LP
* undo recent &emsp; changes so it is a single space as before (suggested by
  KW) - LP
* add ETag anchor element (currently not used, only for information) - LP
* assign LYNXCFG:/ and LYNXCOMPILEOPTS:/ for internal pages of parsed lynx.cfg
  and compile-time info.  Now we will not see a temp file link name in a
  statusline in advanced mode, also kill overhead since pages created only when
  really accessed - LP
* form-based options menu:  the bug described in 1999-03-17 changes now finally
  fixed - LP
* fix expanding entities for x-transparent display charset
  (was broken from 1999-03-04 changes) - LP
* trimmed trailing blanks from *.tbl, fixed chrtrans/def7_uni.tbl and
  chrtrans/viscii_uni.tbl, ensure that it produces correct result - TD
* chrtrans/def7_uni.tbl - entries with trailing spaces now explicitly enclosed
  in quotes to avoid problems with integrating the patches sent by e-mail,
  more comments added - LP
* attempt to implement --disable-ftp (John Bley)
* fix tiny memory leak in HTAAUtil.c (John Bley)
* chop useless #includes from LYHash.c, LYExtern.c, LYCurses.h (John Bley)
* --disable-news was also disabling ftp, --disable-finger without
  --disable-gopher wasn't right (John Bley)
* remove a duplicate #include from HTFTP.c (John Bley)
* remove several obsolete files from the source distribution (John Bley)
  WWW/Library/Implementation/HTAAServ.*
  WWW/Library/Implementation/HTAAFile.*
  WWW/Library/Implementation/HTAuth.*
  WWW/Library/Implementation/HTACL.*
  WWW/Library/Implementation/HTPasswd.*
  WWW/Library/Implementation/HTHistory.*
* --disable-partial wasn't compiling because of a suppressed #include, replace
  one more free() with FREE() (John Bley)
* correct typo LIsListpageTitle vs LYIsListpageTitle
  (reported by Artur Frysiak <wiget@usa.net> and KED)
* don't append sed expression to help_files.sed if the $(COMPRESS_EXT)
  variable is empty - TD
1999-03-17 (2.8.2dev.20)
* protect a couple of spaces with quotes in def7_uni.tbl (suggested by KW) - TD
* add ifdef's for NO_RULES to HTAAServ.c - HN
* add configure --disable-news option - JS
* add configure --disable-finger option - JS
* add malloc checks, remove some #includes that don't need to exist, and
  cleanup where somebody decided to waste instructions setting fields to 0 when
  he already memset()ed the whole struct to 0 (John Bley).
* remove obsolete/unmaintained SHORT_NAMES ifdef's (John Bley).
* add/use LYTrimStartfile function (suggested by LP) - TD
* correct missing null-pointer check in add_printer_to_list function (forwarded
  by BJP from Debian bug-reports) - TD
* add notes about $CC variable to INSTALLATION and PROBLEMS - JS, PW
* tweak for TABLE formatting: break line at </TR> end tag (don't wait
  for next <TR> start tag), effective in SortaSGML mode only - KW
* lots of color style changes, only effective if compiled with USE_COLOR_STYLE;
  together they seem to make color styles act much more reliably and
  consistently - KW
  - Moved some extern definitions and declarations.
  - Made extra handling for LINK REL (or TITLE) attributes consistent
    with example lynx.lss file.
  - More complete (and hopefully more consistent) setting of "normal"
    attributes, especially background color, on screen refresh and after
    statusline messages.  Set normal attributes for statusline prompts.
  - Various other small tweaks, mostly to not lose color changes in a
    document and to avoid color leaking.
  - Attributes for highlighting WHEREIS search targets can be controlled
    by setting style for "whereis" in lynx.lss.
  - Allow mono attribute field in lynx.lss to be a combination of several
    attributes separated by '+' characters.
  - Changes of example lynx.lss file: more logical ordering, added some
    comments, document new stuff.  Changed a few styles for demonstration
    purposes or because text was really hard to read.
* apply color styles to HTML source display, using the same methods as
  for displaying the rendered version.  This is done if and only if
  the -preparsed flag is used (and lynx is compiled with -DUSE_COLOR_STYLE,
  of course).  Please remember that the source displayed with -preparsed
  is *not* the same as the original text/html document, it has been
  mangled by lynx (as the name implies) and may itself not be a valid
  HTML document even if the original was - KW
* changed some slightly suspicious casts in HText_endAnchor's casting hell:
  prefer to cast a line's size element to (int), rather than various int
  variables to (unsigned) - KW
* remove some unnecessary use of dynamic buffers where there is no apparent
  benefit for using them, for the sake of performance or to avoid a minor
  memory leak - KW
* stuffed small memory leak (MultipartContentType) - KW
* absorb 'len' parameter into logic of argncmp, so it still achieves its
  purpose of comparing prefixes of options without undue maintenance effort -TD
* retain logic that uses final URL on command-line (request by KW) - TD
* add/use new functions argcmp and argncmp to allow the use of '--' prefix as
  well as '-' for commandline options.  This means that '-localhost' and
  '--localhost' mean the same thing for lynx.  If EXTENDED_OPTION_LOGIC is
  defined then the extended commandline option logic will be used.  It means
  that '--' will be accepted and will be treated as an end of options.
  Anything after it will be treated as URL even if begins with '-' or '--'
  (Vlad Harchev)
* correct some typos in docs and in scripts (Vlad Harchev <hvv@hippo.ru>)
* modify generated sed script to handle special case of alt_edit_help.html,
  which was being rendered in --enable-gzip-help as alt_edit_help.html.gz.gz
  (reported by KED) - TD
* modify lynx_help/help_files.txt to update links to gzip'd versions of
  alt_edit_help.html, environments.html, test_display.html - KED
* tweak for SGML_LITTERAL (sic) parsing, so that the first nonmatching
  character after the beginning of a putative end tag goes through character
  translation - KW
* add some more pieces of info (if available) to '=' page in advanced user
  mode.  Also show mode as "source" instead of "normal" if viewing SOURCE, in
  all user modes - KW
* minor FASTBACKW_LINK / FASTFORW_LINK tweaks - KW
* removed documentation for nonimplemented chargen URLs - KW
* remove num_n256 hack introduced in dev18 UCDomap.* - LP
* forms-based options menu: fix reloading of previous document *only* when
  necessary (was always, since early forms-based options menu days).  Still
  have a bug - while submitting the options menu lynx reload menu again, but
  this is much faster to load small local file twice than fetch previous
  (possible large) document over the net.  - LP
* &mdash; (&#x2014) now display as "--" (popular requests) - LP
* &emsp; are now displayed as two &ensp; (popular requests),
  previous definition of HT_EM_SPACE now renamed to HT_EN_SPACE - LP
* minor tweaks in postoptions(), new flag added - LP
* minor changes to make this build with SunOS K&R cc - TD
* entities.h:  clean HTML4.0 entities table added, it is #ifdef'ed with
  ENTITIES_HTML40_ONLY (may be useful for page validation), file entities.h
  moved to src/chrtrans directory - LP
* save few KB of static memory by storing unicodes as 'u16' (was 'long') - LP
* trace log toggle now really interruptible - LP
* move entities.h to src/chrtrans - LP
* fix display of -help output: (on/off) info was wrong for UNSET_ARG case - LP
* ifdef'd recent changes to LYPrint.c to build with djgpp - LP
* remove redundant -DDEBUG from djgpp makefiles - LP
* remove nonstandard ISO-9945-2 - LP
* eliminate a duplicate --enable-included-msgs in configure --help, (reported
  by LV) - TD
* redefine LY_BOLD_START_CHAR for EBCDIC platforms to avoid conflict, adjust
  IsSpecialAttrChar() to take this into account - PG
* rewrite LYKeymapCodes with leading commas to avoid accidental/illegal
  use of trailing comma in an enum list - PG
* modify UCdomap.h to avoid gcc-specific construct using cast to struct of
  data aggregate - PG
* modify makefiles to allow .c.i rule to work with --srcdir - PG
* add a rule to makefile.in to generate patches - PG
* correction to LYCookie.c, to get it to eat all cookies (reported by LV) - BJP
* corrections/updates to entities.h (Jacob Poon):
  HTML 4.0 compliance:
  - Added support for Euro currency symbol.
  - Fixed duplicated &loz; definitions.
  Fixes:
  - Fixed some typos in the old references. (fixed: b.delta)
* update follow_help.html for LE's 123g changes - PW
* further correction to 123g logic - LE
1999-03-04 (2.8.2dev.19)
* forgot to update PRCS when renaming src/chrtrans/iso9945uni.tbl - TD
1999-03-04 (2.8.2dev.18)
* modify configure script to recover if the intl and po directories are
  missing, allow experimentation with --enable-nls --disable-included-msgs
  --without-included-gettext options (request by HN) - TD
* add sanity-check for EBCDIC FixCharacters() in LYMain.c - PG
* ifdef'd the ADDRLIST code with EXP_ADDRLIST_PAGE, making this available as
  a configure script option --enable-addrlist-page - TD
* create a new command called ADDRLIST, which behaves exactly the same as LIST,
  but which *should* always show only the URL's.  Rather than make it a config
  option (which would have taken me quite a bit longer to do), I've bound it to
  the "A" key (that's a capital "A").  Why not "L" you ask?  Because of the "vi
  keys" option, whereby "l" is used for cursor movement, and "L" stays reserved
  for L(ist) - KED
* change the LYK_xxx keymap definitions to an enum, to simplify ifdef's - TD
* add configure options --disable-gopher, to remove GOPHER code, and
  --disable-trace to remove TRACE code - JS
* modify trace log header to always inform us if anonymous restrictions are
  set - LP
* chartrans: old-style declarations of charsets which do not have Unicode
  tables (CJK, x-transparent, also UTF-8) now moved from LYCharSets.c to
  UCdomap.h and now included with UCInit() in UCdomap.c in a standard way - LP
  (Please re-test CJK and UTF-8)
* add configure --enable-libjs option (Lalo Martins <lalo@webcom.com>)
* add checks for some more LINK tags as listed in "6.12 Link types" of the HTML
  4.0 Specification (Masayasu Ishikawa <mimasa@isoternet.org>)
* changed the effect of some LINK tags with REL attribute of a very relative
  character (Up, Next, Prev, ...) on titles as they appear e.g.  on the LIST
  page:  the title of the target HTParentAnchor isn't being set when such a
  LINK tag is parsed, but the relation is now stored as a property of the
  link itself rather than its destination.  The LIST page shows the relation
  as additional info, not superseding a URL or title string obtained
  otherwise - KW
* move commands in top-level makefile.in which clean *.rej and *.orig from
  'distclean' rule to 'maintainer-clean', make distinct from the @SRCDIR_CLEAN@
  substitution which is intended for use with the configure --srcdir option
  (from reports by Glenn E.  Thobe <thobe@lafn.org> and BL) - TD
* correct LYRemoveTemp() to close file before attempting to remove it; else
  the remove fails on some platforms, e.g., DOS/Windows (report by KW) - TD
* improved documentation for the new cookie options, e.g,.
  COOKIE_ACCEPT_DOMAINS, in lynx.cfg - BJP
* fix some memory leaks in LYCookie.c - BJP
* modify 123g (and similar movement) commands to allow for relative links,
  e.g., by using a '+' or '-' after the 'g' - LE
* modify help_files.sed to include '$', making regular expressions work for
  HP-UX (Jens Schmalzing <jens@stat.physik.uni-muenchen.de>)
* add a comment to aclocal.m4 to show where patches for autoconf, needed for
  this configure script, can be found - JS
* add toggling trace log on/off in partial mode, when the downloading is still
  in progress - LP
* more consistent docs for debugging of invalidly nested HTML:  important trace
  messages from actions on invalid tags now have '***' prefix such as "SGML:
  ...  ***ignored" (well:  illegal, forced, assumed, etc.), -preparsed mode now
  better documented - LP
* minor code cleanup: remove redundant includes, fill in 0's for some static
  data initialization (John Bley).
* add 'joe' editor, and variants, to list of those editors that are assumed to
  position the file to a given line number using the "+line" command-line
  option - IC
* remove redundant "(y/n)" substrings from LYMessages_en.h - LV
* add new command named GROWTEXTAREA which adds 5 new blank lines to the bottom
  of a TEXTAREA when executed.  It does not have a default binding, so you need
  to add a KEYMAP for it in your lynx.cfg.  The number of lines added is fixed
  by a #define, but 5 seems to be a "reasonable" increment to use - KED
* add new command named INSERTFILE, which (obviously) inserts a file's contents
  into a TEXTAREA, just above the line the cursor is on when invoked (which
  means you cannot insert a file *below* the final existing TEXTAREA line ...
  but see 1) and 3) for easy ways to over- come this limitation).  It too, has
  no default binding, so a KEYMAP entry is also needed for it - KED
* by default, when the cursor is on the last line of a TEXTAREA, if you hit the
  ENTER key, a new line will be added to the TEXTAREA, with the cursor
  positioned on it.  If that should happen at the bottom of the screen, a
  DOWN_HALF scroll operation is (effectively) performed - KED
* ifdef'd this feature (since at least one person objected to this automatic
  behavior when it was discussed awhile back - BL?), for easy disabling (and to
  make adding a ./configure option easier).  The symbol is AUTOGROW is
  #define'd in LYMainLoop.h - KED
* added an ifdef for the code that causes the external editor to be
  invoked "automatically" on the TEXTAREA contents when ^Ve (or whatever
  the EDIT binding is), rather than attempting to invoke it on the .html
  source file.  This should allow adding a ./configure option to control
  this behavior, until we come up with a different binding/mechanism to
  do the job, that we can all agree on.  The symbol AUTOEXTEDIT is also
  #define'd in LYMainLoop.h.   The command EDITTEXTAREA is still available
  for separate KEYMAP binding, per KW's suggestion - KED
* check the range of chars between 0x80 and LYlowest_eightbit[current_char_set]
  for validity against the charset in use.  If such chars are detected in
  edited or inserted data, a "." char is substituted for them, as with normal
  control chars.  (Suggested by LP) - KED
* added KW's LYCloseTempFP bugfix - KED
* add/use function GetFileName(), e.g., by INSERTFILE.  It is fairly general
  purpose, and can be used whenever the name of an existing file needs to be
  input.  It uses the same mechanism for filename expansion and "history" as
  does the PRINT function - KED
* reorganized a lot of the code into subroutines to provide for 1) and 2);
  still need to do a bit more cleanup of some other (nearly) common code - KED
* rename iso9945_uni.tbl to iso9945uni.tbl to accommodate 'make' programs on
  old systems (such as CLIX 3.1) whose suffix rules fail for filenames longer
  than 14 characters - TD
* change VMS WWW build-script to use prefix=all rather than prefix=ansi,
  so that POSIX functions such as 'stat()' are linked properly (reported by
  Morris D Cox <coxmd@appstate.edu>) - TD
* modify configure macro CF_EBCDIC to avoid using #error, since that is not
  recognized by all compilers - TD
* include <sys/types.h> in CF_INET_ADDR macro, to accommodate systems which
  require that to compile test program with the socket.h, other network
  headers - TD
* removed a cast in free_lynx_cfg, on FREE's argument, which caused some
  compilers to report that an rvalue was being modified (reported by PW) - TD
1999-02-16 (2.8.2dev.17)
* modify LYReadCFG.c to avoid duplicating data for cookies - BJP
* modify HTConfirm to use gettext values for yes/no.  Use HTConfirm in a few
  more places, though completing this will require more work - TD
* add note about resolv library to PROBLEMS - PW
* minor clarification about DOS/Windows binaries in README - PW
* modify ./makefile.in so that portions which are commented-out will be done
  without a leading tab, since that confuses the make program on Digital Unix
  3.2 - TD
* Unix: Don't accept HOME variable as valid if it does not begin with
  a slash - KW
* changed HTGetCharacter to be 8-bit clean, it could not distinguish between a
  character value 255 and EOF.  Changes affect several protocols:  nntp,
  gopher, finger, ftp.  Most notably, news articles containing byte value 255
  could not be completely read - KW
* removed a memory leak in HTFTP.c for some directory data, added a few gettext
  calls - KW
* added ability to show file type description in local Unix directory listings:
  new format codes for use in LIST_FORMAT %t, %T, they are not used by default
  - KW
* modify "clean" makefile rule to allow for FreeBSD, which generates core
  files such as lynx.core - KED, TD
* correct sign-extension when converting characters after edit of TEXTAREA
  (upper-128 characters were being translated to dots, reported by IC) - KED
* worked with some pathological/boundary-case pages, and fixed some some edges
  that could fail (eg, last line of document is also last line of a TEXTAREA,
  and lines are being added; page containing *only* a one-line TEXTAREA field;
  etc).  While it was unlikely one would run into such beasts in real life,
  they all work correctly now.  Thanks to Greg Marr and Serge Munhov for
  providing some very basic pages that I was able to easily modify for various
  test cases - KED
* added a few flags to the TextAnchor and HTLine struct's, to indicate an
  expansion line.  These were added to allow for line deletion when a TEXTAREA
  is "reset" or shrinks (when we get around to tackling those tasks) - KED
* the editor's cursor is now positioned on the same line in the edit file, as
  it was on when the editor was invoked (relative to the beginning of the
  TEXTAREA).  At least for those editors that lynx knows support initial
  positioning (emacs, vi, pico, jove, and jed for non-VMS platforms; sedt for
  VMS) - KED
* cleaned up and corrected a few comments; simplified a few small bits of
  code - KED
* added cookie_domain_flags enum to LYCookie.h, usage should be apparent with
  patch applied - BJP
* updated free_lynx_globals() for cookie variables - BJP
* replaced cookie_add_acceptlist, cookie_add_rejectlist and
  cookie_set_invcheck functions with cookie_domain_flag_set - BJP
* saved a bit of memory by dropping useless pointer memory initialization
  (exactly WHAT was I thinking?)  - BJP
* changed LYrcFile.c, LYReadCFG.c to call cookie_domain_flag_set  - BJP
* new lynxkeycode BACKTAB_KEY with value 0x10F.  DO_NOTHING is and shall remain
  0x10E, as documented in lynx.cfg.  Moved MOUSE_KEY out of the way - does it
  need to be in the tables at all?  BACKTAB_KEY will be recognized if the
  (n)curses keypad() input handling returns KEY_BTAB, which happens if the
  terminal description has the right kB or kcbt capability string and the
  terminal actually generates that string (often "^[[Z", generated for
  shift+tab).  May also work with lynx-keymaps mechanism.  Not tested with
  slang, maybe this has to be added to some more of the various tables in
  LYStrings.c - KW
* new user-visible key commands FASTFORW_LINK and FASTBACKW_LINK, with
  lynxactionscodes LYK_FASTFORW_LINK and LYK_FASTBACKW_LINK.  By default mapped
  from <tab> key (^I) and new BACKTAB_KEY, respectively.  Previously <tab> was
  mapped from NEXT_LINK, which has some special handling if the invoking key
  was <tab> (and if FASTTAB was defined in LYMainLoop.c, which was the case by
  default).  The old behavior of <tab> is still available if it is mapped with
  KEYMAP to NEXT_LINK in lynx.cfg - KW
* these commands always go to a previous (or next) link if there is one,
  and skip multiple lines that are part of the same textarea - KW
* recognize the new key actions also during partial file display, for some
  roughly corresponding movement - KW
* new lynxeditactioncode LYE_FORM_PASS, to allow any lynxkeycode to end the
  editing of a form field and be passed up to the caller - it will then
  normally be mapped to a lynxactioncode.  LYE_FORM_PASS keys are generally
  ignored in non-forms line editing.  This is used for BACKTAB_KEY, as well as
  several other keys that were previously handled specially in form_getstr - KW
* extended the maps in LYEditmap.c to cover the same range of lynxkeycodes as
  the LYKeymap.c tables.  Yes, this uses more space, but the tables need to be
  consistent - KW
* map lynxkeycode 0x00 to LYK_DO_NOTHING, as lynx.cfg said all the time - KW
* some tweaks of displayed strings in 'K'ey Map page.  Don't show CHANGE_LINK
  binding if mouse not enabled (it may not be useful even when -use_mouse is
  on) - KW
* function expand_substring used with NCURSES for user-defined mapping keysyms
  to byte sequences was parsing the "^(...)" construct wrong - KW
* other small tweaks in key handling code - KW
* changes to lynx.cfg to better reflect reality - KW
* terminology note:  lynxkeycode = what's between the colons in lynx.cfg
  KEYMAP:...:..., lynxactioncode = LYK_* code for what's right of the second
  colon, lynxeditactioncode = what's assigned in LYEditmap.c (and which may
  differ between lineedit_mode Default Binding and alternative bindings) - KW
* formatting tweak in HTML.c for <DD> not preceded by <DT>:  Don't use wrong
  indentation in that case - KW
* changes from DK for DOS up to 1999-02-14 - KW
* minor documentation tweaks - LP
* replace most uses of free with FREE (John Bley).
* correct HTEndParam so that if fewer command-parameters are given than
  expected, we still terminate the command properly (reported by
  Michael Warner) - TD
1999-02-08 (2.8.2dev.16)
* minor documentation tweaks for EDITTEXTAREA - LP
* correct uninitialized buffer variable in send_file_to_mail() which caused
  core dump (reported by LV) - KW
* recognize Subject and Message-Id in embedded comments in HTML documents, in
  the form generated by MHonArc for mailing list archives (including lynx-dev).
  Use these to generate a default Subject and an In-Reply-To header (currently
  not for VMS) when replying by mail (sending a 'C'omment, or following a
  mailto link) from such a page.  The old methods to get a title other than the
  fallback (the URL) still are there and have precedence, by in reality seem to
  apply very rarely.  If no suitable comment strings are found or they are
  regarded as invalid (bad characters, not exactly right format) they are not
  used, and the fallback (URL as Subject, no In-Reply-To) applies - KW
* use the Message-Id of a news article to generate a References header when
  posting a reply.  Lynx's new article listing doesn't understand threading,
  but this is nicer for other newsreader that do.  The References header of the
  referenced article is not used, so there will be only one message-id in the
  generated References header, but this is better than nothing.  The article's
  message-id is appended as a parameter to the URL of the generated newsreply
  link, in the form ";ref=...", so this extends the syntax of Lynx's newsreply:
  URL scheme.  Nothing should have changed for snews:  and other s-versions of
  the various URL schemes for news access - KW
* Message-Id and Subject of a news article are also made available for replying
  by mail - KW
* LYNews.c: Don't post a message that is empty or has only '>'-quoted text - KW
* HTNews.c:  got rid of some suspicious fixed length buffers.  Fixed minor
  memory leaks.  Added abort of the target stream which was missing in some
  cases.  Create mailto:  hrefs in URL-escaped form if necessary, they will be
  unescaped in LYMail.c.  (News URLs still don't use escaping the right way,
  especially for message-ids.) Recognize special meaning of "Followup-to:
  poster" (don't treat "poster" as a newsgroup name).  Other small tweaks - KW
* add samples/cernrules.txt - KW
* except for DJGPP, move lookup code for domain names (not dotted-quad IP
  addresses) from HTParseInet into a new function:  LYGetHostByName acts like
  the normal gethostbyname, but includes the NSL_FORK logic.  Interruption is
  indicated in global variable lynx_nsl_status - KW
* use LYGetHostByName instead of HTParseInet for URL guessing - KW
* select on tty file descriptor in NSL_FORK loop also if compiled with slang.
  This should make 'z' during lookup more responsive - KW
* don't compile in the rules implementation code if NO_RULES is defined
  (suggested by BL) - KW
* fix special case of EDITTEXTAREA where the returned file is empty - BJP
* write to .lynxrc values for COOKIE_ACCEPT_DOMAINS and COOKIE_REJECT_DOMAIN
  when options screen is used - BJP
* add lynx.cfg and .lynxrc support for a few new options:
    COOKIE_STRICT_INVALID_DOMAINS,
    COOKIE_LOOSE_INVALID_DOMAINS,
    COOKIE_QUERY_INVALID_DOMAINS
  They're the same sort as COOKIE_ACCEPT_DOMAINS, comma-delimited lists - BJP
* modify LYOpenTemp() to report unusual errors, i.e., other than if the
  temporary file could not be created because it already exists - PG
* more fixes to CF_INET_ADDR - TD
* modify README to indicate where win32 binaries are found - JS
* add chrtrans tables for Ukrainian Cyrillic: koi8-u, cp866u, iso-9945-2
  (patch by Serhii Hlodin <hlodin@lutsk.bank.gov.ua>)
* patch for TEXTAREA edit feature - KED
  1. Handles the renumbering of link number tags [nnn], when the tag itself is
     split across two lines (see below).
  2. Scrolling down, going to the bottom of the document, etc, now work
     properly, when the TEXTAREA is expanded beyond the bottom of the
     (original) screen display.
  3. Hitting the reset button is now handled properly WRT the "old" text in
     expansion lines (now *always* empty).
  4. Attempting to edit (^Ve) a TEXT field (not a TEXTAREA), is now blocked,
     with the user getting an error msg.
  5. The function call now returns the number of lines that the cursor should
     be moved from its current position, to end up on the first blank line of
     any trailing empty lines in the TEXTAREA (there will always be one).
* bug fixes for TEXTAREA edit feature - KED
  1. Thanks to a suggestion by Bela, your regular EDIT keybinding ("e" by
     default), will now bring up the editor within a TEXTAREA, so there's no
     need to "waste" a separate keybinding (though you can still additionally
     bind the function separately, if desired).
  2.  Converts any tab chars in the edited file, to spaces in the TEXTAREA
     anchor line.  The tabstop is currently #define'd to the quasi-standard
     value of 8.  (If anyone thinks that needs to be user configurable, feel
     free to add that to the o(ptions) form/menu,
     cmd-line-arg/lynx.cfg/.lynxrc/userdefs.h, whatever ...
     I recommend against doing so though, as tabstops that are not set at 8,
     are a PITA to deal with, generally speaking.  I dunno if tab chars in a
     TEXTAREA form are prohibited "by spec", or if it is just a "lynxism" that
     they cause rendering problems (as well as downstream problems with
     submit/etc, I think), but I felt I needed to do something to make lynx
     behave rationally if they are present in the edited data (quite possibly
     from an arbitrary file that one pulled into the editor).  Filtering them
     to spaces, seemed the most reasonable thing to do.
  3. Replaces any embedded control chars with something printable (I chose a
     "." char, since it is less "intrusive" than some other choices, like "*",
     "+", "#", etc).  As with tabs, when some of these chars *are* rendered
     into the TEXTAREA, strange things may happen.  This shouldn't be much of a
     limitation, since many of these chars perform line-editing or
     system/job-control functions, when entered directly while one is in the
     TEXTAREA.  They currently cannot be "escaped" and entered as actual text
     chars, so far as I can tell.  Anyway ...  I don't know of any "legitimate"
     reason for them to be used as TEXTAREA data, so for now, you get "dots" in
     their place.
  4. Cleans up a few comments, and such.
* update some linked in lynx_help_main.html (Heikki Kantola <hezu@iki.fi>)
* add checks for null return from malloc to HTInit.c, LYMain.c, LYReadCFG.c,
  LYUtils.c (patch by John Bley)
* add telnet, tn3270 and rlogin program paths to configure script
  (patch by George.Lindholm@ubc.ca).
1999-01-28 (2.8.2dev.15)
* correct calls to HTAddParam() in LYDownLoad.c to handle optional second
  parameter (reported by KW) - TD
* change HTAddXpand() to assume its parameter (an environment variable) is
  already expanded and simply is not quoted (reported by Ryan Hung
  <rhung@vcn.bc.ca>) - TD
* add configure --disable-included-msgs option to allow suppressing of bundled
  ./po directory for the NLS message library contents.  If no ./po directory
  is found, the configure script assumes it is preinstalled anyway (request
  by HN) - TD
* add pattern to script which customizes pathnames in lynx.cfg to support
    GLOBAL_MAILCAP:/PATH_TO/lynx_doc/samples/mailcap
  (request by PG) - TD
* export $PATH when calling cfg_defs.sh - PG
* add a simple test to check if the temporary directory is actually writable
  if we cannot create a temporary file in LYOpenTemp (reported by PG) - TD
* miscellaneous DOS/DJGPP compile/build fixes - LP
* enabled CERN-style rules, there are two new lynx.cfg options, RULESFILE and
  RULE.  No example file or documentation yet beyond comments in lynx.cfg.  The
  rules mechanism itself is unchanged from what was present for a long time
  (but never used), except for some memory cleanup.  Use -DNO_RULES at compile
  time to disable - KW
* add changes to invoke external editor on textarea, can be invoked by adding a
  KEYMAP entry for EDITTEXTAREA area to lynx.cfg (originally from
  aldomel@ix.netcom.com, but much rework) - KED
* use HTSprintf0 in HTTCP.c - TD
* added PARSE_STRICTPATH and PARSE_QUERY to interface of HTParse(), for
  requesting only the relevant part of what is returned for PARSE_PATH.  This
  isn't yet used anywhere - KW
* changes to StrAllocVsprintf() to take width and precision in most format
  specifications into account, and to correct the memory allocation logic.
  This was tested by setting GROW_SIZE to a small value of 8, so far no
  crashes, but it is certainly not right for all possible formats, especially
  involving floating point conversions - KW
* changed HTSprintf0() to pass a string already existing in its output buffer
  on, this should save a few realloc's in StrAllocVsprintf() - KW
* changes to code handling LIST_FORMAT to avoid some unnecessary reallocations,
  to recognize some more format flags, and to treat invalid formats somewhat
  better - KW
* corrected recent HTFile.c change for systems without S_ISVTX - KW
* added memory cleanup for uid/gid cache functions in HTAAProt.c - KW
* increased ATEXITSIZE to 40 - KW
* added TRACE output to HTAnchor.c's free_adult_table.  If this shows anything
  at program exit (if TRACE is on then), it means that HTAnchor structures have
  been missed by the normal automatic cleanup (walking the history list and
  following links) - KW
* changed more status codes in HTUtils.h to libwww5-like values - KW
* added new function to check for a valid Internet hostname - KW
  Use it before actually trying to resolve an address, it should
  a. avoid the overhead of NSL_FORK if it would fail anyway,
  b. prevent DNS queries for invalid names, which may unnecessarily
     consume time, bandwidth, and DNS server cache memory, and
     may confuse some resolver libraries and servers,
  c. speed up address guessing sometimes if something was mistyped,
  d. thwart some attempts to crash Lynx with invalid URLs.
* this time really make "Alert" statusline prefix localizable - KW
* new function HTAlwaysAlert(), which can be called even when LYCursesON isn't
  true and should always produce a visible message - KW
* use new valid_hostname to also check telnet, tn3270, and rlogin hostnames
  before calling the external program (after most invalid character have
  already been stripped).  Added a fflush(stdout) to make sure messages are
  visible before external program is called - KW
* made changes equivalent to the 1998-12-31 HTSACopy and HTSACat modification
  to the LY_FIND_LEAKS versions of those functions.  Having source and target
  string for StrAllocCopy or StrAllocCat overlap (or being equal) should be
  considered a programming error, but at least one place in LYEdit.c currently
  seems to do it and rely on the new behavior.  (Editing current file sometimes
  didn't work with LY_FIND_LEAKS) - KW
* closed memory leaks in LYKeymap.c, provided for memory cleanup at exit of
  LYCgi.c environment strings - KW
* explicitly put HTTP_ACCEPT_LANGUAGE and HTTP_ACCEPT_CHARSET strings into
  lynxcgi environment only if they are non-empty, i.e., set to something in
  lynx.cfg or the personal configuration or Options screen.  This makes the
  environment a lynxcgi scripts sees resemble more closely that of a remote CGI
  script handling a request from Lynx with the same configuration - HTTP.c also
  only sends Accept-{Language,Charset} headers if preferred language and
  preferred charset (respectively) have been set to non-empty strings.
  (Strictly speaking, an empty Accept-* header has a different meaning from a
  non-existing one, but it doesn't make much sense to generate empty Accept-*
  headers, since they mean "nothing is accepted".) There are other differences
  in the lynxcgi environment (e.g.  HTTP_ACCEPT isn't set, ",iso-8859-1;q=0.01"
  etc.  isn't appended to HTTP_ACCEPT_CHARSET, apart from missing
  redirections), but apparently nobody has needed a more exact CGI emulation
  for real scripts - KW
* removed sending of "Negotiate: trans" in HTTP.c since it violates transparent
  content negotiation specs, added comments - KW
* correct error handling in CF_INET_ADDR, which did not restore $LIBS when no
  applicable library was found for inet_addr (reported by IC) - TD
* correction to CF_TERMCAP_LIBS, which used inconsistent spelling for the cache
  variable, so predefined termcap/terminfo library was not necessarily
  detected - TD
* resolved autoconf 2.13 problem, resync configure script with patched
  autoconf 2.13 - TD
1999-01-18 (2.8.2dev.14)
* use HTSprint0 in LYCurses.c, LYForms.c, LYGetFile.c, LYJump.c - TD
* modify LYCheckMail so it does not continue to report new mail when the mail
  file's modification time differs from its access time (reported by LV) - TD
* add check for inet_addr function, and (preferred) inet_aton.  The first
  function is reported to be sometimes in -lresolv, or -lbind when it is not
  present in the conventional network libraries (from report by
  mattack@area.com and comments by HN) - TD
* resync config.sub, config.guess with autoconf 2.13.19990117 (not yet
  configure, since autoconf 2.13 contains some new bugs) - TD
* modified handling of untranslatable charsets, after noticing that a page
  with charset=ISO-2022-JP produced an alert message with a truncated
  "iso-2022-j".  Looking more closely, the code could also result in memory
  corruption in some cases.  Compared with older versions, then changed the
  code to something somewhat like what was intended there.  But we don't have
  an "Other ISO Latin" display character set any more; maybe those `else'
  blocks should just have disappeared completely - KW
* minor changes to SortaSGML DTD for PARAM, THEAD - KW
* make "Alert" statusline prefix localizable - KW
* extend fixtext.sh to also change continued lines - KW
* changed LYCheckForProxyURL to act more like it appears to have been indented,
  and clarify comment.  Minor change in is_url - KW
* prevent removal of hidden link number from bookmark document in a very
  obscure case of a bookmarked ISMAP link - KW
* HText_SubmitForm:  make sure query is always allocated, even if the set of
  form fields to be sent turned out to be empty - KW
* some comments corrected in HTML.c, LYCharSets.c - KW
* tweak in curses_w_style for display without color - KW
* remove minor memory leak in LYDownload.c - KW
* changed error handling in LYTraversal.c to make sure terminal gets restored
  to sane mode before showing error message and exiting - KW
* increased VALUE_SIZE for buffer in HTMIME.c from 1024 to 5120.  Someone
  needed increase for long Set-Cookie headers - KW
* two new functions in HTList.c to reverse and to combine lists - KW
* Lynx was using the wrong precedence for entries within a mailcap (relative to
  other entries from the same file):  RFC 1524 says "The configuration
  information will be obtained from the FIRST matching entry in a mailcap
  file[...]", but Lynx effectively gave precedence to the last match.  Recent
  Debian packages of lynx have had a patch applied to change this, but that
  patch also seems to affect the precedence order relative to viewers defined
  in other places, i.e., lynx.cfg and HTInit.c.  The patch here instead changes
  the precedence of mailcap entries form the same files to RFC-like behavior,
  by reordering the list generated from a mailcap file after we have finished
  reading it in.  It leaves the order relative to viewers from other sources
  unchanged.  Maybe it should be made configurable whether Lynx's traditional
  precedence or the new one is used; currently there is just a #define in
  HTInit.c which could be changed to revert to traditional behavior - KW
* add checks for null return from malloc to LYCurses.c, LYStrings.c,
  (patch by John Bley)
* add support for HP Roman8 as a display character set.  HP Roman8 is used by
  Hewlett-Packard terminals and hpterm, HP's version of xterm.  The character
  repertoire is largely similar to ISO Latin 1 but the code points are all
  mixed up (patch by Christian Weisgerber)
* modify WWW/Library/Implementation/HTAAUtil.c::HTAA_setupReader():  to use
  malloc'd buffer rather than static buffer, to avoid overflow (patch by Thomas
  Braun <Thomas.Braun@link-up.de>)
* modifications to allow building the DOS lynx port with support of gettext for
  producing messages in various languages.  The DOS port of the gettext package
  still needs minor tweaking to get it to function properly, but this shouldn't
  be a problem for most people trying to compile lynx for DOS themselves.
  Rather than put yet more DOS-specific makefiles in the distribution, I put
  the changes to the makefiles within comments, which can easily be removed to
  enable the changes - DK
* add a comment about LYUCcharset struct "UChndl" field.  Tweak trace
  messages - LP
* fix parsing of ALT=value attribute when the value is not quoted.  When the
  first character is not us-ascii it was corrupted by chartrans in all versions
  of lynx.  Fix case S_equals in SGML_character() - LP
* chartrans:  ignore RAW_TOGGLE key and do not change LYUseDefaultRawMode if
  current document's charset specified explicitly, add status message.  (Let
  user switch toggle only when necessary, to avoid future problems :-) - LP
* chartrans: change the default value of PREPEND_CHARSET_TO_SOURCE in lynx.cfg
  from FALSE to TRUE (better safe than sorry) - LP
* reorder forms-based options menu (cosmetic):  rename "HTML error tolerance"
  to "HTML error recovery", reorganize "Character Set Options" section -
  "Display character set" went to "Personal preferences" section, "Assume
  character set" and "Raw 8-bit or CJK mode" went to "Document Layout" section;
  "Execution Links" went to "File management" section.  (Hope this helps to
  reduce confusion) - LP
* remove "environment variables" section from INSTALLATION, change references
  to Lynx User Guide in all docs.  Minor tweaks on help files - LP
* add a comment to mime.types and lynx.cfg on SUFFIX definition:  "This has an
  effect for ftp and local files only, http server does specify MIME type in
  the Content-Type header" - LP
1999-01-13 (2.8.2dev.13)
* correct a missing trailing newline in caselower.h (this may be a problem
  patching since 'diff' does not like that) - TD
* fix off-by-one alignment download options (reported by LV) - IC
* use HTSprintf/HTSprintf0 in UCAuto.c - TD
* remove stop/start curses calls around UCChangeTerminalCodepage() in
  GridText.c, since they are not necessary, and are a little distracting
  when running Lynx in xterm - TD
* correct handling in getfile() of ~/ expansion - KW
* modify NSL_FORK logic to prevent child process from running any signal
  handlers the parent may have installed - KW
* the logic added to display_page for avoiding unnecessary screen redraw with
  partial display (see 1998-12-03) is now disabled if enable_scrollback is set.
  Otherwise displayed pages could appear as empty (or with only the current
  link drawn) - KW
* modify conditions under which screen style cache is reset (only relevant for
  color style in combination with partial display) - KW
* update the INSTALLATION file, reflecting the changes between the two DJGPP
  versions of GCC in use.  Also, change optimization to -O2 in the other two
  DOS makefiles - DK
* add support for ISO 8859-15, i.e., "Latin 9", make corrections to DEC
  Multinational character translations (patch by (Christian Weisgerber
  <naddy@mips.rhein-neckar.de>)
* modify po/makefile.inn to use mkdirs.sh rather than mkinstalldirs script
  (reported by LV) - TD
* modify print_help_and_exit() to print values for the simple options, i.e.,
  toggle, integer and string, as part of "lynx -help" (request by
  mattack@area.com) - TD
* correct sense shown for Old_DTD variable in LYOptions.c (reported by DK).
* correct order of params for non-Unix use of HTAddParam in LYBookmark.c
  (reported by DK)
1998-12-31
* delete unused 'PREVAIL' color-style code from HTML.c, merge a couple of
  sections of logic with TrimColorClass, and change Style_className to
  a dynamically-allocated string - TD
* modify fmt_tempname() to check for buffer overflow - TD
* check/modify for potential buffer overflows:  HTAlert.c, LYBookMark.c,
  LYKeymap.c, LYPrint.c (including splitting it up into functions) - TD
* change GetOptValues to return status separately from the decoded value, in
  case the options form is damaged (suggested by LP) - TD
* add new function HTAddXpand to use in special case where Lynx is building
  shell command using data from user's configuration, which should not be
  quoted.  Use this in LYEdit.c to allow $EDITOR to be given as the editor
  name (request by PG) - TD
* add new function LYOpenTraceLog, to combine logic in LYMain.c and
  LYMainLoop.c, including Lynx's version message - TD
* fix some discrepancies between the code and the documentation (help files),
  for the alternate line edit keybindings, that were first included in the
  distribution somewhere around -dev.3, or so - KED
* added a delete-to-beginning-of-line (for the alt bindings only), and a help
  page that describes the alternate bindings - KED
* improved description of "HTML error tolerance" - KW
* changes for handling lynxcgi:  handle failure of execve(), by showing the
  system error and then _exit()ing the child process.  Make sure REQUEST_METHOD
  is always set.  Added checks for EINTR and other errors from read() - KW
* DOSPATH or EMX:  remove strange code dealing with root of local drive from
  is_url() and HTDOS_name()/HTDOS_wwwname(), add right code at the earlier
  stage in LYFillLocalFileURL() - LP (thanks KW)
* relax warning from HTAlert to HTUserMsg on REFRESH_URL_NOT_ABSOLUTE - LP
* more tweaks on transfer rate calculation - LP
* modify HTSACopy and HTSACat in case the source and destination are the same
  pointer - TD
* tested/removed redundant OS/2 EMX adjustment to filename from LYEdit.c - TD
* optimized LYEdit.c by moving calls on HTSYS_name(filename) to a single place
  near the top - LP
* forms-based options menu:  prevent spoofing attempts from possible overruns
  (e.g., user can doing 'e'dit in 'o'ptions and get core dump if
  display_char_set gets an illegal number such as 50, or hang the keyboard with
  illegal Line edit style) - LP
* forms-based options menu:  add new logical section - Document Layout,
  currently with "HTML error tolerance" (TagSoup/SortaSGML), "Pop-up for select
  fields", "Show images" (no_alt/labels/links) and "Verbose images".  New
  switches added for information purposes mostly, they duplicate hot keys but
  not so hidden from user's view.  Documentation updated also.  (Oh yes, "Line
  edit style" option is now available when we have a real choice >1) - LP
* split cfg_defs.sh into two script based on revised script from PG - TD
* minor fixes for top-level makefile.in - PG
* fixes for makefiles with gcc 2.8.1 using DJGPP 2.02 (do not use "-c -o"
  combination, strip trailing blanks from makefile.sla, change optimization
  level to -O2) - DK
* rename New_DTD variable to Old_DTD, change logic for -tagsoup option to be
  consistent with sense in lynx.cfg (reported by LP)
1998-12-26 (2.8.2dev.12)
* use HTSprintf0 in LYCgi.c - TD
* add tab-completion on URL's, by using previously-entered strings for
  matching (patch by Kari Davidsson <karid@isholf.is>) - TD
* add version number to trace log (patch by IC)
* modify HTDOS_name to be consistent with HTVMS_name, which does not modify
  its parameter (reported by LP).  Also, modify HTDOS_name and HTDOS_wwwName
  so they allocate space for the result rather than using a static buffer - TD
* modify LYEdit.c to use HTAddParam - TD
* make HREF/NAME for "Environment" consistent in Lynx_users_guide.html
  (reported by LP)
* correct DOS/EMX logic in LYEdit.c which incremented 'filename' pointer when
  its length was greater than 1 rather than recopying the string, causing a
  core dump when 'filename' was freed (reported by LP, this applies to
  2.8.1rel.2) - TD
* correct sense of 'already_exists()' function from dev.11, which caused
  various file-menu operations to stop working (reported by IC) - TD
1998-12-24 (2.8.2dev.11)
* use HTSprintf/HTSprintf0 in about half of the WWW library files where
  applicable:  HTAABrow.c HTAAServ.c HTAAUtil.c HTAccess.c HTAnchor.c HTDOS.c
  HTFTP.c HTFWriter.c HTFile.c HTFinger.c HTFormat.c HTGopher.c - TD
* eliminate most duplicate gettext parameters, reduced the number of files
  listed in po/POTFILES.in to a size that may allow build with the Solaris
  xgettext utility - TD
* correct rule for remaking po/makefile - TD
* workaround for HPUX sed program, providing '$' anchors for ".*" expressions,
  which is redundant, but should be harmless (suggested by Jean-Yves Levesque
  <Jean-Yves.Levesque.jyves@nortelnetworks.com>)
* add new help file, keystrokes/environments.html - LP
* fix HTReadProgress():  more accurate transfer rate calculation - LP
* update slang makefile.dos, and corresponding INSTALLATION notes - DK
* correct my integration of IZ's LY_CHANGE_LINK code, which resulted in an
  out-of-bounds index into revmap (reported by LP, LV) - TD
* add note about sendmail for Win32 to lynx.cfg - JS
* add note for successful build on NeXT to INSTALLATION (Christian Jensen
  <cejensen@winternet.com>)
* add checks for null return from malloc to HTInit.c, LYMainLoop.c, LYUtils.c,
  (patch by John Bley <jbb6@acpub.duke.edu>)
* remove reference to 'persistent_cookies' in LYCookie.c which prevented
  compile when persistent cookies configure option was disabled (report
  by PG) - KW
* move assignment to SHELL back from WWW/Library/makefile.in to CommonMakefile,
  and revert use of $CONFIG_SHELL in configure script, since this appears to
  stop auto-configure from finding working include feature of 'make' on CLIX
  (reported by Alex Matulich) - TD
1998-12-16 (2.8.2dev.10)
* FROM_FILE is not used any more for a domain (although it is currently still
  defined.  Renamed COOKIE_FLAG_PERSISTENT to COOKIE_FLAG_FROM_FILE.  Don't
  change a domain's "behavior" (ACCEPT_ALWAYS, REJECT_ALWAYS, or QUERY_USER)
  just because there was a persistent cookie for it.  Users who want to always
  accept cookies from a domain without prompting should use
  COOKIE_ACCEPT_DOMAINS - KW
* FREE domain_entry objects when they are not used any more.  Other minor leak
  removed - KW
* some (few) changes for draft-ietf-http-state-man-mec-10.txt.  Don't accept
  invalid port lists (this may need more tweaking).  Added some comments - KW
* try to preserve cookies (within a domain) in the same order in which they
  were received, although this is probably not necessary after all.  There is
  no difference any more w.r.t.  insertion into the list between cookies from
  the file and cookies from response headers - KW
* use <= instead of < comparison when checking whether a cookie has expired -KW
* don't write expired cookies, cookies with discard attribute, or cookies
  without expiration date to persistent file - KW
* don't call HTConfirmCookie for cookies read from file.  This doesn't change
  the logic since previously HTConfirmCookie allowed all file cookies anyway -
  KW
* don't delete the domain_list if it becomes empty.  Doing this could result in
  unnecessary multiple atexit()'s - KW
* write the cookie file even if we now have no cookies, if we have previously
  read cookies from the file.  The file should be updated if all cookies that
  were in it are expired or superseded or deleted - KW
* when reading file cookies, set attributes in a way that (hopefully) makes
  more sense than just ignoring them.  See comments in LYLoadCookies.
  We are restricted a lot by the choice of a Netscape-compatible cookie file
  format, some version 1 properties just cannot be stored in it AFAIK.  Some
  more tweaking in LYLoadCookies - KW
* setting a domains behavior to accept "A)lways" didn't actually work, it had
  the same effect as "P)rompt".  Corrected this simple (probably cut-and-paste)
  error - KW
* some changes in what is displayed on Cookie Jar page:  FROM_FILE is a
  property of individual cookies, not of domains as previously.  Cookies from
  file (which haven't been updated) are shown as "(from a previous session)".
  Show expiration time ("Max.  Gobble Date") whenever we have one.  The state
  of the "discard" attribute is already displayed separately - KW
* made color styles code work much better with TagSoup parsing mode.  A new
  flag bit is set for some tags in HTMLDTD which indicates that, even though
  they may be otherwise handled as SGML_EMPTY, this emptiness is fake.  This
  can only work reasonably for elements that require an end tag (not for LI,
  for example) - KW
* added SUMMARY attribute for TABLE element to HTMLDTD (but we don't do
  anything with it) - KW
* split_line:  Try to account for changes in anchor position and extent in all
  possible cases.  This improves some cases where the selectable text could
  become too short and, in extreme cases, a link could become erroneously
  "hidden" - KW
* split_line:  color style changes after the split position are moved to the
  correct position in the new line - KW
* set TextAnchor's line_num in HText_beginInput, so that split_line can adjust
  the input field's position properly if a split moves it to the next line.
  Should solve problem reported for www.lycos.com - KW
* don't refuse to read from file-descriptor 0 in HTDoRead for Unix if it is not
  a tty.  The socket fd from HTDoConnect can be 0 if fd 0 was not open when
  lynx was started non-interactively - KW
* increase INIT_LINE_SIZE in HTTP.c slightly from 1024 to 1536, so that for a
  typical ethernet MTU the first packet of a response can more often be read in
  with a single read() - KW
* add a missing FREE() in HTTP.c - KW
* use case mapping from ftp.unicode.org /Public/UNIDATA for case-insensitive
  user search (thanks "Kari E.  Hurtta" <Kari.Hurtta@ozone.FMI.FI>), new file
  src/chrtrans/caselower.h added.  This is used instead of UPPER8 assumption
  introduced in 2.8 release (see 1998-02-27).  There is no difference in speed
  though - LP
* fix links in History/Visited Links page for documents with blank
  <TITLE></TITLE>, also remove leading spaces from titles to make output a
  little better - LP
* use djgpp's <sys/config.h> file, which contains default values for autoconf
  style definitions - LP
* updated lynx.man, lynx.hlp for "SEE ALSO" sections - KED, JS
* optimize the test commands specified in the mailcap file by remembering which
  tests have been run already.  (patch by Marc Huber <marc@sixpack.de>)
* add lint rule to makefile.in, as well as corresponding rule in WWW/... - LV
* update version in makefile.in to 2-8-2 - PG
* fix makefiles to build with DJGPP (problem introduced in dev8) - LP
* use new symbol KEYMAP_SIZE to get rid of various constants relating to the
  size of keymap[] array, e.g, 0x293, 659 - TD
* add new mouse and keymap functionality to lynx:
  a) If one clicks mouse *near* a link, the "point/focus" is moved to this link
     (without actual activation);
  b) One can bind keys with ordinals larger than DO_NOTHING;
  c) Primitive context sensitive menu added to the middle button of a mouse
     (currently ncurses only);
  Current micro-problem with "c" is that I do not know how to refresh a screen
  before triggering the action, so if the action chosen from the menu would
  not redraw the screen, the menu outline is left on the screen - IZ
* modify LYKeymap.c so that it can show internal keymaps above 0400 as
  hexadecimal codes even if they do not appear in the function-key table - IZ
* add HTOptParam to avoid spurious quoting of blanks in rlogin URLs by
  HTAddParam - TD
* correct missing assignment in remote_session(), from dev.9 changes for
  HTAddParam, which broke telnet/rlogin URLs (reported by IC) - TD
1998-12-12 (2.8.2dev.9)
* change location-not-absolute message from an alert to user-message - TD
* check for EINTR from read() call in HTDoRead, and retry if necessary.  This
  change only for Unix.  Interrupted read() system calls should be rare (or
  impossible, depending on the system implementation?) since the read() is only
  done after a successful select(), but checking can't hurt - KW
* check for read read() errors in HTDoRead and HTCopy, and generate alert
  messages for unexpected errors.  HTCopy still returns HT_LOADED to indicate
  success if any data have been received before an unexpected error or
  disconnection.  Previously this happened without any indication to the user
  that something was wrong and a document or file might be incomplete.  These
  changes currently only for Unix - KW
* added/enhanced comments in HTFormat.c to document current behavior of HTCopy,
  HTFileCopy, HTGzFileCopy, HTParseSocket, HTParseFile, and HTParseGzFile - KW
* moved definition of HT_NO_DATA to HTUtils.h, changed value of some status
  codes to libwww5-like values while we're at it - KW
* correct uninitialized de variable in LYCookie.c when dump_output_immediately
  is set.  Also, made a slight change to this mode in LYMain.c, so that cookies
  received will also be written to the cookie file; cleanup() is not called in
  -dump mode (reported by Elwin Oost) - BJP
* correct include-path for chrtrans makefile to allow builds outside the
  source tree (Masashi Fujita)
* minor cleanup of LYCookie.c, add some traces - BJP
* add support for content encoding for x-bzip2, bzip2 for suffix "bz2" - HN
* add po directory to install-bin and uninstall rules - TD
* modify the environment variable logic to avoid freeing string given to putenv
  until after giving it a new string - TD
* add several environment variables to LYPrint.c - KED
* add ENVIRONMENT section to lynx.man and lynx.hlp - KED
* add installation note about --enable-gzip-help - KED
* update installation notes for WAIS - DK
* add/use new functions for building up command-string for shell commands,
  which quote parameters as needed:  HTAddParam(), HTEndParam().  Moved the
  logic in quote_pathname to HTQuoteParameter, extending that function to quote
  the parameter only if it contains characters which are problems with various
  shells (e.g., wildcards), and to escape backslashes.  In particular, use
  these functions to ensure that the user and port strings in HTTelnet.c are
  quoted (fixes a hole reported by Art Mulder <art@openbsd.org> - TD
* modify print-to-file logic to permit writing to pipe, provided that the
  user does not have no-shell restriction - TD
* split-out logic for LYValidateFilename() from printfile() and LYDownload - TD
* whitespace fixes - BJP
* add configure option --with-nls-datadir, to allow installer to specify
  alternate locale data directory.  A separate option from --datadir is
  required because the GNU gettext code is usually installed under
  $(prefix)/share rather $(prefix)/lib - TD
* add configure check for gettimeofday, to implement 0.1 second interval
  for skipping HTCheckForInterrupt() - TD
* modify configure script to generate references to $CONFIG_SHELL rather than
  /bin/sh, to allow some testing with alternate shells.  Autoconf uses this
  variable for a similar purpose - TD
* correct missing case for 'o', octal in StrAllocVsprintf (reported by IC) - TD
* fix -restrictions=bookmark check in forms-based options menu (reported by KW
  & Rodiger Geys) - LP
* fix memory leaks in LYPrint.c and UCdomap.c - KW
* when printing HEAD to email use URL in the subject, was title.  (it was
  especially annoying when we have 8bit title being sent as 7bit:  no charset
  information is supplied for letters with 7bit message body) - LP
* remove "temp fix for HText_trimHightext side effect from partial mode by
  introducing a flag in HText_beginInput()" from 1998-09-12 since it is now not
  needed after KW's changes in HText_trimHightext.  - LP
1998-12-03 (2.8.2dev.8)
* use HTSprintf/HTSprintf0 in LYCookie.c, LYLocal.c - TD
* correct logic in OpenHiddenFile, which did not check if a failure to open a
  file for append was due to the file's not existing and hence causing
  IsOurFile to return failure.  This caused the -traversal option to fail
  (reported by Francis Irving <francis@ncgraphics.co.uk>, applies to
  2.8.1rel.2) - TD
* fixed line number removal code in HText_endAnchor in several places, it was
  modifying the wrong line which could lead to memory corruption - KW
* tweaks in HText_startAnchor and HText_endAnchor for handling link numbers:
  don't swallow space after number if line was split, find link number on
  previous line even it it is at the very end, adjust line split position after
  number removal.  Generate TRACE output in interesting cases - KW
* prevent havoc (access to already freed memory etc.) caused by multiple
  recursive invocations of HTAnchor_delete on the same HTParentAnchor.  This
  does not seem to actually happen normally during a session, but can occur
  when the HTAnchor structures are cleaned up while handling a terminating
  signal or outofmem condition - KW
* reset the HTAnchor "underway" flag during final cleanup, so structures are
  not prevented from being freed.  This also should only make a difference when
  handling a terminating signal or outofmem condition - KW
* show sticky-bit in directory listings - LW
* correct options-message on Print page - IC
* update installation note about freewais library (reported by Chris Maden
  <crism@oreilly.com>) - TD
* improvements to mouse code, ncurses-based, from IZ (Ilya Zakharevich)
  a) Mouse navigation inside text entry fields;
  b) Mouse navigation to a text entry field (including an empty one)
  c) Mouse navigation to a specific position of a text field (since I do not
     know which fields are text fields, I implemented "b" and "c" for
     F_TEXTAREA_TYPE and F_TEXT_TYPE only, search for these symbols in the
     patch);
  d) Mouse navigation in menus:  To scroll, one can click on top/bottom border
     (single=byline, double=bypage, triple=beg/end), or above/below menu
     (single=bypage, double=beg/end)) mouse-3 ==> quit;
  e) Double-click-1 on the first and last row are interpreted as goto-
     start/end/main-window (depending on the location of the click).
  Other Changes:
  a) Ask ncurses for all mouse events, but increase mouseinterval() to simulate
     current behavior (which is effectively an infinite mouseinterval() +
     masking of repeated clicks);
  b) Earlier clicking to the left of a link would activate the link.  I see no
     use for this, so consider this a bug.
* HText_trimHightext (GridText.c):  don't apply final adjustment repeatedly to
  an anchor that has already been handled by this function; the function may be
  called repeatedly if partial display is enabled.  Some other changes in this
  function, to interact better with the other GridText.c functions, especially
  for partial display mode.  We don't have to handle all anchors if the new
  parameter "final" is not set.
  Also empty anchors should now generally not any more move down over empty
  lines, if they happen at a line end.  Made some trace messages give more
  information - KW
* color styles:  reset screen style cache to avoid random coloring when a link
  is unhighlighted - KW
* tweak in HText_setLastOptionValue:  if an OPTION tag was directly followed by
  several newlines, characters could be dropped - KW
* tweak havevisible() function in LYBookmark.c to compare against Unicode
  value rather than ASCII when checking for blanks. - LP
* ifdef user/group function caching calls so that this builds with djgpp, which
  doesn't need/support this (patch by Gisle Vanem)
* documentation updates for NLS - HN
* separate some html from gettext in LYCgi.c, LYHistory.c, LYLocal.c - JS
* avoid setting recent_sizechange during the very first start_curses call for
  ncurses.  This would result in an unnecessary refresh after loading the first
  document - KW
* added logic to display_page to avoid repainting the full screen contents in a
  specific situation:  if it has been called before (for the same lines in the
  same document) during partial display, and is now being called normally (not
  during partial display).  If this applies, the normal line content is not
  redrawn, but the title line and form fields are still repainted, and updating
  of the links structures is always done.  There are additional checks for
  recent_sizechange and a text->stale flag (which was already implemented but
  unused) to do the full redraw if that may be needed.  This should avoid
  unnecessary screen 'blinking' with curses when partial display is used (which
  didn't seem to happen with slang) - KW
* modify SGML.c to check for SGML_ELEMENT tag contents, fixing a case where an
  entity that appears within a TABLE but outside of any table row TR will be
  displayed by Lynx _without_ its entities being interpreted (analysis by Alan
  J Flavell <flavell@a5.ph.gla.ac.uk>, applies to 2.8.1rel.2) - KW
* check that stdin is really a tty before trying to select from it in the
  NSL-FORK logic in HTParseInet(), file HTTCP.c (reported by Kim DeVaughn, for
  someone who was unable to run lynx -dump in a cron job, applies to
  2.8.1rel.2) - TD, BL
* updates for lynx_help_main.html (JS, IC).
* change fopen for write in LYCookie.c to LYNewTxtFile so that the resulting
  file will be readable by only the owner (Bill Nottingham <wen2@po.cwru.edu>
  suggested using umask, but that may not be portable enough) - TD
* use CONST in some places in UCdomap.c and makeuctb, to make more tables
  sharable (suggested by LP) - TD
* fixes for SunOS K&R compiler with/without unproto wrapper, i.e., definition
  of 'const' - TD
1998-11-23 (2.8.2dev.7)
* convert KEY_ENTER to newline in LYgetch() to make Lynx work with IRIX's
  iris-ansi terminfo description, which equates the kent capability with
  carriage return.  Doing this will allow lynx to use the keypad "enter" key as
  an alias for carriage return on most terminals - KW
* correct a few missing ifdef's for disabling the partial-display logic - TD
* add/use new functions HTAA_UidToName(), HTAA_NameToUid(), HTAA_GidToName()
  and HTAA_NameToGid() to hide details of code which uses pwd.h and grp.h,
  as well as to cache the returned user/group names, improving performance
  in the dired screen - TD
* modify HTCheckForInterrupt() to check for interrupt no more than one per
  second, since this check is comparatively slow - TD
* modify ANSI_VARARGS case for HTSprintf() and HTSprintf0() to always use
  ANSI prototypes, since __STDC__ may not necessarily be defined on some
  systems, resulting in an inconsistent definition - PG
* add install-full rule to makefile.in - LV
* modify PutDefs macro in LYShowInfo.c to check for nonnull table[N].value,
  which may be null due to limitations of cfg_defs.sh script on some
  platforms where an empty string was intended (reported by LV, PG, applies
  to 2.8.1rel.2) - TD
* correct typo in 'make distclean' rule; an extra '-' prevented removal of
  .orig and .rej files (patch by LV).
1998-11-21 (2.8.2dev.6)
* add call on dbug_init to LYMain.c, allowing use of the debugging code built
  into the WATTCP code which is included in the DJGPP port of lynx.  This is
  activated by placing lines in the WATTCP.CFG file for:
    DEBUG.MODE= (choices are HEADERS, DUMP, or ALL)
    DEBUG.PROTO= (choices are TCP, UDP, or  ALL)
    DEBUG.FILE= (name of log file.  Defaults to WATTCP.DBG)
  This adds about 2K to the size of the stripped, compressed executable.  You
  get a log of the headers and/or a binary dump of the packets sent and
  received.  Maybe this will help in determining where ftp is failing in this
  port - DK
* correct definitions for ANSI_VARARGS, HAVE_STDARG_H in HTUtils.h (reported
  by LP, for djgpp) - TD
* correct logic in StrAllocVsprintf(), remove spurious test on dst_len
  (analysis by LV) - TD
1998-11-21 (2.8.2dev.5)
* modify HTLoadFile() to make compressed files work with OS/2 EMX and
  LYSystem() to convert forward slashes in pathnames to backslashes, also for
  EMX (patches by Ilya Zakharevich).
* documentation nits (apostrophes) in lynx.cfg and userdefs.h - LV
* fix inconsistent newlines in po/it.po (report by Irving_Wolfe@Wolfe.net) - TD
* modify config.guess, added Intergraph 2430 CLIX machines (reported by Alex
  Matulich <matuli_a@marlin.navsea.navy.mil>) - TD
* minor fix in LYCharSets.c according to recent changes in UCDefs.h introduced
  by IBM OS/2 codepage number - LP
* modify configure script to work with --enable-nls built into a subdirectory
  of the source tree (reported by PG) - TD
* disable regeneration of intl/po2tbl.sed and po/POTFILES if --disable-nls
  configure option is specified - TD
* add configure test for stdarg.h vs varargs.h - TD
* fixes to work with SunOS K&R compiler - TD
* don't trim trailing and leading spaces from unformatted text lines in some
  cases (split_line in GridText.c).  Prevents corruption of some uuencoded
  files when they are displayed and then 'P'rinted (although 'D'ownload should
  be used instead) - KW
* some changes in HText_appendCharacter (GridText.c).  Splitting of long SOURCE
  lines now works with color styles - KW
* workaround for multiple anchors in the same (invalid) HTML document with the
  same NAME and different destinations (HTAnchor.c) - KW
* check for 'z'ap while constructing local directory listings (non-VMS only, in
  HTFile.c) - KW
* added a couple outofmem checks (HTAnchor.c).  Minor TRACE message change in
  GridText.c for -tlog / USE_TRACE_LOG disabled - KW
* when adding bookmark entries, don't accept a title string which appears to
  consist only of blank characters (LYBookmark.c).  When rendering a bookmark
  file, use hiddenlinks=merge counting, so that numbers after entries with
  empty titles don't get out of whack (GridText.c).  This should prevent 'R'
  from removing the wrong bookmark entry - KW
* prevent generation of some unnecessary temp files when constructing mailcap
  file test commands (HTInit.c) - KW
* include LYLeaks.h in UCdomap.c for memory leak detection - KW
* fixed various memory leaks (UCdomap.c, LYShowInfo.c, LYReadCFG.c, LYMain.c,
  LYDownload.c, LYBookmark.c, HTML.c, DefaultStyle.c) - KW
* escape '&' and '<' in HTML generated to display current lynx.cfg option
  values (LYReadCFG.c) - KW
* revert logic in split_line.  Emphasis highlighting that should extend over
  several lines was being lost at line breaks (GridText.c).  (IsSpecialAttrChar
  probably shouldn't return true for LY_SOFT_NEWLINE since in most places it
  tests whether to skip a character position, but as long as this special char
  is only used in SOURCE mode it cannot mess up any anchor positions so it
  should be ok.  - KW
* correct character counting in SOURCE display continuation lines.  A
  highlighted search target would be shown shifted left by one character
  position because the LY_SOFT_NEWLINE special was displayed as '+' but not
  counted (GridText.c) - KW
* prevent generation of invalid/unparseable comments if
  UCSaveBookmarksInUnicode is in effect, other minor changes in
  LYBookmark.c - KW
* correction for color styles in HText_appendCharacter (GridText.c).  At some
  point a memmove was replaced by a for loop, but source and destination were
  reversed and the counter was wrong - KW
* modify HTSprintf/HTSprintf0 to use a more generic approach to varargs by
  using only va_alist in the parameter list - TD
* correct html expression in LYShowInfo.c of dev.3 which did not allow the temp
  file with the lynx.cfg settings to be accessed from the Configuration
  Definitions page (patch by IC - Ismael Cordeiro).
* correct "Exiting" message format in cleanup_sig(), which had unexpanded %d
  (reported by BJP) - TD
* add to config.hin the definitions set by AM_GNU_GETTEXT macro (PG pointed
  out that this also sets 'inline', needed for GNU gettext) - TD
* modify MakeNewTitle() to check for null pointer, fixing core dump with
  verbose images when value[src_type] is null (reported by John Bley
  <jbb6@acpub.duke.edu> for 2.8.1rel.2) - TD
1998-11-18 (2.8.2dev.4)
* change default for configure option of NLS (gettext) to disabled until we
  finish porting it to implementations other than GNU gettext.  Also,
  change default for include-gettext configure option to "with" - TD
* suppress cookie-storing if the value is null - BJP
* ifdef'd alternative set of line-edit bindings with EXP_ALT_BINDINGS, add
  configure option --enable-alt-bindings, rename DELEOL to DELEL, remove
  binding of DELEL to '\'. - TD
* add alternative set of line-edit bindings to change the behavior of the ^B
  and ^F line editor bindings to provide emacs/tcsh like behavior (cursor
  left/right), instead of "word" deletes.  Corrected a bug in the ^R (LYE_DELN)
  function, which is described as "delete next character", but was in fact
  performing identically to ^D (LYE_DELC) "delete current character".  Added a
  function called LYE_DELEL, which does the expected thing, and deletes
  from the current cursor position, to the EOL.
  New bindings:
    ^B = LYE_BACK   cursor backwards
    ^F = LYE_FORW   cursor forwards
    ^K = LYE_DELEOL delete to end-of-line
    ^T = LYE_DELNW  delete next word
    ^X = LYE_DELPW  delete previous word
    ^^ = LYE_UPPER  upper case line (not active when kbd-layout binding is)
    ^_ = LYE_LOWER  lower case line
  KED ((Kim DeVaughn <kimdv@best.com>)).
* modify to show address to submit to on the statusline when in advanced user
  mode.  Also fixes one small typo in LYMainLoop.c.  (suggested by
  <erisson@sw-tech.com>) - BJP
* modify HTParseInet() so that it works if stdin has been redirected to
  /dev/null, e.g., when running a cron job (reported by John H.  DuBois III
  <spcecdt@armory.com>) - BL
* minor documentation updates to lynx.cfg (Larry Virden).
* change some character constants from '\hex' and '\octal' form to decimal,
  to persuade compilers that upper-128 compares are legal - TD
* ifdef'd KEYBOARD_LAYOUT with EXP_KEYBOARD_LAYOUT, add configure option
  --enable-kbd-layout - TD
* implement EXP_CHARTRANS_AUTOSWITCH for OS/2 EMX (Sergey Svishchev).
* add 'a' response when printing a file to allow append rather than overwrite
  (Sergey Svishchev).
* add KEYBOARD_LAYOUT to lynx.cfg, to support character-translation on input,
  add missing line editing style selection to Options form.  This is enabled
  and disabled by the line edit control/uparrow (Sergey Svishchev
  <svs@ropnet.ru>).
* use exit_immediately() to reduce some signal-function clutter - LP
* correct dependency in src/makefile.in for cfg_defs.h (Masashi Fujita
  <objectx@bandit.co.jp>)
* change quoted includes in intl directory to bracketed includes - TD
1998-11-16 (2.8.2dev.3)
* misc documentation updates for the gettext/internationalization - LP
* rename po/makefile.in.in to po/makefile.inn, and modify distclean rule to
  remove the remaining generated files - TD
* add preliminary changes from PG (pg@sweng.stortek.com) to support port to
  OS/390, some ifdef'd with __MVS__, some with EBCDIC and NOT_ASCII.
* modify LYCookie.c to accept cookies with no value, in case the site resets a
  cookie by nulling out the value (reported by Larry Virden) - BJP
* modify cookie parsing to ignore comment lines beginning with a '#' (reported
  by Jonathan Bobin indicates that Netscape adds comments back, confusing Lynx)
  - BJP
* highlight option letters in old options screen (adapted from patch by Ismael
  Cordeiro) - TD
* use HTSprintf functions in HText_SubmitForm(), user_message(),
  LYLoadIMGmap(), HTTelnet.c.  (The HTTelnet.c modifications fix a security
  hole reported by Martin Mokrejs) - TD
* add HTSprintf, HTSprintf0 functions, to use in resolving potential buffer
  overflows - TD
* modify HTVMS_purge() to rename the remaining file to version 1 unless a
  permissions problem was encountered - TD
1998-11-10 (2.8.2dev.2)
* some testing against Solaris gettext implementation, enough to see that it is
  not really compatible either source or binary with GNU gettext.  For the time
  being, I recommend building NLS support only with GNU gettext (and
  --with-included-gettext to avoid conflict with Solaris' gettext in the
  standard library).  Otherwise use the --disable-nls configure option - TD
* various changes to configure script and makefiles to make this build with and
  without NLS - TD
* undo spurious substitutions such as gettext("") - TD
* modify some gettext() expressions to avoid embedding HTML in them - TD
* restore definitions in LYMessages_en.h - TD
* first cut of integrating Jim Spath's changes to incorporate message library
  support.
1998-09-20
* Files edited for language hooks:
  src/HTAlert.c src/HTInit.c src/HTML.c src/LYBookmark.c src/LYCgi.c
  src/LYClean.c src/LYCookie.c src/LYCurses.c src/LYDownload.c src/LYEdit.c
  src/LYForms.c src/LYGetFile.c src/LYMail.c src/LYMain.c src/LYMainLoop.c
  src/LYMap.c src/LYNews.c src/LYPrint.c src/LYUpload.c src/LYUtils.c
  src/LYexit.c
  WWW/Library/Implementation/HTAABrow.c WWW/Library/Implementation/HTAAProt.c
  WWW/Library/Implementation/HTAccess.c WWW/Library/Implementation/HTFTP.c
  WWW/Library/Implementation/HTFWriter.c WWW/Library/Implementation/HTFinger.c
  WWW/Library/Implementation/HTFormat.c WWW/Library/Implementation/HTGopher.c
  WWW/Library/Implementation/HTMIME.c WWW/Library/Implementation/HTNews.c
  WWW/Library/Implementation/HTRules.c WWW/Library/Implementation/HTStyle.c
  WWW/Library/Implementation/HTTCP.c WWW/Library/Implementation/HTTP.c
  WWW/Library/Implementation/HTVMSUtils.c WWW/Library/Implementation/HTWAIS.c
  WWW/Library/Implementation/HTWSRC.c
1998-09-08 (2.8.1dev25-intl)
* Resynch with dev tree - JES
1998-09-07 (2.8.1dev.21-intl)
* About half through language hooks in WWW/Lib... - JES
  Integrated part of Chebucto's French translations. - JES
* Included latest ABOUT-NLS from GNU project,
1998-08-27 (2.8.1dev.21-intl)
* Tested language hooks using src/LYNews.c and Italian messages file
  provided by Sabato De Rosa <sabato.derosa@usa.net>.  Made changes to
  LYMain.c, LYMainLoop.c, LYNews.c and HTNews.c. - JES
1998-08-27 (2.8.1dev.21-intl)
* add hooks to GNU gettext for international language support - JES
  (This is an experimental modification that will be patched into
  the main Lynx release after other platform testing.  I've only done
  NetBSD.)

1998-11-05 (2.8.2dev.1)
* relax the cookie sanity checking for version 0 (old) cookies _only when_ the
  user has accept_all_cookies set (patch by Risto Widenius
  <widenius@ling.helsinki.fi>)
* modify get_listen_socket() to check if master_socket is set before attempting
  to use it in FD_CLR (patch by Karl-Andre Skevik <karls@kosmo.inet.no>)
* minor documentation fixes - DK
* use $(LIBS) symbol in src/chrtrans/makefile.in (reported by Alois Maier
  <m9235159@grz08u.unileoben.ac.at>)
* Fix core dump which may happen after printing-to-email. - LP
* Move read_rc() before parsing any command-line arguments (except -help)
  so the latter will override any .lynxrc settings.  In particular, the problem
  was detected with -cookie_file= which was ignored after saving values
  from Options menu. - LP
* Chartrans bug: LYNXIMGMAP now shows the text in right charset.
  (The page was converted twice, fixed by adding META charset to this internal
  page.  The bug was in all versions of Lynx starting from 2.7.1ac) - LP
* Oops, my typo from pre3 back to 27-09-98: windows-1252 appears twice
  in the list of character sets in options menu, was also typo in docs. - LP
* modify HTDOS.c to permit compile with K&R compiler - TD
1998-10-27 (2.8.1rel.2)
* tidy up version numbers - TD
* modify HTDOS.h to permit compile with K&R compiler - TD

1998-10-24 (2.8.1rel.1)
-----------------------
* reorganize lynx_help_main.html - PW
* minor change to WWW/.../tcp.h to eliminate redefinition warning by DEC C - TD
* move checking for command-line "-head" and related options before curses
  initialization so that program exits with correct terminal settings
  (report by LV, fix by BL).
* correct uninitialized index into id_append in makeuctb, which causes problems
  with def7_uni.tbl (analysis by LP)
* add TAGSOUP flag to lynx.cfg to set initial state of Tag Soup vs SortaSGML
  (request by LP) - TD
* add PERSISTENT_COOKIES flag to lynx.cfg to allow disabling the persistent
  cookies feature in a Lynx executable (request by BJP) - TD
* modify read_cfg so that it does not display included-file information when
  NO_CONFIG_INFO is defined (reported by LP) - TD
* minor/cosmetic fixes for comments and documentation - LP
* revised patch for nsl-fork, which does not rely on WNOWAIT definition - BL
* include termio.h in LYCurses.c only #ifdef TERMIO_AND_CURSES (Philippe
  De Muyter <phdm@macqel.be>)
* modify cfg_defs.sh to work when the 'set' command emits double-quotes
  (pg@sweng.stortek.com)
* update obsolete copy of HTFWriter.c to add content-encoding for HTFileSuffix
  (reported by David Helder <dhelder@umich.edu) - TD
1998-10-17 (2.8.1pre.11)
* add dependency on cfg_defs.h to src/makefile.in for LYShowInfo.o
  (pg@sweng.stortek.com)
* modify add_item_to_list() so that if the restriction flag is omitted from
  a download/upload/extern line in lynx.cfg, it is assumed true.  Also check
  for null command string in LYExtern.c (bug report by HN) - TD
* modify logic in forms-options menu so that assume_char_set now works
  correctly for any LYRawMode value by synchronizing gen_options() and
  postoptions() via rawmode memory - LP
* correct ifdef'ing in LYShowInfo.c for non-Unix platforms - LP
* modify nsl_fork logic to handle a case where child exits successfully
  right after parent's select timed out (reported by Serge Munhoven) - BL
* small updates to lynx_help files and other documentation (BJP, PW, LV).
* add #define's for later work to simplify configuring the maximum number
  of cookies (suggested by BJP) - TD
* flush output in makeuctb, as possible fix for build problems on systems that
  do not implement POSIX 'exit()' call (reported by Serge Munhoven
  <munhoven@mema.ucl.ac.be> and Jan Hlavacek <lahvak@math.ohio-state.edu>) - TD
* put GOTOBUFFER, JUMPBUFFER and QUIT_DEFAULT_YES back the way they used to be
  (majority decision) - TD
1998-10-14 (2.8.1pre.10)
* add/use HTSYS_purge and HTSYS_remove functions (based on report by Tony
  Bolton and patch by BJP dealing with removing older versions of cookie files)
  - TD
* add --disable-config-info option - TD
* change configure script --enable-forms-options to --disable-forms-options,
  add --disable-menu-options - TD
* comment-out FM's code to fold cookie headers and force cookies to be
  presented in the same order that they were received - BJP
* use full "Implementation" directory name in include path in WWW djgpp
  makefile - DK
* use HTDOS_name() to force DOS temporary-directory into consistent form - DK
* include HTVMSUtils.h and HTDOS.h from LYUtils.h, consolidate some ifdef's
  using macro HTSYS_name - TD
* another fix for HTTCP.c, for lookups with Lynx/32 - WB
* add fallback to $TMPDIR for Lynx temporary directory on Unix - TD
* remove verbose_links variable due to popular demand - TD
1998-10-10 (2.8.1pre.9)
* add verbose_links variable to lynx.cfg and userdefs.h to control whether Lynx
  should show "(LINK)" before links (request/patch by Moshe Zadka
  <moshez@math.huji.ac.il>) - TD
* change defaults in lynx.cfg and userdefs.h, add comments - PW
  (a) defaults are stated for `verbose' & `KB';
  (b) GOTOBUFFER & JUMPBUFFER defaults to TRUE;
  (c) QUIT_DEFAULT_YES defaults to FALSE
* restore suggested file name in download menu:  it is really useful for other
  download methods which should be available in menu when `save to disk' is
  disabled.  Remove local_path/ prefix (LYNX_SAVE_SPACE if any) from visible
  suggested file name string near the top instead - LP
* restore newline position when toggling comments parsing (at least we could
  return to previous screen to try comments toggling twice) - LP
* add a link from keystrokes help for edit_help.html (input line keys) - LP
* corrected to make -nostatus command-line option override HTReadProgress - TD
* updates to lynx-dev.html (Al Gilman).
* modify NSL-fork support in HTTCP.c to use waitpid call to reap child
  processes which may otherwise become orphaned.  The new variable
  "dns_patience" represents how many seconds we're willing to wait for DNS to
  respond (should later make it configurable) - BL
* modify PutTextInput and PutDefs macros in LYOptions.c and LYShowInfo.c to
  avoid pre-ANSI compilers attempting to substitute macro parameters in
  coincidental matches within quoted strings - BL
  gcc -Wtraditional reports the first, but not the second, which is "n"
  substituted into "\n" - TD
* add an error-check for fg/bg values to lynx_chg_color function in case
  lynx.cfg specifies color names not in Lynx's table - BL
* modify IsOurFile function to accommodate links-to-links, so that users whose
  home directory is reached by that type of path can save .lynxrc file
  (reported by PW) - TD
1998-10-04 (2.8.1pre.8)
* modify HTTCP.c to copy soc_in from phost in HTParseInet, making Lynx/32 do
  lookups again - WB
* modify LYCurses.c to compile mouse-code with Borland C and PDCURSES 2.3 - WB
* correct backward logic in CF_TERMIOS_AND_CURSES (reported by LE) - TD
1998-10-04 (2.8.1pre.7)
* add special-case CF_TERMIOS_AND_CURSES configure macro (fixes problem
  reported by Philippe De Muyter) - TD
* update/reorganize option_help.html - PW
* restore newline position when return from the Print menu or follow a link
  from History page (was broken for partial display mode only):  LYPop() and
  LYPop_num now reinitialize Newline_partial if it happens on getfile stage.
  Also remove changes from 1998-06-11 (case LYK_DOWNLOAD) since this is now
  protected by HText_new() which never starts.  - LP
* tweak suggested filename for download menu: now it we have URL
  terminated with "/" (e.g., a directory or possibly root) do one more try -
  remove terminating "/" - LP
* download menu: do not show "Suggested file name" when "save to disk disabled"
  (requested by HN) - LP
* more tweaks on LYshow_kb_rate - LP
* move fallback definitions for POSIX S_ISLNK, etc., to allow build with
  VAX C (reported by Tony Bolton) - TD
* add parentheses to eval-expression in CF_MAKE_INCLUDE configure test to
  accommodate bash2 (Tadayoshi Okuma <tad@pht.co.jp>)
1998-10-01 (2.8.1pre.6)
* add EMX to special cases for SetOutputMode, to force stdout to O_BINARY mode
  so that downloading binary files will not corrupt them (reported by Ilya
  Zakharevich <ilya@math.ohio-state.edu>) - TD
* correct missing "\n\" in change to LYrcFile.c for pre.4 (reported by David
  Eaton) - TD
* reorder HTCheckForInterrupt() so that partial display mode will work for
  VMS (reported by LP) - TD
* fix LYK_DOWNLOAD to restrict downloading remote links for local_host_only,
  like it was done for mailto: links recently, see comments where in. - LP
* replace few statusline messages with ones from LYMessages.en.h
1998-09-30 (2.8.1pre.5)
* force compile on VMS to use stdarg.h; it was ifdef'd for __STDC__ which
  VAX C does not define, though it does support stdarg.h (reported by Tony
  Bolton).  Test-compile HTVMS_WaisUI.c on Linux to check... - TD
* update url for tcplib in INSTALLATION - DK
* fix HTDOS_name trace massage - LP
* expand "~" in include-statements in lynx.cfg (reported by LP) - TD
* remove some obsolete stuff from INSTALLATION - HN
* DOSPATH fix: user input URL like c:/path/file.ext (begins with drive letter)
  now resolved as local path and will not be passed to DNS search in any case
  (was running URL guessing process for host "c:" if file.ext not found...)
  fix LYFillLocalFileURL() - LP
* fix HTUserMsg2 trace massage - LP
* add user's guide documentation for COOKIE_ACCEPT_DOMAINS and
  COOKIE_REJECT_DOMAINS - BJP
* change default Unix cookie-file name to "~/.lynx_cookies" - BJP
* customize incremental rendering:
  - add -partial_thres[=NUMBER] option to set the number of lines
  - add PARTIAL_THRES config variable in lynx.cfg to set the number of lines
  - add partial_thres variable in .lynxrc to set the number of lines.
    Selecting save to disk and hitting Accept Changes in options menu will save
    this variable to the current value.  Haven't looked into making a form
    entry for this yet.  With -partial_thres command line option, probably not
    necessary (patch by Eric <erbrun@bellatlantic.net>).
* fix some text in lynx.man and Lynx_user_guide.html.  The man change includes
  changes to "h" and "k" so they work whether or not vi keys are on - DK
* workaround for inconsistency between slang ports to DOS and other platforms
  by suppressing test of SLtt_Use_Ansi_Colors.  This fixes a problem where
  colors change in the slang DOS port when the forms_based option menu is
  accepted - DK
1998-09-28 (2.8.1pre.4)
* tentative fix for HPUX sed problems (reported by jones.peter@uqam.ca) - TD
* update lynx.man and lynx.hlp to reflect new command-line options - TD
* minor documentation fix - LP
* miscellaneous fixes for build on VMS (reported by Tony Bolton) - TD
* tweak 'const' assignment for VMS (in LYReadCFG.c and LYPrint.c) - LP
* clarify discussion of download in Lynx user's guide (Al Gilman).
* trim trailing newline from lines read from cookie file so that Lynx does
  not send embedded newlines in the cookie list - BJP
1998-09-27 (2.8.1pre.3)
* fix a place in cookie_add{accept,reject}list() where cookies would be deleted
  from memory if a persistent cookie had the same domain as an entry in
  COOKIE_{ACCEPT,REJECT}_DOMAINS - BJP
* move Lynx's writing of persistent cookies to COOKIE_FILE from happening when
  you enter the Cookie Jar page to quit time, before cleaning up temporary
  files - BJP
* Lynx_user_guide.html: add text about lynx.cfg - LP
* forms-options: options names moved 2 columns to the right (is it good?) - LP
* fix reading .lynxrc "character_set" (trim trailing spaces in fullname) - LP
* fix ReadProgress message for LYshow_kb_rate (while <1024 bytes received
  we showed byte-transfer rate even in KB mode), extra dot removed - LP
* DOS text files: opening text mode switch now incorporated in LYNewTxtFile/
  LYAppendToTxtFile and hope for the best - LP
1998-09-25 (2.8.1pre.2)
* fixed forms submission charset: was broken by me in dev26 (HText_SubmitForm()
  in GridText.c) - LP
* documentation updates for verbose images - LP
* minor fix for trace message in TrimHightext() -LP
* add compatibility with 2.8/2.7.2 lynx.cfg and (especially) .lynxrc - old
  "character_set" parameter now acceptable - LP
* add OUTGOING_MAIL_CHARSET symbol to lynx.cfg to make mail more recognizable
  by remote recipient, it may be "US-ASCII" for 7 bit approximation as the
  safest case or any other value.  If blank, use display character set
  (default, compatibility).  Currently implemented only for "subject" in
  "print-to-email" - LP
* fix SGML.c so invalid characters are not dispalayed in hex UHHHH but just
  omitted as already done for plain/text mode - LP
* fix download' suggested file name (8bit) - LP
* correct logic error in "Change Location" command, and allow "~" there in
  addition to the existing "~/" prefix (reported by Ismael Cordeiro) - TD
* ifdef'd out "don't replace '\n' with ' ' if Chinese or Japanese" from dev.23,
  with symbol EXP_JAPANESE_SPACES, FIX_JAPANESE_SPACES based on discussion with
  HN, LP - TD
* correct missing '\' in generated sed-script for "make install-help" rule,
  which changed a couple of "/html" substrings to ".html" (reported by BL) - TD
* modify cfg_defs.sh script to handle empty token in config.cache, e.g., a line
  such as "foo=${foo=}" (reported by Philip Chong <pchong@boopsie.ml.org>) - TD
* modify so that lynx_cfg_infopage() and lynx_compile_opts() pages are not
  invoked when Lynx is running -anonymous - TD
1998-09-22 (2.8.1pre.1)
* correct logic error in parse_restrictions() which caused infinite loop,
  probably from changes in dev.8 (reported by HN) - TD
* add SHOW_KB_RATE symbol to lynx.cfg to allow user to control whether
  HTReadProgress should show KB/sec or bytes/sec - TD
* modify HTReadProgress to allow user to display KB/sec or bytes/sec - BL
* add/use new function LYstyles(), to force initialization of styles[] array
  when it is used outside HTML.c; fixes a problem with Lynx not using styles
  for files listed on the command line - TD
* correct keymap strings for F1 and DO_KEY - TD
* add keymap table entries for F1, to accommodate slang which appears to ignore
  terminal description when keymaps are defined - TD
1998-09-20 (2.8.1dev.29)
* add checks/warnings for user agent string in forms-options menu - TD
* change render_item to force a '/' before substituted path or directory
  strings if (as in OS/2 EMX) absolute filenames do not normally begin with a
  '/' -TD
* modify HTnameOfFile_WWW() to interpret an empty acc_method as a local file,
  allowing its use in permit_location(), making OS/2 EMX dired-mode change
  permissions work - TD
* make download and print menus a little more compact in intermediate/advanced
  user modes - TD
* correct filename shown in download menu - LP
* change behavior of configure --enable-forms-options switch.  By default, both
  old and new options menu are available via a command-line toggle
  "-forms_options" or lynx.cfg statement "FORMS_OPTIONS:TRUE/FALSE".  Configure
  --enable-forms-options now _disables_ old-style code, which is
  ifdef'ed with "#ifndef EXP_FORMS_OPTIONS" - LP
* add more pointer-checks in GridText.c so that "lynx LYNXDOWNLOAD://" does
  not crash (reported by Wilson Cheung) - TD
* add special case to handle NNTPSERVER environment variable, which had been
  lowercased as part of LYReadCFG.c cleanup (reported by Wilson Cheung
  <wcheung@netcom.com>) - TD
* modify info-page to add link to new internal page showing the noncomment
  lines from lynx.cfg - LP, TD
* use function wwwName to reduce clutter - LP
* create "lynx.cfg Information" page, comments skipped, "include" OK.
  The link is available from '='InfoPage and 'O'ptions menu.
  Since DJGPP/Win32 binary have no built-in absolute path for distributions
  lynx.cfg those ports will look for a copy of lynx.cfg in lynx_help/
  for most advanced info/comments (if you made http:// depository for lynx help
  please care of it) - LP
* tweak helpfilepath URL (for DOSPATH only) - LP
* some cleanup of cp852, cp850, cp775 - LP
1998-09-17 (2.8.1dev.28)
* minor fix to make PRCS ProjectDate print in "dd mmm yyyy" form - TD
1998-09-17 (2.8.1dev.27)
* minor fixes for recent (dev24 and dev25) chartrans changes - LP
* add LYNX_DATE definitions in userdefs.h; Info Page now shows the date of your
  lynx along with version number and a link to the latest sources.  - LP
* use ECHO_CC symbol in install-help rule to control whether the sed commands
  are echoed - TD
* corrected install-help rule to avoid getting compress-suffix repeated in
  the generated/updated files - TD
* documentation nit for COLLAPSE_BR_TAGS (Michael Warner)
* use getsockname_s rather than getsockname for djgpp (from patch by Gisle
  Vanem) - DK
* add .bz2 suffix to lynx.cfg and HTInit.c, for bzip2 utility - DK
* modify store_cookie to suppress warning message for invalid domain if Lynx is
  setup to accept all cookies - LV
* modify/expand LYLocalFileToURL() function, getting rid of most places where
  inline concatenation is used for "file://localhost/<filename>", as well
  as eliminating a number of static buffers - TD
* move fallback definitions for POSIX S_ISLNK, etc., out of NeXT ifdef's, to
  make this compile on Apollo (reported by David Eaton) - TD
* restructured pathname-tests in LYLocal.c, using common utility functions
  ok_stat, ok_lstat, ok_file_or_dir to simplify freeing pointer allocated
  by HTfullURL_toFile - TD
* modify HTLocalName, making it a macro around a more flexible function
  HTnameOfFile_WWW, to reuse logic for stripping off "file://localhost" and
  "file:" prefixes, fixing some places where a spurious '/' would be left in
  EMX local filenames (other macros: HTfullURL_toFile, HTpartURL_toFile) - TD
* modify configure script macro CF_PATH_PROGS for OS/2 EMX, so that compiled-in
  utility pathnames work - TD
* use HTDOS.c module for OS/2 EMX, since it has similar device syntax - TD
* correct logic for wrapping long lines, to not use the rightmost column of the
  screen, fixes a problem with duplicated character (reported by LP) - TD
* correct logic for dumping screen to file, so that blank lines are retained,
  not counted in the logic for pruning soft-newlines which supports wrapped
  lines - TD
* add info and user messages to traces - TD
1998-09-12 (2.8.1dev.26)
* change behavior of NSL_FORK and related I/O (patch by BL)
  - Make URL guessing (www.huh.com?  www.huh.org?  www.huh.net?) interruptible.
  - Make URL guessing from the command line interruptible.
  - Use select() instead of FIONREAD.  This makes it work on OSes where
    previously it only *looked* like it was working.
  - select() on stdin as well as the child pipe, when using [n]curses (not
    SLANG).  This allows interrupt to be processed instantly, without
    up-to-1-second delay.
  - While looping, 1 second at a time, bail out after "too many" (currently 50)
    loops:  just in case something weird happens, like select() returning some
    unexpected error that we ignore.
  - Make sure child processes are always killed and reaped.
  - Close pipe ends as soon as possible.
  - Now write the length down the pipe (using a known-to-the-program length of
    sizeof(int)) first -- this both helps workaround old CMU TCP bugs and the
    fact that select() doesn't let us get number of bytes ready, like FIONREAD
    does.
* change default for NO_ANONYMOUS_EMAIL to TRUE (patch by HN)
* use url for "W3C HTML Validation Service" rather than "A Kinder, Gentler HTML
  Validator"
* update url for HTML Quick Reference Guide (report by LE) - TE
* modify verbose images to show ISMAPs and USEMAPs (patch by LE).
* fix typos in AttrList.h, LYStrings.h (reported by LV & HN) - TD
* Chartrans recovery and cleanup:  by introducing an invariant
  "current_char_set and UCLYhndl_for_unspec always valid charsets" we solve
  possible problems with invalid/undeclared charsets.  Use
  'safeUCGetLYhndl_byMIME()' for reading charset information from
  lynx.cfg/userdefs.h/command line switches to recover possible typos by
  fallback to ISO-8859-1; If UCLYhndl_for_unrec or UCLYhndl_HTFile_for_unspec
  not set explicitely - now fallback to UCLYhndl_for_unspec (was before, but
  not clear in certain places).  Add comments to UCMap.h, add comments on
  chartrans initialization in LYMain.c.  UCAssume_localMIMEcharset and
  UCAssume_unrecMIMEcharset now removed (UCLYhandl_* do all the stuff).  - LP
* LYCharSets.c:  LYRawMode code simplified and comments added.  It was realized
  that UCAssume_MIMEcharset may differ from its handler as LYRawMode history.
  Also:  HTMLSetRawModeDefault() moved into HTMLUseCharacterSet() to reduce
  clutter, declare HTMLSetCJKCharacterSet() as PRIVATE.  - LP
* more "big5" bugs fixed (in HTMIME.c and HTFile.c); function Set_HTCJK() added
  to LYCharSets.c - LP
* LYCharUtils.c:  META charset code corrected against 2.7.2, obsolete code
  removed - LP
* partial mode now repaint the screen in one stage with a complete display
  ('display_lines' received, fix in HTPartialDisplay()).  Incremental rendering
  of the first page may be annoying on slow connection (reported by Nelson
  Henry Eric <nelsonhe@nara.kindai.ac.jp>) - LP
* temp fix for HText_trimHightext side effect from partial mode by introducing
  a flag in HText_beginInput(), so this side effect still only happens for long
  documents with forms input mixed with normal href= link.  - LP
* print menu: fixed document URL near the top (was temp file name) - LP
* forms-options menu: fixed screen size in Novice mode - LP
* limit length of strings copied via tok_values[] in LYCookie.c - TD
* clean up a few memory leaks in cookie_add_acceptlist() and
  cookie_add_rejectlist() in LYCookie.c.  These were leaking 4 bytes for each
  entry in COOKIE_ACCEPT_DOMAINS - BJP
* fix to LYLoadCookies() which was causing duplicate invalid cookies to be
  loaded - BJP
* split out install-doc rule in top-level makefile to install extra
  documentation files in $(libdir)/lynx_doc (request by HN) - TD
* improved algorithm to set 'secure_value', used in forms-options to circumvent
  spoofing (based on comments from Mike Castle) - TD
* integrate WB's mouse changes (see 1997-04-24) for page-up/down into the Unix
  flavors of mouse support (e.g., ncurses and slang) - TD
* use ncurses define_key to implement lynx-keymaps (see dev.10) - TD
* modify slang keymap code to work with slang 0.99-38 - TD
* replace several ifdef'd pathname constructions to use LYAddPathToHome() - TD
* make keymaps file consistently named on Unix and VMS - TD
* remove redundant "Lynx" from internal-page titles (suggested by LP) - TD
* remove install-log makefile target, generate cfg_defs.h file directly from
  lynx_cfg.h and config.cache, to compile-in the configuration-definitions
  rather than rely on external file lynx_site.txt - TD
1998-09-06 (2.8.1dev.25)
* corrected compiled-in path for lynx_site.txt - TD
* implement logic for exec-links in forms-options page - TD
* add configure options --enable-exec-links and --enable-exec-scripts - TD
* correct logic for show-color in forms-options page (reported by DK) - TD.
* implement logic to set $DISPLAY in forms-options page - TD
* add/use functions LYsetXDisplay() and LYgetXDisplay() to reduce clutter - TD
* retain help-link on internal pages only for those where the pages would be
  pushed onto the history stack, and only in novice mode - TD
* absorb LYSystem.h into LYUtils.h, adding LYSystem() and LYSysShell functions
  to LYUtils.c to hide djgpp clutter - TD
* limit strings passed to mailer in LYMail.c to 7-bit ASCII, converting other
  characters to '?'.  This guards against trash on the end of the mailing
  address in a mailto link (from Duncan Simpson <dps@io.stargate.co.uk>).
* add fallback definitions for <sys/stat.h> S_xxx macros to tcp.h (from report
  by Francisco A Tomei Torres <fatomei@sandburg.unm.edu> that OpenStep 4.0
  lacks definition for S_IWOTH) - TD
* modify quote_pathname() so that for DJGPP it does not put single-quotes
  around the result - DK
* correct a missing assignment to turn bold off in split_line (GridText.c) - LE
* Fixed: forms input in display_partial mode!  Previously hightext was printed
  at wrong positions while loading was in process (try -debug_partial to see
  the bug).  Fix made in HText_pageDisplay:  we call HText_trimHightext() which
  was the main part of HText_endAppend() before.  Seems no more problems
  reported from incremental rendering mode!  - LP
* set PARTIAL mode ON by default, unless it disabled in lynx.cfg or by
  configure --disable-partial option - LP
* restore temporary -debug_partial switch, broken in dev.23. - LP
* made trace in HText_appendCharacter() a little more readable
  for lynx special characters - LP
* chartrans:  human-readable character set names in Options Menu now changed
  according to Netscape 4.x style - "language (MIMEname)", it looks more useful
  and reduce chaos in people's heads.  Documentation corrected
  (option_help.html/Lynx_User_guide.html).  Minor tip:  "Central and Eastern
  European" was truncated to "Eastern European" because of space limitation in
  popup menu.  (Changes in chrtrans/*.tbl, LYCharSets.c, also docs including
  userdefs.h/lynx.cfg).  Since names were changed, users on display other than
  iso-8859-1 should go to options menu and resave .lynxrc (and probably correct
  lynx.cfg - character_set now uses MIME notation in sync with other charset
  settings, although complete name string is still acceptable for this field).
  - LP
* an attempt made to tweak the code replacing lynx internal 'main' charset '0'
  (iso-8859-1 in fact) with its MIME name. - LP
* rename ifdef EXP_8BIT_TOUPPER in favor of lynx.cfg switch FORCE_8BIT_TOUPPER
  - LP
* remove a lot of "(char **)" casts from HTML.c which obscured some type
  mismatches - TD
* add/use functions LYIsHtmlSep, LYAddHtmlSep, LYTrimHtmlSep, LYIsPathSep,
  LYAddPathSep, LYTrimPathSep to reduce clutter - TD
* fix a bug, present at least since dev.17, where lynx can't download files if
  it is started from one of the root directories of a disk drive, since it is
  trying to write to "c:\\file.ext", rather than "c:\file.ext" - DK
* correct a comment in userdefs.h; commercial Japanese sites are named with
  co.jp, not com.jp (LV).
* correct some debug messages in LYCookie.c - BJP
* fix a missing </h1> in ShowInfo.c - SKY
* modified '+'->' ' conversion to allow Unix commands to have '+' beginning
  options - TD
* sorted all option items (i.e., static variables, postoptions(),
  gen_options()) according to the sections they are in - SKY
* added '+'->' ' conversion for forms-options values - SKY
* centered 'save to disk' and put a dash between 'accept' and 'reset' for
  clarity - SKY
* add "-cookie_file=" commandline option to specify cookie file - BJP
* add "cookie_file=" option to .lynxrc - BJP
* add "cookie_file:" option to lynx.cfg - BJP
* change default cookie file to "Home_Dir()/cookies" (or sys$login:cookies
  for VMS, which may or may not work, DOS also needs to be checked) - BJP
* add cookies switch to options menu - LP
* Security considerations and form-based options:  items restricted in
  gen_options() should be ALSO restricted under the same conditions in
  postoptions() to prevent a limited access user to edit option's HTML code
  manually and submit a restricted items.  This may be not a good idea to have
  two functions in sync but those functions are synchronized anyway.  Please
  read comments inside the functions if change something!  - LP
* add new functions BeginInternalPage and EndInternalPage to reduce clutter in
  code that sets up internal pages (email from LP).
* change version in makefile.in to 2-8-1 (reported by DK).
* the code in GridText that adds control characters to the current line
  does not test for buffer overflow.  Normally Lynx gets away with this because
  it will wrap the current line as soon as the line exceeds the display width,
  but if you have a file with nothing but control characters with no
  displayable text in-between (a few thousand hidden links will do), then Lynx
  bombs.  Modified to silently ignore excess control characters as well as add
  a few extra bytes when allocating the line buffer to allow for a bunch of
  control characters followed by a kanji or utf-8 sequence.  (patch by Dick
  Wesseling <ftu@fi.uu.nl>)
* remove WWW/Library/Implementation/HTInit.c, which is not used, since
  src/HTInit.c has this functionality - TD
* change ID="<number>" in Lynx_users_guide.html to ID="<name>" to appease
  weblint; tested with IE&NS - TD.
* Al's convention of '#<number>' into '#<id name>' in Lynx_users_guide.html is
  included - SKY
1998-08-31 (2.8.1dev.24)
* re-correct DH's patch for COLLAPSE_BR_TAGS (reported by LV) - TD
1998-08-29 (2.8.1dev.23)
* make interim fix for gzip'd html files until we can resolve portability
  issues raised by SKY's renaming - TD
* implement LY_SOFT_NEWLINE, to mark places where wrapping is done in
  HText_appendCharacter, to allow printing to join lines back together
  (reported by LP) - TD
* correct missing assignment in change to HText_appendCharacter, fix a core
  dump - TD
* removed SKY's change that attempted to skip help-links, since it causes a
  core dump, e.g., when viewing source - TD
* use LYCloseTempFP in forms-options code and LYPrint.c where file was opened
  with LYOpenTemp, to fix a core dump - TD
* All XYZ_TITLE defines of UIPs (User Interface Page) are collected in
  LYMessages_en.h for multi language support - SKY
* Head and H1 of each UIP is standardized; reduced to 1 line.  In this line a
  context sensitive Help anchor introduced which is skipped by default; i.e.,
  'd' will directly goto 'Save to Disk' not to the help anchor - SKY
* Download and Print UIPs are divided into 'Standard' and 'Local additions'.
  Current and Suggested Filenames are printed on the page which was hidden on
  the status line or accessed only by '=' - SKY
* Information page now has links to either development or lynx home pages
  depending on LYNX_RELEASE define.  Besides compile options can also be
  accessed on this page:  $helpdir/lynx_site.txt.  A file derived from
  'config.cache'.  Its corresponding makefile macro is 'install-log' - SKY
* New Form-based options page is re-organized; logical sections are introduced
  and sorted alphabetically (except for 'User Mode' - SKY
* All links in the help files are marked, i.e., each
  'href="../_filename.html_#section"' is converted to
  'href="../@FILENAME@#section"'.  This is useful if a help filename or
  link has to be changed through out whole package.
* 'lynx_help/help_files.txt' is introduced which contains
  FILENAME=_filename.html_ definitions.  Format and details are given in the
  file - SKY
* All help files are renamed from '.html' -> '.html_' - SKY
* For context sensitive help links in UIPs 'src/LYHelp.h' is created with all
  the filenames marked like the help files.  It will be included from
  LYGlobal.h.  In 'src/makefile.in' necessary changes are done to load the
  filenames from 'lynx_help/help_files.txt' - SKY
* To be able to compress help files '--enable-gzip-help' option is added in
  configure script.  In 'makefile' 'install-help:' is updated.
  If COMPRESS_PROG and COMPRESS_EXT are *both* left empty (default) no
  compression will be carried.  For the moment compression is restricted only
  to 'gzip'.  Necessary updates are done in configure.in - SKY
* documentation fixes for nsl-fork, print screen - PW
* don't replace '\n' with ' ' if Chinese or Japanese - HN
* use title information rather than suggested filename as a subject line when
  printing a page to email - LP
* add verbose_images to old-style options menu, and the .lynxrc - LE
* add verbose_images and useragent to forms-based options menu - LP
* disable download of "mailto:" links (reported by SKY (Sinan Kaan Yerli)
  <sky@star.cpes.susx.ac.uk> ) - LP
* Change HTUserMsg to HTInfoMsg for "ALREADY_AT_BEGIN" and "ALREADY_AT_END"
  messages to make it less annoying - LP
* reduce clutter in mainloop by inserting LYpop() in postoptions() - LP
* makefile.dos: split long lines - LP
* Fix bug with TAIPEI big5 charset in src/LYCharUtils.c
  (this typo also found in lynx2.7.2: "big-5" instead of "big5"),
  patch by Shou-Chuan Lai <chuan@cs.nthu.edu.tw> - LP
* Add -debug_partial command line switch so we got MessageSecs dely
  between incremental rendering stages if partial display mode is ON.
  (MessageSecs available from lynx.cfg and set to 2 sec by default).
  The problem in incremental rendering of forms input was reported by SKY
  (Sinan Kaan Yerli) <sky@star.cpes.susx.ac.uk> ), still not fixed
  but now we may enter form-based options menu in -debug_partial mode
  and rerender the page with Cntrl-R to see what is happening in fact. - LP
* Serious bug fixed for DISP_PARTIAL: two asynchronous processes synchronized.
  HTDisplayPartial() synchronized by flag against HText_new() which create
  the new HTMainText object.  Otherwise HTDisplayPartial() sometimes was
  matching old HTMainText (with its own line counter) and repaint previous doc,
  not a new one.  TRACE log now got a message from HText_pageDisplay - LP
* fixed last chartrans changes, lines such as
      #0x99    #NOTDEFINED
  should not be commented with leading comment symbol because they are ignored
  by makeuctbl in fact - LP
* modify DH's patch for COLLAPSE_BR_TAGS to only modify the nonstandard case,
  thereby making that more restrictive, and restoring standard behavior
  (reported by HN) - TD
1998-08-21 (2.8.1dev.22)
* correct test for -std1 compiler option on Digital Unix (reported by Michael
  Warner) - TD
* modify treatment of COLLAPSE_BR_TAGS, so that if it is set TRUE, two or more
  concurrent BRs will be collapsed into a single blank line.  Note that the
  valid way to insert extra blank lines in HTML is via a PRE block with only
  newlines in the block (David Henderson <davidh@psiphi.org>)
* clarification in userdefs.h - HN
* MS Windows codepages updated for EURO SIGN (0x20AC), from ftp.unicode.org -LP
* minor fix for DISP_PARTIAL, disable scrolling when HTTP request already sent
  but the new document not displayed on the screen yet - LP
* ifdef DOS/WINDOWS to open lynx.trace in text mode - LP
* rearrange text in lynx.cfg concerning character_set - LP
* correct miscellaneous typos - LP
* Fixed:  Verbose images now work with [IMAGE]-Submit.  Also, fixed the core
  dump when clickable_images is on.  The problem was an oversight in
  MakeNewTitle() - LE
* reviewed the INSTALLATION file as it relates to DOS and updated it for the
  newly released version of PDCurses 2.3.  Added the HAVE_GETBKGD define to
  makefile.dos, fixes some of the unusual background color handling that was
  present in the PDCurses DOS port - DK
* correct ifdef:  LYOptions.c fails to build with -DEXP_FORMS_OPTIONS but
  _without_ -DDIRED_SUPPORT (e.g., djgpp) - LP
* redesigned cookie_add_{accept,reject}list in LYCookie.c -- they work now -BJP
* added COOKIE_{ACCEPT,REJECT}_DOMAINS in .lynxrc handling to LYrcFile.c - BJP
* slight spacing fix in lynx.cfg - BJP
* added blurb in lynx.cfg about COOKIE_{ACCEPT,REJECT}_DOMAINS - BJP
* -accept_all_cookies on the commandline works as a toggle now (against
  lynx.cfg value -- NOT against .lynxrc value) - BJP
* change HTAlert for bad partial reference to an HTUserMsg to make it less
  annoying (request by Philip Webb, Jason McBrayer)
1998-08-15 (2.8.1dev.21)
* correct pathname for help file in forms-options screen - TD
* reduce clutter in LYOptions.c with SELECTED, DISABLED, NOTEMPTY macros,
  PutOptValues, GetOptValues functions - TD
* modified LYOptions to include MBM support from form-based options,
  by making a link href="LYNXOPTIONS://MBM_MENU" like it was in LYPrint.c and
  calling edit_bookmarks() from postoptions() - LP
* add/use HTUserMsg to encapsulate most of the important messages - TD
* add/use HTInfoMsg to encapsulate most of the informational messages - TD
* make most of the alert messages use HTAlert, for consistency - TD
* exclude forms-options pages from Visited Links page - LP
* The current keymapping for the DOS Slang ports maps the keys directly to lynx
  actions via keymap.c.  There are several places in the code that test for
  arrow keys, page up or down, home and end for special handling that depend on
  the lynx definition of the keys.  Hence, the keys in the DOS Slang ports were
  failing the tests and not working as expected.  The following patch now maps
  these special keys.  They can no longer be mapped individually via the KEYMAP
  mechanism in lynx.cfg.  Arrows should now work in GOTO fields.  Tested the
  patch against the binaries maade by makefile.dos, makefile.dsl, and
  makefile.wsl - DK
* The wsl port seems to be working well with DISP_PARTIAL, make this the
  default - DK
* correct spelling in lynx.cfg - DK
* modify HText_appendCharacter to wrap long lines when displaying HTML document
  source - TD
* add configure option --enable-cgi-links - TD
* clarify discussion of no_proxy in lynx.cfg (Al Gilman).
* Multilingual bookmarks:  now we store characters >127 in bookmark titles with
  a more consistent and independent way, by keeping in unicode as &#UUUU
  (NCR=numeric character reference).  The idea belongs to Klaus Weide & Andrey
  Chernov (long ago).  It may be useful if we need switching display charset
  frequently.  This is the case when you use lynx on different platforms, e.g.
  on UNIX and from remote PC, but want to keep common bookmarks file valid.
  Compatibility:  NCR as part of I18N and HTML4.0 specifications supported
  starting with Lynx 2.7.2, Netscape 4.0 and MSIE 4.0.  New option to lynx.cfg
  added:  NCR_IN_BOOKMARKS which is FALSE by default.  - LP
* Tweak "print options menu" to exclude choises which are not available under
  the certain conditions (print to the screen and lpansi on DOS/WINDOWS, print
  to e-mail for local_host_only).  - LP
* Forms options menu:  add a link on option_help.html; synchronize
  option_help.html against Lynx_User_guide.html and lynx.cfg.  Rename label
  "raw 8-bit or CJK Mode" with "CJK Mode" for CJK people and "raw 8-bit" for
  others.  Cleanup postoptions() by introducing flags. - LP
* Force HTuncache_current_document if gen_options() invoked. This is a
  dirty fix until we uncache previous document only when necessary.  - LP
* Add time/date in addition to X-URL and BASE (PrependBaseToSource), (request
  by Hans-Joachim Gurt <gurt@nacamar.net>) - LP
* Turn partial_display off if we are not interactive (reported by Ari Moisio
  <armoi@sci.fi>) - LP
* more fixes/refinements for auto-configuring socks5 on AIX (report by Brian
  Hauber) - TD
1998-08-06 (2.8.1dev.20)
* rename eat_all_cookies to accept_all_cookies everywhere - BJP
* added ACCEPT_ALL_COOKIES lines to the dist lynx.cfg with the appropriate
  description - BJP
* added COOKIE_ACCEPT_DOMAINS and COOKIE_REJECT_DOMAINS to lynx.cfg.  These are
  comma delimited lists of the domains to handle - BJP
* added cookie_add_acceptlist and cookie_add_rejectlist to LYCookie.c, which
  are passed the list of domains from lynx.cfg and add them to the global
  cookie list.  These may be subject to change, as I might not be handling the
  LYstrsep() right -- it works with dev19's LYstrsep(), but hasn't been tested
  with Bela's...  - BJP
* added a big ugly ifdef'd out section to LYrcFile.c with what I have so far on
  the .lynxrc handling of COOKIE_{ACCEPT,REJECT}_DOMAINS.  Don't use it.  Makes
  nasty segfaults - BJP (Brian J Pardy)
* fix a bug where the DJGPP_KEYHANDLER version doesn't allow movement by arrow
  keys within a text area.  Undo previous patch to LYGetFile.c, with LYgetch
  now changed where it is defined in LYStrings.c, rather than at each place
  where it is used.  The patch in LYStrings.c regarding Windows should fix the
  problem with keymapping that occurred when we got rid of RAWDOSKEYHACK - DK
* turn on DISP_PARTIAL in makefile.dos - DK
* correct typo in LYOptions.c - BL
* corrected logic of LYstrsep - BL
* Few minor typos and forgotten notes in man/hlp/cfg files; also quote Bela's
  note on lynx.cfg INCLUDE facility - LP
* correct typos in makefile.wsl, makefile.dsl - LP
* correct typos, fix character set problems in recent changes of LYOptions.c
  - LP
* move include for socks.h past tcp.h, to allow for redefinition of some
  symbols on AIX (report by Brian Hauber) - TD
* adjust headers so that each can be compiled separately, eliminating order
  dependencies - TD
* include tcp.h always from within HTUtils.h, to enforce ordering of headers
  needed for socks5 definitions - TD
* use S_ISREG, S_ISDIR macros to reduce clutter - TD
* make test for OpenHiddenFile to overwrite user's file more stringent by
  ensuring that the given pathname is not a link from a world-writable
  directory (reported by BL, with suggested patch) - TD
* add/use LYPathLeaf() function to reduce clutter of pathname-leaf parsing - TD
* eliminate redundant definition of 'FREE() - TD
* ifdef'd LYOptions.c to reduce unneeded code wrt --enable-forms-options - TD
* check in OpenHiddenFile to ensure that we overwrite only regular files,
  since we also force the file's permissions to 0600 - TD
1998-07-31 (2.8.1dev.19)
* modify OpenHiddenFile so that it can overwrite files owned by the real
  user if the O_EXCL open fails because the file already exists - TD
* add experimental forms-based options screen (patch by Mike Castle), ifdef'd
  with EXP_FORMS_OPTIONS and configured with --enable-forms-options.
* add option -eat_all_cookies and corresponding config variable
  EAT_ALL_COOKIES (Brian J Pardy <posterkid@psnw.com>).
* correct spurious 'Content' string versus newline after X-URL in LYMail.c
  (Bela Lubkin and LV).
* updated versions of config.guess and config.sub based on automake 1.3 - TD
* updated experimental persistent-cookie support based on RP's patch:  Replaced
  the call to strsep with a home-rolled one for those people who don't have it.
  (Reported by Bela Lubkin, Mon, 27 Jul 1998 16:51:14 -0700 on the mailing
  list.) Bela's modification to make some character arrays static is also
  included.
* nits/spelling in LYPrint.c, LYUtils.c (reported by Mike Castle).
* changed LYGetFile.c to build lynx2.8.1dev.18 with SLANG and the
  DJGPP_KEYHANDLER for DOS - DK
* fix a couple of places where the return-value of calloc was not checked
  (reported by Mike Castle <dalgoda@ix.netcom.com>) - TD
* correct typo in command-line parsing of -lss option (reported by Chris
  Kottaridis <chrisk@BSDI.COM>)
* define _AIX if needed for socks5 (request by Brian Hauber) - TD
* improved configure test for getgroups array type - TD
1998-07-24 (2.8.1dev.18)
* improved test for socks5, to account for special cases on AIX (reported by
  Brian Hauber) - TD
* several changes to reduce the number of gcc cast-qual warnings, by adding
  CONST, removing casts - TD
* add configure option --enable-syslog to enable system logging of requested
  URL's - TD
* add RP's experimental persistent-cookie support, and configure option
  --enable-persistent-cookies, ifdef'd with EXP_PERSISTENT_COOKIES - TD
* removed references to DOSRAWKEYHACK, which is no longer used.  Modified the
  dos makefile for libwww and makefile.dsl to default to using display_partial.
  Modified INSTALLATION to reflect the successful use of slang with the dos
  port and the now confusing alternatives when compiling the dos port, along
  with some other updates - DK
* modify lynx_enable_mouse() for pdcurses configuration so that mouse support
  is disabled unless -use_mouse is specified.  This is ifdef'd with
  __BORLANDC__ for the time being (WB).
* resync build-slang.com, against build.com - TD
* add $(MMSQUALIFIERS) to top-level descrip.mms, e.g., to use options such as
  /FROM, /IGNORE, /NOACTION, etc., and $(INCLUDES) definitions to lower-level
  descrip.mms files.  Improve error-recovery in build.com (patches by Liam
  Davis <ld@stian.demon.co.uk>)
* use memset to clear soc_in fields before doing a connect, needed for BSD/OS
  (patch by Jeffrey C Honig <jch@bsdi.com>).
* remove spurious sprintf params when using FIXED_RECORD_COMMAND_MASK which has
  only one parameter, change VMSsignal from void* to void (report by Mike Xun
  Ma <mike@mira.concordia.ca> ) - TD
* use open(O_CREAT|O_EXCL) to open new hidden files - TD
* eliminate_*putenv_cmd variables used by LYReadCFG.c as placeholders for
  putenv calls - TD
* disable include of <sys/filio.h> for VMS, from report by Chris Doran) - TD
* fixes for VMS: mismatched curly brace, etc., from CTRACE and buffer-overflow
  changes (reported by chris.doran@gblis.mail.abb.com) - TD
* correct a loop in HTML_start_element that strips 7 leading characters from
  an href, fixes a core-dump in traversing ".." to "/" - TD
* use new macro SetOutputMode to reduce some clutter - TD
* modify interface of LYCachedTemp so fileCache member is reset to null, fixes
  bug in my recent cleanup of temp-files, which caused a core-dump - TD
* add kb/sec rate to HTReadProgress message - TD
* modify computation in HTReadProgress to interpolate rate - LP
* One more fix for DISP_PARTIAL: to avoid blinking while reloading document
  with Newline_partial > 1 (say, we press '*' and noproxy) we repaint the page
  only when Newline_partial <= HText_getNumOfLines(). - LP
* add "-verbose" command-line switch. - LP
* DOS fix: open stdout in TEXT mode for -help and startup error message. - LP
* correct use of $mapname variable in CF_ALT_CHAR_SET (Tomas Vanhala)
1998-06-25 (2.8.1dev.17)
* add configure option --with-socks5 (request by Brian Hauber
  <bhauber@frenzy.com>) - TD
* define symbols HAVE_CURSESX_H, HAVE_JCURSES_H (report by Georg Schwarz
  <schwarz@physik.tu-berlin.de>) - TD
* modify logic that reports progress of download to update screen no more than
  once per second, fix an overrun problem (reported by Jacob Poon
  <a324poon@cdf.toronto.edu>) - TD
1998-06-11 (2.8.1dev.16)
* modify configure script to check for special compiler options which are
  assumed for particular platforms (suggested by BL) - TD
* modify display_page in GridText.c so that TRACE does not cause a repaint,
  since that causes colors to be incorrectly rendered when tracing - TD
* fix a few of the signed/unsigned mismatch warnings in GridText.c - TD
* correct pathname in LYOpenScratch call for bookmarks (reported by DK) - TD
* DISP_PARTIAL:  fix initialization of newdoc.line (case LYK_DOWNLOAD,
  mainloop) to correct display while 'd'ownloading files (it was initialized
  _after_ the download completed and was good enough without display_partial
  mode).  - LP
* correct some ifdef's for DISP_PARTIAL - LP
1998-06-04 (2.8.1dev.14)
* minor formatting fixes and documentation for upload screen - LP
* remove config.cache at beginning of configure script - TD
* eliminate cast for GetChar in LYStrings.c (from bug report by Michael Warner,
  analysis by BL) - TD
* shorten logs from WWW/* by disabling echo of compiler options as in src/* -TD
* add configure test for types pid_t and uid_t - TD
* add configure test for array type used in getgroups call, to distinguish
  between BSD and POSIX variations which use different sizes - TD
* modify configure script to compile DISP_PARTIAL code by default - TD
* fix compiler warnings dealing with unreached statements - TD
* change 'keymap[] array to unsigned char, move logic that relies on its size
  into LYKeymap.c - TD
* make LYOpenScratch() work properly for 8.3 names (reported by DK) - TD
* DISP_PARTIAL:  introduce separate variables Newline_partial and
  NumOfLines_partial, initialize them in mainloop and synchronize with Newline
  later when the reload completes (case NORMAL).  To reduce the CPU usage while
  downloading, call HText_pageDisplay only if NumOfLines_partial is in the
  current display page or any Scroll key pressed by the user.  We disable
  partial_display if requested URL have #fragment, otherwise user will see the
  top page first (yes, s/he will be moved to #fragment when the download
  completed, but only if no scroll keys were pressed before!).  Processing of
  "END" key changed from MAXINT to real number of lines in the document
  (important for display_partial mode) - LP.
* correct problem that caused DGJPP version built with slang 1.2.2 to lose its
  socket whenever the rendering of a http URL is interrupted with "z".  This is
  in HTCheckForInterrupt in LYUtils.c (reported by John Lewis) - DK
* add files pdcurses.key, slang.key, djgpp.key to document the keybindings
  used for DJGPP version - DK
* allow mapping of ALT and Function keys with the DOS port for both the
  PDCurses version and the SLANG version with the DJGPP keyhandler.  The
  extended keys to be mapped have to be specified numerically according to the
  definitions in curses.h (for PDCurses) or in keys.h (for SLANG with DJGPP
  keyhandler).  DJGPP maps keys up to 0x293, while PDCurses maps keys up to
  0x1c0 - DK
* don't try to use -std1 option for gcc on Digital Unix (reported by Michael
  Warner <warner@wsu.edu>) - TD
1998-05-23 (2.8.1dev.13)
* use new function LYLocalFileToUrl to cleanup some pathname references - TD
* eliminate 'tempname()' function, using LYNewTxtFile, etc., with new functions
  LYOpenTemp, LYCloseTemp, etc., so that temporary files are opened with
  appropriate permissions - TD
* correct use of cache variable in CF_ALT_CHAR_SET (reported by BL) - TD
* spell out the logic in HTPlain.c against 2.7.2:  there was a certain problem
  with chartrans in text/plain mode (LYRawMode was wrongly interferring,
  problem reported by Jacob Poon & FM).  - LP
* modify logic for zero-width spaces in conv_uni_to_pc to exclude 0x200a - LP
* supply missing "break", which was forcing raw utf-8 output in URLs (NOT hex
  escaped) - LP
1998-05-14 (2.8.1dev.12)
* remove unneeded definition used in testing dev.11 from config.hin) - TD
1998-05-14 (2.8.1dev.11)
* fixes for function-keys with slang configuration on DOS (patch by DK).
* correct missing '&' in command-line options entry for syslog (reported by
  HN) - TD
* correct initial value for NoColorvideo with PDCurses, from my error in
  1998-05-10 integration (reported by DK) - TD
1998-05-10 (2.8.1dev.10)
* eliminate assignment to stderr for trace-file by making tfp a function. - TD
* added John Davis' keymaps/keysym patch (it really should be integrated with
  the normal lynx.cfg file).
* tweak chartrans, "Convert the octet to Unicode":  incoming symbols >127 but <
  LYlowest_eightbit[IN-charset] now ignored, previously displayed as UFFFD.
  (SGML.c, HTPlain.c, LYCharUtils.c) - LP
* removed conflicting/unused declaration of 'bzero()' from tcp.h (from report
  by Ashraf Zorkani <zorkani@aucegypt.edu>) - TD
* modify the set/unset/toggle options to allow "on" and "off" values also - TD
* apply the "partial display" patch, modified from:
      http://www.flora.org/lynx-dev/html/month0398/msg00993.html
  The behavior is controlled by a compile-time option (DISP_PARTIAL), by a
  command-line argument (-partial), and by a lynx.cfg option (PARTIAL).  - BL
* extend command-line option processing of set/unset/toggle options
      -toggle-     (set that toggle to FALSE)
      -toggle+     (set that toggle to TRUE)
  e.g.,
      lynx -show_cursor+ -case-
  or with explicit 1/0 values, e.g.,
      -toggle=0     (set that toggle to FALSE)
      -toggle=1     (set that toggle to TRUE)
  NOTE:  this allows you to change a few flags that would previously have been
  controlled by lynx.cfg, and are security-related, such as -locexec or
  -telnet.  I believe there is no issue, because if the user can control the
  command line to Lynx, he could have run `lynx -cfg my_cfg_file` and
  circumvented those settings anyway.  - BL
* fix for buffer-overrun in LYMail.c when processing a mailto:very-long-address
  URL - BL
* correct, for OS/2 EMX, a place in LYConvertToURL() which must not use
  HTDOS_wwwName() (patch by Jason F McBrayer <jmcbray@mailhost.tcs.tulane.edu>)
* similar changes to LYCurses.c, LYMain.c, LYStrings.c, add src/makefile.wsl,
  for building DOS version with slang - Bill Schiavo
* modify LYCurses.c, LYMain.c, LYStrings.c, add src/makefile.dsl, for building
  DOS version with slang - DK
* fix to improve reloading if user changed assume_charset in options menu
  using ^A, which sometimes did not work - LP
* add several chartrans-related files to test/ directory:  spaces.html,
  c1.html, raw8bit.html - LP
* fixes to compile on SunOS with K&R compiler. - TD
1998-05-03 (2.8.1dev.9)
* correct missing counter increment in tempname(), from cleanup. - TD
1998-05-02 (2.8.1dev.8)
* Fix for CGI-related URLs processing (syntax:  ?x=1&yz=2).  To avoid interfere
  with SGML we restrict '=' as terminator for a named entity, this only applied
  for HREF= attribute translation (LYCharUtils.c).  (reported by Alex Matulich
  alex@unicorn.us.com & FM).  - LP
* restore information in the INSTALLATION file for the DOS port on patching
  tcplib.  Also, clarifies the location of nullpkt.  It also clarifies
  that the PDCurses beta has incorporated some of the patches we made for
  the lynx DOS port. - DK
* modify logic that updates bookmark file after removing a link to use copy
  rather than rename, to solve file-ownership problems (patch by Paul
  Gilmartin, though I kept the permissions check). - TD
* reduce a little of the clutter in tempname() with fmt_tempname, and
  bad_tempname functions.  Though this doesn't address the security problems it
  does fix the problem with signed getpid values.  - TD
* simplify LYUtils.c with compare_type() function - TD
* add/use string functions LYLowerCase, LYUpperCase, LYRemoveBlanks (replaces
  collapse_spaces), LYTrimLeading, LYTrimTrailing (incidentally fixes core-dump
  in LYCookie.c) - TD
* rewrite read_cfg function to make it more table-driven (reworked from a
  patch by John Davis) - TD
* rewrite parse_arg function to make it more table-driven (reworked from a
  patch by John Davis) - TD
* omit -Olimit compiler option on Digital UNIX 4.0 (patch by Tomas Vanhala).
* modify configure test for acs_map[] array to work on Digital UNIX 4.0
  (reported by Jim Spath and Tomas Vanhala <vanhala@ling.helsinki.fi>).  - TD
1998-04-23 (2.8.1dev.7)
* fix core-dump when pressing '.' on a page with no links (patch by
  Jan Hlav\'{a}\v{c}ek <lahvak@math.ohio-state.edu>).
* initial changes to use macros CTRACE and tfp to replace explicit use of
  stderr for the trace log.  Remaining work is required for some complex
  expressions, switching file pointers and for perror-substitute. - TD
* ifdef's for OS/2 EMX, mostly pathname tweaks (patch by Jason F. McBrayer
  <jmcbray@mailhost.tcs.tulane.edu>).
1998-04-18 (2.8.1dev.6)
* correct misplaced ifdef in LYMail.c, which caused Cc to not work (patch
  by LE).
* convert \x escapes to octal form (reported by Claude Soma). - TD
* modify configure script to check for cursesX before curses library, for
  ultrix 4.3 (reported by Claude Soma <soma_c@decus.fr>). - TD
* incorporate lpansi into LYPrint.c (patch by HN).
* modify top-level makefile to use INSTALL_PROGRAM and INSTALL_DATA
  consistently, rather than installbin and installdoc (reported by
  <karl@deas.harvard.edu>).  - TD
* modify treatment of -auth and -pauth options to allow setting a blank
  password, e.g., -pauth=user:  specifies a blank password, and -pauth=user
  leaves the password unspecified (patch by Frederick P Herrmann
  <fph@tiac.net>).
* Change documentation to indicate "Lynx.trace" file rather than "lynx.trace".
* Change default for USE_TRACE_LOG in userdefs.h to TRUE, to make behavior
  consistent with 2.7.2 - TD
* Rename no_color_video symbol in LYCurses.c to NoColorVideo, to avoid conflict
  with term.h, which is included by curses.h on some systems (reported by Paul
  Gilmartin). - TD
* modify include-path in djgpp makefile to avoid conflicting tcp.h - DK
* Add -tagsoup option, for initializing parser directly to TagSoup. - TD
* Modify HTML.c, ifdef'ing some of the logic involved in unstacking tags.  It
  appears to be not completely necessary:  makes Lynx a little faster, at the
  cost of making the tagsoup parser do the wrong thing.  Some entries in the
  tagsoup DTD table versus the sortasgml table have SGML_EMPTY versus
  SGML_MIXED.  This information is used to control unstacking (in the
  color-style configuration as well).  There is still a problem evidenced
  when toggling between the two parsers in the Lynx main help page, but that
  appears to be missing logic in 2.8's version of the tagsoup parser.  - TD
* Modify HTTCP.c to check the length returned from gethostbyname(), which
  returns 0 on error on a SunOS 4 system (reported by Paul Gilmartin). - TD
1998-03-29 (2.8.1dev.5)
* Fixed my typo for FNAMES_8_3 define. WB
* Added SYSTEM_MAIL and SYSTEM_MAIL_FLAGS defines for DOSPATH target. WB
* Better kluge to set terminal type for DOSPATH. WB
* Restored DOSPATH kludge to get to root of directory. WB
* Added a bit of missing _WINDOWS_NSL ifdef'ing. WB
* Minor DOS dirent mod to work with Tom's rearrangements. WB
* Changed #if XYZ to #ifdef XYZ in tcp.h for dumb (?) compilers. WB
1998-03-25 (2.8.1dev.4)
* restore original string in LYUtils.c when user enters a badly formed or
  nonexistent URL when prompted for Goto/history list (patch by Randall
  <hezekiah@may98.rahul.net>).  Otherwise Lynx would always attempt to load a
  local file if the original string omits scheme:// prefix but guessing fails.
* tweak formatting of .message in HTFTP.c so it has leading/trailing blank
  lines (patch by Ismael Cordeiro <ismael@CAM.ORG>)
* retested 'make depend' rule (for LV (Larry Virden)) - TD
* eliminate (except for absolute pathnames, as in VMS) quoted includes - TD
* remove WWW/Library/Implementation/HTAlert.[ch], since they conflict with
  src/HTAlert.[ch], and are not used - TD
* replace the [LINK], [INLINE] and [IMAGE] comments (for images without ALT)
  with filenames of these images.  This feature can be enabled or disabled by
  setting VERBOSE_IMAGES in lynx.cfg and/or userdefs.h (patches by
  helen@voland.cc.huji.ac.il and wschiavo@concentric.net>)
* consistently use ${cf_cv_ncurses_header-curses.h} rather than
  $cf_cv_ncurses_header in configure script, as noted by JS - TD
* tweak include of HTML.h in HTFile.h to fix compile problem on VMS (we really
  should not use quote-style includes) - TD
* fixes to LYStyle.c to make color-style code work on Digital Unix 4.0 - TD
1998-03-20 (2.8.1dev.3)
* Added death for Win/DOS clients that don't have a TMP space defined. - WB
* Added _WINDOWS_NSL to provide interruptable lookups in Win32 per a
  patch from afn06760@afn.org. (modified hopefully for borland AND cygwin and
  hard defined in tcp.h).  I had to recompile everything in multithread
  mode for borland, including my zlib library. - WB
* Added _WINDOWS as a target for FNAMES_8_3 in userdefs.h to allow for 16
  bit helper apps that can't handle LFN's. (report by afn06760@afn.org) - WB
1998-03-18 (2.8.1dev.1)
* correct an ifdef that caused inconsistent pathname separators on Windows
  (reported by afn, patch by DK).
* correct a missing AC_MSG_RESULT in configure.in (also MM) - TD
* guard against illegal (e.g., zero) value for DEFAULT_CACHE_SIZE, when it is
  read from lynx.cfg (reported by Martin Mokrejs
  <mmokrejs@prfdec.natur.cuni.cz>) - TD
* implement simple 'include' facility for lynx.cfg - BL
* change TagClass and TagFlags to #define's to accommodate older compilers
  which do not accept initialization of enums from data that do not correspond
  to the declared values, e.g., CLIX (which complains) and Apollo (which fails
  to compile, reported by Dave Eaton).  - TD
* remove some obsolete definitions from userdefs.h, tcp.h and HTUtils.h - TD
* remove obsolete files from WWW/Library - TD
1998-03-12
* UPPER8: a separate function HTMLSetDisplayCharsetMatchLocale() introduced
  (LYCharSets.c). Locale mismatch assumed for DOS/WINDOWS display charsets. -LP