head	1.2;
access;
symbols
	RELENG_4_11_0_RELEASE:1.1.1.2
	RELENG_4_11:1.1.1.2.0.20
	RELENG_4_11_BP:1.1.1.2
	RELENG_4_10_0_RELEASE:1.1.1.2
	RELENG_4_10:1.1.1.2.0.18
	RELENG_4_10_BP:1.1.1.2
	RELENG_4_9_0_RELEASE:1.1.1.2
	RELENG_4_9:1.1.1.2.0.16
	RELENG_4_9_BP:1.1.1.2
	RELENG_4_8_0_RELEASE:1.1.1.2
	RELENG_4_8:1.1.1.2.0.14
	RELENG_4_8_BP:1.1.1.2
	RELENG_4_7_0_RELEASE:1.1.1.2
	RELENG_4_7:1.1.1.2.0.12
	RELENG_4_7_BP:1.1.1.2
	RELENG_4_6_2_RELEASE:1.1.1.2
	RELENG_4_6_1_RELEASE:1.1.1.2
	RELENG_4_6_0_RELEASE:1.1.1.2
	RELENG_4_6:1.1.1.2.0.10
	RELENG_4_6_BP:1.1.1.2
	RELENG_4_5_0_RELEASE:1.1.1.2
	RELENG_4_5:1.1.1.2.0.8
	RELENG_4_5_BP:1.1.1.2
	v3_1_0:1.1.1.3
	RELENG_4_4_0_RELEASE:1.1.1.2
	RELENG_4_4:1.1.1.2.0.6
	RELENG_4_4_BP:1.1.1.2
	RELENG_4_3_0_RELEASE:1.1.1.2
	RELENG_4_3:1.1.1.2.0.4
	RELENG_4_3_BP:1.1.1.2
	RELENG_4_2_0_RELEASE:1.1.1.2
	RELENG_4_1_1_RELEASE:1.1.1.2
	PRE_SMPNG:1.1.1.2
	v3_0_6:1.1.1.2
	RELENG_4_1_0_RELEASE:1.1.1.2
	RELENG_3_5_0_RELEASE:1.1.1.1.2.1
	RELENG_4_0_0_RELEASE:1.1.1.2
	RELENG_4:1.1.1.2.0.2
	RELENG_4_BP:1.1.1.2
	RELENG_3_4_0_RELEASE:1.1.1.1.2.1
	v3_0_4:1.1.1.2
	RELENG_3_3_0_RELEASE:1.1.1.1
	RELENG_3_2_PAO:1.1.1.1.0.4
	RELENG_3_2_PAO_BP:1.1.1.1
	RELENG_3_2_0_RELEASE:1.1.1.1
	RELENG_3_1_0_RELEASE:1.1.1.1
	RELENG_3:1.1.1.1.0.2
	RELENG_3_BP:1.1.1.1
	RELENG_3_0_0_RELEASE:1.1.1.1
	v3_0_3:1.1.1.1
	FSF:1.1.1;
locks; strict;
comment	@# @;


1.2
date	2002.06.20.20.54.43;	author obrien;	state dead;
branches;
next	1.1;

1.1
date	97.10.14.18.16.56;	author jraynard;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	97.10.14.18.16.56;	author jraynard;	state Exp;
branches
	1.1.1.1.2.1;
next	1.1.1.2;

1.1.1.2
date	99.09.27.08.51.02;	author sheldonh;	state Exp;
branches;
next	1.1.1.3;

1.1.1.3
date	2001.11.02.21.05.41;	author obrien;	state Exp;
branches;
next	;

1.1.1.1.2.1
date	99.12.08.17.57.51;	author sheldonh;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Remove GAWK.  I removed it from the build 2 weeks ago and the world
did not end.  So finish the deed.
@
text
@This file lists future projects and enhancements for gawk.  Items are listed
in roughly the order they will be done for a given release.  This file is
mainly for use by the developers to help keep themselves on track, please
don't bug us too much about schedules or what all this really means.

