FIXES revision 85587
1/****************************************************************
2Copyright (C) Lucent Technologies 1997
3All Rights Reserved
4
5Permission to use, copy, modify, and distribute this software and
6its documentation for any purpose and without fee is hereby
7granted, provided that the above copyright notice appear in all
8copies and that both that the copyright notice and this
9permission notice and warranty disclaimer appear in supporting
10documentation, and that the name Lucent Technologies or any of
11its entities not be used in advertising or publicity pertaining
12to distribution of the software without specific, written prior
13permission.
14
15LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
17IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
18SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
20IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
21ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
22THIS SOFTWARE.
23****************************************************************/
24
25This file lists all bug fixes, changes, etc., made since the AWK book
26was sent to the printers in August, 1987.
27
28Nov 15, 2000:
29	fixed a bug introduced in august 1997 that caused expressions
30	like $f[1] to be syntax errors.  thanks to arnold robbins for
31	noticing this and providing a fix.
32
33Oct 30, 2000:
34	fixed some nextfile bugs: not handling all cases.  thanks to
35	arnold robbins for pointing this out.  new regressions added.
36
37	close() is now a function.  it returns whatever the library
38	fclose returns, and -1 for closing a file or pipe that wasn't
39	opened.
40
41Sep 24, 2000:
42	permit \n explicitly in character classes; won't work right
43	if comes in as "[\n]" but ok as /[\n]/, because of multiple
44	processing of \'s.  thanks to arnold robbins.
45
46July 5, 2000:
47	minor fiddles in tran.c to keep compilers happy about uschar.
48	thanks to norman wilson.
49
50May 25, 2000:
51	yet another attempt at making 8-bit input work, with another
52	band-aid in b.c (member()), and some (uschar) casts to head 
53	off potential errors in subscripts (like isdigit).  also
54	changed HAT to NCHARS-2.  thanks again to santiago vila.
55
56	changed maketab.c to ignore apparently out of range definitions
57	instead of halting; new freeBSD generates one.  thanks to
58	jon snader <jsnader@ix.netcom.com> for pointing out the problem.
59
60May 2, 2000:
61	fixed an 8-bit problem in b.c by making several char*'s into
62	unsigned char*'s.  not clear i have them all yet.  thanks to
63	Santiago Vila <sanvila@unex.es> for the bug report.
64
65Apr 21, 2000:
66	finally found and fixed a memory leak in function call; it's
67	been there since functions were added ~1983.  thanks to
68	jon bentley for the test case that found it.
69
70	added test in envinit to catch environment "variables" with
71	names begining with '='; thanks to Berend Hasselman.
72
73Jul 28, 1999:
74	added test in defn() to catch function foo(foo), which
75	otherwise recurses until core dump.  thanks to arnold
76	robbins for noticing this.
77
78Jun 20, 1999:
79	added *bp in gettok in lex.c; appears possible to exit function
80	without terminating the string.  thanks to russ cox.
81
82Jun 2, 1999:
83	added function stdinit() to run to initialize files[] array,
84	in case stdin, etc., are not constants; some compilers care.
85
86May 10, 1999:
87	replaced the ERROR ... FATAL, etc., macros with functions
88	based on vprintf, to avoid problems caused by overrunning
89	fixed-size errbuf array.  thanks to ralph corderoy for the
90	impetus, and for pointing out a string termination bug in
91	qstring as well.
92
93Apr 21, 1999:
94	fixed bug that caused occasional core dumps with commandline
95	variable with value ending in \.  (thanks to nelson beebe for
96	the test case.)
97
98Apr 16, 1999:
99	with code kindly provided by Bruce Lilly, awk now parses 
100	/=/ and similar constructs more sensibly in more places.
101	Bruce also provided some helpful test cases.
102
103Apr 5, 1999:
104	changed true/false to True/False in run.c to make it
105	easier to compile with C++.  Added some casts on malloc
106	and realloc to be honest about casts; ditto.  changed
107	ltype int to long in struct rrow to reduce some 64-bit
108	complaints; other changes scattered throughout for the
109	same purpose.  thanks to Nelson Beebe for these portability
110	improvements.
111
112	removed some horrible pointer-int casting in b.c and elsewhere
113	by adding ptoi and itonp to localize the casts, which are
114	all benign.  fixed one incipient bug that showed up on sgi
115	in 64-bit mode.
116
117	reset lineno for new source file; include filename in error
118	message.  also fixed line number error in continuation lines.
119	(thanks to Nelson Beebe for both of these.)
120
121Mar 24, 1999:
122	Nelson Beebe notes that irix 5.3 yacc dies with a bogus
123	error; use a newer version or switch to bison, since sgi
124	is unlikely to fix it.
125
126Mar 5, 1999:
127	changed isnumber to is_number to avoid the problem caused by
128	versions of ctype.h that include the name isnumber.
129
130	distribution now includes a script for building on a Mac,
131	thanks to Dan Allen.
132
133Feb 20, 1999:
134	fixed memory leaks in run.c (call) and tran.c (setfval).
135	thanks to Stephen Nutt for finding these and providing the fixes.
136
137Jan 13, 1999:
138	replaced srand argument by (unsigned int) in run.c;
139	avoids problem on Mac and potentially on Unix & Windows.
140	thanks to Dan Allen.
141
142	added a few (int) casts to silence useless compiler warnings.
143	e.g., errorflag= in run.c jump().
144
145	added proctab.c to the bundle outout; one less thing
146	to have to compile out of the box.
147
148	added calls to _popen and _pclose to the win95 stub for
149	pipes (thanks to Steve Adams for this helpful suggestion).
150	seems to work, though properties are not well understood
151	by me, and it appears that under some circumstances the
152	pipe output is truncated.  Be careful.
153
154Oct 19, 1998:
155	fixed a couple of bugs in getrec: could fail to update $0
156	after a getline var; because inputFS wasn't initialized, 
157	could split $0 on every character, a misleading diversion.
158
159	fixed caching bug in makedfa: LRU was actually removing
160	least often used.
161
162	thanks to ross ridge for finding these, and for providing
163	great bug reports.
164
165May 12, 1998:
166	fixed potential bug in readrec: might fail to update record
167	pointer after growing.  thanks to dan levy for spotting this
168	and suggesting the fix.
169
170Mar 12, 1998:
171	added -V to print version number and die.
172
173Feb 11, 1998:
174	subtle silent bug in lex.c: if the program ended with a number
175	longer than 1 digit, part of the input would be pushed back and
176	parsed again because token buffer wasn't terminated right.
177	example:  awk 'length($0) > 10'.  blush.  at least i found it
178	myself.
179
180Aug 31, 1997:
181	s/adelete/awkdelete/: SGI uses this in malloc.h.
182	thanks to nelson beebe for pointing this one out.
183
184Aug 21, 1997:
185	fixed some bugs in sub and gsub when replacement includes \\.
186	this is a dark, horrible corner, but at least now i believe that
187	the behavior is the same as gawk and the intended posix standard.
188	thanks to arnold robbins for advice here.
189
190Aug 9, 1997:
191	somewhat regretfully, replaced the ancient lex-based lexical
192	analyzer with one written in C.  it's longer, generates less code,
193	and more portable; the old one depended too much on mysterious
194	properties of lex that were not preserved in other environments.
195	in theory these recognize the same language.
196
197	now using strtod to test whether a string is a number, instead of
198	the convoluted original function.  should be more portable and
199	reliable if strtod is implemented right.
200
201	removed now-pointless optimization in makefile that tries to avoid
202	recompilation when awkgram.y is changed but symbols are not.
203
204	removed most fixed-size arrays, though a handful remain, some
205	of which are unchecked.  you have been warned.
206
207Aug 4, 1997:
208	with some trepidation, replaced the ancient code that managed
209	fields and $0 in fixed-size arrays with arrays that grow on
210	demand.  there is still some tension between trying to make this
211	run fast and making it clean; not sure it's right yet.
212
213	the ill-conceived -mr and -mf arguments are now useful only
214	for debugging.  previous dynamic string code removed.
215
216	numerous other minor cleanups along the way.
217
218Jul 30, 1997:
219	using code provided by dan levy (to whom profuse thanks), replaced
220	fixed-size arrays and awkward kludges by a fairly uniform mechanism
221	to grow arrays as needed for printf, sub, gsub, etc.
222
223Jul 23, 1997:
224	falling off the end of a function returns "" and 0, not 0.
225	thanks to arnold robbins.
226
227Jun 17, 1997:
228	replaced several fixed-size arrays by dynamically-created ones
229	in run.c; added overflow tests to some previously unchecked cases.
230	getline, toupper, tolower.
231
232	getline code is still broken in that recursive calls may wind
233	up using the same space.  [fixed later]
234
235	increased RECSIZE to 8192 to push problems further over the horizon.
236
237	added \r to \n as input line separator for programs, not data.
238	damn CRLFs.
239
240	modified format() to permit explicit printf("%c", 0) to include
241	a null byte in output.  thanks to ken stailey for the fix.
242
243	added a "-safe" argument that disables file output (print >,
244	print >>), process creation (cmd|getline, print |, system), and
245	access to the environment (ENVIRON).  this is a first approximation
246	to a "safe" version of awk, but don't rely on it too much.  thanks
247	to joan feigenbaum and matt blaze for the inspiration long ago.
248
249Jul 8, 1996:
250	fixed long-standing bug in sub, gsub(/a/, "\\\\&"); thanks to
251	ralph corderoy.
252
253Jun 29, 1996:
254	fixed awful bug in new field splitting; didn't get all the places
255	where input was done.
256
257Jun 28, 1996:
258	changed field-splitting to conform to posix definition: fields are
259	split using the value of FS at the time of input; it used to be
260	the value when the field or NF was first referred to, a much less
261	predictable definition.  thanks to arnold robbins for encouragement
262	to do the right thing.
263
264May 28, 1996:
265	fixed appalling but apparently unimportant bug in parsing octal
266	numbers in reg exprs.
267
268	explicit hex in reg exprs now limited to 2 chars: \xa, \xaa.
269
270May 27, 1996:
271	cleaned up some declarations so gcc -Wall is now almost silent.
272
273	makefile now includes backup copies of ytab.c and lexyy.c in case
274	one makes before looking; it also avoids recreating lexyy.c unless
275	really needed.
276
277	s/aprintf/awkprint, s/asprintf/awksprintf/ to avoid some name clashes
278	with unwisely-written header files.
279
280	thanks to jeffrey friedl for several of these.
281
282May 26, 1996:
283	an attempt to rationalize the (unsigned) char issue.  almost all
284	instances of unsigned char have been removed; the handful of places
285	in b.c where chars are used as table indices have been hand-crafted.
286	added some latin-1 tests to the regression, but i'm not confident;
287	none of my compilers seem to care much.  thanks to nelson beebe for
288	pointing out some others that do care.
289
290May 2, 1996:
291	removed all register declarations.
292
293	enhanced split(), as in gawk, etc:  split(s, a, "") splits s into
294	a[1]...a[length(s)] with each character a single element.
295
296	made the same changes for field-splitting if FS is "".
297
298	added nextfile, as in gawk: causes immediate advance to next
299	input file. (thanks to arnold robbins for inspiration and code).
300
301	small fixes to regexpr code:  can now handle []], [[], and
302	variants;  [] is now a syntax error, rather than matching 
303	everything;  [z-a] is now empty, not z.  far from complete
304	or correct, however.  (thanks to jeffrey friedl for pointing out
305	some awful behaviors.)
306
307Apr 29, 1996:
308	replaced uchar by uschar everwhere; apparently some compilers
309	usurp this name and this causes conflicts.
310
311	fixed call to time in run.c (bltin); arg is time_t *.
312
313	replaced horrible pointer/long punning in b.c by a legitimate
314	union.  should be safer on 64-bit machines and cleaner everywhere.
315	(thanks to nelson beebe for pointing out some of these problems.)
316
317	replaced nested comments by #if 0...#endif in run.c, lib.c.
318
319	removed getsval, setsval, execute macros from run.c and lib.c.
320	machines are 100x faster than they were when these macros were
321	first used.
322
323	revised filenames: awk.g.y => awkgram.y, awk.lx.l => awklex.l,
324	y.tab.[ch] => ytab.[ch], lex.yy.c => lexyy.c, all in the aid of
325	portability to nameless systems.
326
327	"make bundle" now includes yacc and lex output files for recipients
328	who don't have yacc or lex.
329
330Aug 15, 1995:
331	initialized Cells in setsymtab more carefully; some fields
332	were not set.  (thanks to purify, all of whose complaints i
333	think i now understand.)
334
335	fixed at least one error in gsub that looked at -1-th element
336	of an array when substituting for a null match (e.g., $).
337
338	delete arrayname is now legal; it clears the elements but leaves
339	the array, which may not be the right behavior.
340
341	modified makefile: my current make can't cope with the test used
342	to avoid unnecessary yacc invocations.
343
344Jul 17, 1995:
345	added dynamically growing strings to awk.lx.l and b.c
346	to permit regular expressions to be much bigger.
347	the state arrays can still overflow.
348
349Aug 24, 1994:
350	detect duplicate arguments in function definitions (mdm).
351
352May 11, 1994:
353	trivial fix to printf to limit string size in sub().
354
355Apr 22, 1994:
356	fixed yet another subtle self-assignment problem:
357	$1 = $2; $1 = $1 clobbered $1.
358
359	Regression tests now use private echo, to avoid quoting problems.
360
361Feb 2, 1994:
362	changed error() to print line number as %d, not %g.
363
364Jul 23, 1993:
365	cosmetic changes: increased sizes of some arrays,
366	reworded some error messages.
367
368	added CONVFMT as in posix (just replaced OFMT in getsval)
369
370	FILENAME is now "" until the first thing that causes a file
371	to be opened.
372
373Nov 28, 1992:
374	deleted yyunput and yyoutput from proto.h;
375	different versions of lex give these different declarations.
376
377May 31, 1992:
378	added -mr N and -mf N options: more record and fields.
379	these really ought to adjust automatically.
380
381	cleaned up some error messages; "out of space" now means
382	malloc returned NULL in all cases.
383
384	changed rehash so that if it runs out, it just returns;
385	things will continue to run slow, but maybe a bit longer.
386
387Apr 24, 1992:
388	remove redundant close of stdin when using -f -.
389
390	got rid of core dump with -d; awk -d just prints date.
391
392Apr 12, 1992:
393	added explicit check for /dev/std(in,out,err) in redirection.
394	unlike gawk, no /dev/fd/n yet.
395
396	added (file/pipe) builtin.  hard to test satisfactorily.
397	not posix.
398
399Feb 20, 1992:
400	recompile after abortive changes;  should be unchanged.
401
402Dec 2, 1991:
403	die-casting time:  converted to ansi C, installed that.
404
405Nov 30, 1991:
406	fixed storage leak in freefa, failing to recover [N]CCL.
407	thanks to Bill Jones (jones@cs.usask.ca)
408
409Nov 19, 1991:
410	use RAND_MAX instead of literal in builtin().
411
412Nov 12, 1991:
413	cranked up some fixed-size arrays in b.c, and added a test for
414	overflow in penter.  thanks to mark larsen.
415
416Sep 24, 1991:
417	increased buffer in gsub.  a very crude fix to a general problem.
418	and again on Sep 26.
419
420Aug 18, 1991:
421	enforce variable name syntax for commandline variables: has to
422	start with letter or _.
423
424Jul 27, 1991:
425	allow newline after ; in for statements.
426
427Jul 21, 1991:
428	fixed so that in self-assignment like $1=$1, side effects
429	like recomputing $0 take place.  (this is getting subtle.)
430
431Jun 30, 1991:
432	better test for detecting too-long output record.
433
434Jun 2, 1991:
435	better defense against very long printf strings.
436	made break and continue illegal outside of loops.
437
438May 13, 1991:
439	removed extra arg on gettemp, tempfree.  minor error message rewording.
440
441May 6, 1991:
442	fixed silly bug in hex parsing in hexstr().
443	removed an apparently unnecessary test in isnumber().
444	warn about weird printf conversions.
445	fixed unchecked array overwrite in relex().
446
447	changed for (i in array) to access elements in sorted order.
448	then unchanged it -- it really does run slower in too many cases.
449	left the code in place, commented out.
450
451Feb 10, 1991:
452	check error status on all writes, to avoid banging on full disks.
453
454Jan 28, 1991:
455	awk -f - reads the program from stdin.
456
457Jan 11, 1991:
458	failed to set numeric state on $0 in cmd|getline context in run.c.
459
460Nov 2, 1990:
461	fixed sleazy test for integrality in getsval;  use modf.
462
463Oct 29, 1990:
464	fixed sleazy buggy code in lib.c that looked (incorrectly) for
465	too long input lines.
466
467Oct 14, 1990:
468	fixed the bug on p. 198 in which it couldn't deduce that an
469	argument was an array in some contexts.  replaced the error
470	message in intest() by code that damn well makes it an array.
471
472Oct 8, 1990:
473	fixed horrible bug:  types and values were not preserved in
474	some kinds of self-assignment. (in assign().)
475
476Aug 24, 1990:
477	changed NCHARS to 256 to handle 8-bit characters in strings
478	presented to match(), etc.
479
480Jun 26, 1990:
481	changed struct rrow (awk.h) to use long instead of int for lval,
482	since cfoll() stores a pointer in it.  now works better when int's
483	are smaller than pointers!
484
485May 6, 1990:
486	AVA fixed the grammar so that ! is uniformly of the same precedence as
487	unary + and -.  This renders illegal some constructs like !x=y, which
488	now has to be parenthesized as !(x=y), and makes others work properly:
489	!x+y is (!x)+y, and x!y is x !y, not two pattern-action statements.
490	(These problems were pointed out by Bob Lenk of Posix.)
491
492	Added \x to regular expressions (already in strings).
493	Limited octal to octal digits; \8 and \9 are not octal.
494	Centralized the code for parsing escapes in regular expressions.
495	Added a bunch of tests to T.re and T.sub to verify some of this.
496
497Feb 9, 1990:
498	fixed null pointer dereference bug in main.c:  -F[nothing].  sigh.
499
500	restored srand behavior:  it returns the current seed.
501
502Jan 18, 1990:
503	srand now returns previous seed value (0 to start).
504
505Jan 5, 1990:
506	fix potential problem in tran.c -- something was freed,
507	then used in freesymtab.
508
509Oct 18, 1989:
510	another try to get the max number of open files set with
511	relatively machine-independent code.
512
513	small fix to input() in case of multiple reads after EOF.
514
515Oct 11, 1989:
516	FILENAME is now defined in the BEGIN block -- too many old
517	programs broke.
518
519	"-" means stdin in getline as well as on the commandline.
520
521	added a bunch of casts to the code to tell the truth about
522	char * vs. unsigned char *, a right royal pain.  added a
523	setlocale call to the front of main, though probably no one
524	has it usefully implemented yet.
525
526Aug 24, 1989:
527	removed redundant relational tests against nullnode if parse
528	tree already had a relational at that point.
529
530Aug 11, 1989:
531	fixed bug:  commandline variable assignment has to look like
532	var=something.  (consider the man page for =, in file =.1)
533
534	changed number of arguments to functions to static arrays
535	to avoid repeated malloc calls.
536
537Aug 2, 1989:
538	restored -F (space) separator
539
540Jul 30, 1989:
541	added -v x=1 y=2 ... for immediate commandline variable assignment;
542	done before the BEGIN block for sure.  they have to precede the
543	program if the program is on the commandline.
544	Modified Aug 2 to require a separate -v for each assignment.
545
546Jul 10, 1989:
547	fixed ref-thru-zero bug in environment code in tran.c
548
549Jun 23, 1989:
550	add newline to usage message.
551
552Jun 14, 1989:
553	added some missing ansi printf conversion letters: %i %X %E %G.
554	no sensible meaning for h or L, so they may not do what one expects.
555
556	made %* conversions work.
557
558	changed x^y so that if n is a positive integer, it's done
559	by explicit multiplication, thus achieving maximum accuracy.
560	(this should be done by pow() but it seems not to be locally.)
561	done to x ^= y as well.
562
563Jun 4, 1989:
564	ENVIRON array contains environment: if shell variable V=thing,
565		ENVIRON["V"] is "thing"
566
567	multiple -f arguments permitted.  error reporting is naive.
568	(they were permitted before, but only the last was used.)
569
570	fixed a really stupid botch in the debugging macro dprintf
571
572	fixed order of evaluation of commandline assignments to match
573	what the book claims:  an argument of the form x=e is evaluated
574	at the time it would have been opened if it were a filename (p 63).
575	this invalidates the suggested answer to ex 4-1 (p 195).
576
577	removed some code that permitted -F (space) fieldseparator,
578	since it didn't quite work right anyway.  (restored aug 2)
579
580Apr 27, 1989:
581	Line number now accumulated correctly for comment lines.
582
583Apr 26, 1989:
584	Debugging output now includes a version date,
585	if one compiles it into the source each time.
586
587Apr 9, 1989:
588	Changed grammar to prohibit constants as 3rd arg of sub and gsub;
589	prevents class of overwriting-a-constant errors.  (Last one?)
590	This invalidates the "banana" example on page 43 of the book.
591
592	Added \a ("alert"), \v (vertical tab), \xhhh (hexadecimal),
593	as in ANSI, for strings.  Rescinded the sloppiness that permitted
594	non-octal digits in \ooo.  Warning:  not all compilers and libraries
595	will be able to deal with \x correctly.
596
597Jan 9, 1989:
598	Fixed bug that caused tempcell list to contain a duplicate.
599	The fix is kludgy.
600
601Dec 17, 1988:
602	Catches some more commandline errors in main.
603	Removed redundant decl of modf in run.c (confuses some compilers).
604	Warning:  there's no single declaration of malloc, etc., in awk.h
605	that seems to satisfy all compilers.
606
607Dec 7, 1988:
608	Added a bit of code to error printing to avoid printing nulls.
609	(Not clear that it actually would.)
610
611Nov 27, 1988:
612	With fear and trembling, modified the grammar to permit
613	multiple pattern-action statements on one line without
614	an explicit separator.  By definition, this capitulation
615	to the ghost of ancient implementations remains undefined
616	and thus subject to change without notice or apology.
617	DO NOT COUNT ON IT.
618
619Oct 30, 1988:
620	Fixed bug in call() that failed to recover storage.
621
622	A warning is now generated if there are more arguments
623	in the call than in the definition (in lieu of fixing
624	another storage leak).
625
626Oct 20, 1988:
627	Fixed %c:  if expr is numeric, use numeric value;
628	otherwise print 1st char of string value.  still
629	doesn't work if the value is 0 -- won't print \0.
630
631	Added a few more checks for running out of malloc.
632
633Oct 12, 1988:
634	Fixed bug in call() that freed local arrays twice.
635
636	Fixed to handle deletion of non-existent array right;
637	complains about attempt to delete non-array element.
638
639Sep 30, 1988:
640	Now guarantees to evaluate all arguments of built-in
641	functions, as in C;  the appearance is that arguments
642	are evaluated before the function is called.  Places
643	affected are sub (gsub was ok), substr, printf, and
644	all the built-in arithmetic functions in bltin().
645	A warning is generated if a bltin() is called with
646	the wrong number of arguments.
647
648	This requires changing makeprof on p167 of the book.
649
650Aug 23, 1988:
651	setting FILENAME in BEGIN caused core dump, apparently
652	because it was freeing space not allocated by malloc.
653
654July 24, 1988:
655	fixed egregious error in toupper/tolower functions.
656	still subject to rescinding, however.
657
658July 2, 1988:
659	flush stdout before opening file or pipe
660
661July 2, 1988:
662	performance bug in b.c/cgoto(): not freeing some sets of states.
663	partial fix only right now, and the number of states increased
664	to make it less obvious.
665
666June 1, 1988:
667	check error status on close
668
669May 28, 1988:
670	srand returns seed value it's using.
671	see 1/18/90
672
673May 22, 1988:
674	Removed limit on depth of function calls.
675
676May 10, 1988:
677	Fixed lib.c to permit _ in commandline variable names.
678
679Mar 25, 1988:
680	main.c fixed to recognize -- as terminator of command-
681	line options.  Illegal options flagged.
682	Error reporting slightly cleaned up.
683
684Dec 2, 1987:
685	Newer C compilers apply a strict scope rule to extern
686	declarations within functions.  Two extern declarations in
687	lib.c and tran.c have been moved to obviate this problem.
688
689Oct xx, 1987:
690	Reluctantly added toupper and tolower functions.
691	Subject to rescinding without notice.
692
693Sep 17, 1987:
694	Error-message printer had printf(s) instead of
695	printf("%s",s);  got core dumps when the message
696	included a %.
697
698Sep 12, 1987:
699	Very long printf strings caused core dump;
700	fixed aprintf, asprintf, format to catch them.
701	Can still get a core dump in printf itself.
702
703
704