With the 3.0 release, we are acknowledging that awk is not PERL, nor should
it become PERL.  (To paraphrase Dennis Ritchie, "If you want PERL, you
know where to get it.")

The focus on the future is thus narrowed to performance and functional
enhancements, with only minor plans for significant new features.

For 3.0
=======
	DONE: Move to autoconf-based configure system.

	DONE: Allow RS to be a regexp.

	DONE: RT variable to hold text of record terminator

	DONE: split() with null string as third arg to split up strings

	DONE: Analogously, setting FS="" would split the input record into
	individual characters.

	DONE: Generalize IGNORECASE
		- any value makes it work, not just numeric non-zero
		- make it apply to *all* string comparisons

	DONE: Incorporate newer dfa.c and regex.c

	DONE: Go to POSIX regexps

	DONE: Make regex + dfa less dependant on gawk header file includes

	DONE: Source code formatting cleaned up and regularized

	DONE: Clean up code by isolating system-specific functions in
	separate files.

	DONE: General sub function:
		gensub(pat, sub, global_flag[, line])
	that return the substituted strings and allow \1 etc.
	in the sub string.

	DONE: Add AWKPATH to ENVIRON if it's not there

	DONE: Undertake significant directory reorganization.

	DONE: Extensive manual cleanup:
		Use of texinfo 2.0 features
		Lots more examples
		Document posix regexps
		Document all of the above.

In 3.1
======
	A PROCINFO array to replace /dev/pid, /dev/user, et al.

	DONE: Use mmap to read input files on systems that support it.

	Add `abort' statement a la Thompson awk.

	Consider removing use of and/or need for the protos.h file.

	Use a new or improved dfa.

	Integrate GNU NLS support.

	Bring out hooks for NLS support into gawk itself.

	DBM storage of awk arrays. Try to allow multiple dbm packages.

	Use GNU malloc.

	Use rx instead of regex.

	DONE: Do a reference card.

	? Have strftime() pay attention to the value of ENVIRON["TZ"]

	Additional manual features:
		Document use of dbm arrays
		Document NLS support
		? Add exercises
		? Add an error messages section to the manual
		? A section on where gawk is bounded
			regex
			i/o
			sun fp conversions

For 3.2
=======
	Add a lint check if the return value of a function is used but
	the function did not supply a value.

	Do an optimization pass over parse tree?

	Make 	awk '/foo/' files...	run at egrep speeds

For 4.x:
========

Create a gawk compiler?

Create a gawk-to-C translator? (or C++??)

Provide awk profiling and debugging.
@


1.1
log
@Initial revision
@
text
@@


1.1.1.1
log
@Virgin import of GNU awk 3.0.3
@
text
@@


1.1.1.1.2.1
log
@Upgrade to gawk-3.0.4 in time for 3.4-RELEASE.

The mechanics of this cvs update were discussed with obrien.

Approved by:	jkh
@
text
@d76 2
@


1.1.1.2
log
@Virgin import of GNU awk 3.0.4, which fixes at least a memory mis-
management problem involving custom print formats.

PR:		13615
Reported by:	Scott Hazen Mueller <scott@@zorch.sf-bay.org>
@
text
@d76 2
@


1.1.1.3
log
@Update vendor branch to gawk-3.1.0.
@
text
@d13 3
a15 2
(OK, so 3.1 had a bad case of feature-itis.  I think I'm mostly over it
now, though. :-)
d17 1
a17 3
In 3.1
======
	DONE: A PROCINFO array to replace /dev/pid, /dev/user, et al.
d19 1
a19 1
	DONE: Add `abort' statement a la Thompson awk.
d21 1
a21 1
	DONE: Provide awk profiling.
d23 2
a24 1
	DONE: Integrate GNU NLS support.
d26 3
a28 1
	DONE: Bring out hooks for NLS support into gawk itself.
d30 1
a30 1
	DONE: Do a reference card.
d32 1
a32 1
	DONE: Switch to full ANSI C and use ansi2kr.
d34 1
a34 2
	Additional manual features:
		DONE: Document NLS support
d36 1
a36 3
For 3.2
=======
	Move the loadable modules interface to libtool.
d38 2
a39 1
	Redo the loadable modules interface from the awk level.
d41 4
a44 1
	Rework management of array index storage.
d46 1
a46 2
	A RECLEN variable for fixed-length record input. PROCINFO["RS"]
	would be "RS" or "RECLEN" depending upon what's in use.
d48 1
a48 1
	DBM storage of awk arrays. Try to allow multiple dbm packages.
d50 5
a54 1
	Look at ISO C 99 printf features.
d56 5
a60 1
	Add %'d for putting in commas in formatting?
d62 1
a62 1
	Consider integrating Fred Fish's DBUG library into gawk.
d66 9
a74 4
	Additional manual features:
		? Add exercises
		Document use of dbm arrays
		? Add an error messages section to the manual
d76 1
a76 3
For 3.3
=======
	Use a new or improved dfa and/or regex library.
a79 3
	Add a lint check if the return value of a function is used but
	the function did not supply a value.

d81 4
d90 1
a90 1
For 3.4
d92 3
d97 1
a97 1
	Make 	awk '/foo/' files...	run at egrep speeds (how?)
d102 5
a106 1
Provide awk debugging.
@


