• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..30-Jun-2020-

CONVERT.mkH A D30-Jun-20206.4 KiB261243

INIT.READMEH A D30-Jun-202055.2 KiB1,0301,022

INIT.pkgH A D30-Jun-2020386 139

INIT.reqH A D30-Jun-20200

INIT.verH A D30-Jun-202029 21

ast-ast.pkgH A D30-Jun-2020206 127

ast-base.pkgH A D30-Jun-2020890 2317

ast-base.reqH A D30-Jun-20200

ast-base.verH A D30-Jun-202033 21

ast-dss.pkgH A D30-Jun-2020335 148

ast-ksh.pkgH A D30-Jun-20203.4 KiB9083

ast-ksh.reqH A D30-Jun-20200

ast-ksh.verH A D30-Jun-202032 21

ast-make.pkgH A D30-Jun-2020507 2013

ast-open.READMEH A D30-Jun-2020562.2 KiB10,71210,518

ast-open.pkgH A D30-Jun-2020741 2115

ast-open.reqH A D30-Jun-20200

ast-open.verH A D30-Jun-202033 21

ast.defH A D30-Jun-20201.5 KiB5042

ast.licH A D30-Jun-202045 65

bsd.defH A D30-Jun-20201.7 KiB4639

bsd.licH A D30-Jun-202010 21

epl.defH A D30-Jun-2020207 98

ksh.pkgH A D30-Jun-2020384 1510

package.mkH A D30-Jun-202044.2 KiB1,5381,466

zlib.defH A D30-Jun-20201.1 KiB4030

zlib.licH A D30-Jun-202011 21

INIT.README

1The INIT package is required by all but the standalone and self
2extracting archive packages. It contains the package command, support
3scripts, and utilities.  The package command installs binary packages,
4makes source packages, and generates new package tarballs.
5
6Source Package Installation Instructions:
7
8  (1) Do not install packages as root/super-user. Although some components may
9      have setuid executables, few must be owned by root. These are best
10      changed manually when the security implications are understood.
11  (2) Choose a package root directory and cd to it. This will be a local work
12      area for all packages.
13  (3) These instructions bypass the click to download package links on the
14      download site. If you already clicked, or if your system does not have
15      curl(1), hurl(1), lynx(1) or wget(1) then use the alternate instructions
16      for (3),(4),(5) in plan B below. Plan B installs the hurl(1)
17      script which works with ksh and modern bash. The top level URL is:
18		URL=http://www.research.att.com/sw/download
19  (4) If the bin/package script does not exist then run:
20		test -d bin || mkdir bin
21		url=$URL/package
22		(wget -O - $url||curl -L $url||hurl $url) > bin/package
23		chmod +x bin/package
24  (5) Determine the list of package names you want from the download site, then
25      use the package(1) command to do the actual download:
26		bin/package authorize "NAME" password "PASSWORD" \
27			setup source $URL PACKAGE ...
28      (Refer to the AUTHORIZATION paragraph on the main download page for
29      NAME/PASSWORD details.)  This downloads the closure of the latest
30      source package(s); covered and up-to-date packages are not downloaded again unless
31      package force ... is specified. Package content is verified using md5sum.
32      If the package root will contain only one architecture then you can install in bin and
33      lib instead of arch/HOSTTYPE/bin and arch/HOSTTYPE/lib by running this
34      instead:
35		bin/package authorize "NAME" password "PASSWORD" \
36			flat setup source $URL PACKAGE ...
37      To update the same packages from the same URL run:
38		bin/package setup source
39  (6) Build and install; all generated files are placed under arch/HOSTTYPE
40      ($INSTALLROOT), where HOSTTYPE is the output of bin/package (with no
41      arguments.) name=value arguments are supported; CC and debug=1 (compile
42      with -g instead of -O) are likely candidates. The output is written to
43      the terminal and captured in $INSTALLROOT/lib/package/gen/make.out:
44		bin/package make
45  (7) List make results and interesting errors:
46		bin/package results
47      Run the regression tests:
48		bin/package test
49      List test results and errors:
50		bin/package results test
51  (8) The generated binaries are position independent, i.e., they do not
52      contain hard-coded paths. However, commands with related files, like
53      file(1) and nmake(1), require the path of the bin directory to be
54      exported in PATH.
55  (9) You can run the binaries directly from the package root, or you can
56      install them in a public root after you are satisfied with the make and
57      test actions (requires the AT&T nmake(1) command):
58		bin/package flat install DIRECTORY PACKAGE
59      This will install in DIRECTORY/bin and DIRECTORY/lib. If you want to
60      preserve the arch/HOSTTYPE hierarchy under DIRECTORY then omit the
61      flat argument. If you don't have nmake(1) then the following will do a
62      flat install:
63		cd $INSTALLROOT
64		cp -p -r bin lib include DIRECTORY
65  (10) To summarize, after the first time the download, build, and test cycle
66      for the latest source release is:
67		bin/package setup source
68		bin/package make
69		bin/package test
70
71Source Package Installation Instructions -- Plan B:
72
73  (3) Create the subdirectory lib/package/tgz and download all package archives
74      into that directory.
75  (4) If the bin/package script does not exist then manually read the INIT
76      source package:
77		gunzip < lib/package/tgz/INIT.YYYY-MM-DD.tgz | tar xvf -
78      Note that some browsers automatically unzip downloaded without warning.
79      If the gunzip fails try:
80		tar xvf - lib/package/tgz/INIT.YYYY-MM-DD.tgz
81      If your system does not have tar(1) or gunzip(1) then download the ratz
82      source package, compile it, and manually read the INIT
83      source package:
84		mkdir bin
85		cp lib/package/tgz/ratz.YYYY-MM-DD.c lib/package/tgz/ratz.c
86		cc -o bin/ratz lib/package/tgz/ratz.c
87		bin/ratz -lm < lib/package/tgz/INIT.YYYY-MM-DD.tgz
88  (5) Read all unread package archive(s):
89		bin/package read
90      Both source and binary packages will be read by this step.
91
92All recorded changes follow.
93
94:::::::: INIT ::::::::
95
9612-07-17 iffe.sh: add C code NOTE("...") to ammend --verbose output
9712-06-26 iffe.sh: fix "npt foo" to handle function-like macro foo()
9812-06-20 package.sh: use $KSH for rt in "results test"
9912-06-15 Makefile: add PLUGIN_LIB to $INSTALLROOT/bin/.paths and BUILTIN_LIB => PLUGIN_LIB
10012-06-15 package.sh: add PLUGIN_LIB to $INSTALLROOT/bin/.paths and BUILTIN_LIB => PLUGIN_LIB
10112-06-13 package.sh: handle admin.db column output
10212-06-08 iffe.sh: fix 12-06-06 typo
10312-06-06 iffe.sh: check for -l* in reverse and accumulative order (e.g., for -last & -lm)
10412-06-04 package.sh: always check $INSTALLROOT/lib/package/profile
10512-05-31 Makefile: ID=ast; $(INSTALLROOT)/prototyped.h => $(INSTALLROOT)/$(ID)/prototyped.h
10612-05-28 iffe.sh: api foo YYYYMMDD => FOOAPI(rel) test macro
10712-05-24 package.sh: change admin.db comment => owner attributes
10812-04-25 ratz.c: add sear -k option to keep installation tmp dir on exit
10912-04-17 package.sh: skip sh version logic for ``use''
11012-04-17 cc.ibm.risc*: _LARGEFILE64_SOURCE => _LARGE_FILE_API moved to libast/features
11112-04-09 cc.ibm.risc*: speak aixese for _LARGEFILE64_SOURCE
11212-02-29 cc.darwin.i386*: handle default cc vs kernel bittedness
11312-02-29 C+probe: add __TIMESTAMP__ to the nopredefined list
11412-02-29 package.sh: don't assume grep -q or /usr/local/lib in LD_LIBRARY_PATH
11512-02-29 package.sh: fix ksh vs -lcmd compatibility checks
11612-02-23 iffe.sh: checkcc() before checkread() for sensible diagnostics
11712-02-14 package.mk: { --clobber --compare --link=lib*.a* } for --mam=static
11812-02-14 package.mk: export LICENSEFILEDEFAULT instead of LICENSEFILE
11912-02-14 package.sh: handle @(cc|ld).${HOSTTYPE}* intercepts
12012-02-07 package.sh: add { clean clobber } actions
12112-02-02 regress.sh: fix ulimit -c defaults for --nokeep
12212-01-18 regress.sh: add INPUT|OUTPUT|ERROR -e 'filter' to filter before comparison
12312-01-21 package.sh: fix `admin make' bug that created unused $INSTALLROOT/lib
12412-01-21 Makefile: :PACKAGE: license=ast -- oops
12512-01-20 cc.darwin,cc.mvs.390: tmp=/tmp/cc.${USER:-$LOGNAME}.$$.err
12612-01-12 package.sh: add admin make share closure to handle alternate HOSTTYPEs
12711-12-13 iffe.sh: add /*<NOSTDIO>*/ test code comment to disable default #include <stdio.h>
12811-11-11 C+probe: test for .so before .sl
12911-10-26 package.sh: don't forget about *.pkg for admin update
13011-10-18 cc.*-icc: update and add more
13111-10-11 package.sh: handle package make|view when no source installed
13211-09-11 package.sh: count admin '*** termination code' errors
13311-08-31 mamake.c: add -e, ignore use recursive prereq timestamps
13411-08-29 iffe.sh: add ``set stdio try1.h - try2.h ...''
13511-08-29 iffe.sh: trap EXIT => trap 0 for ancient sh
13611-08-11 iffe.sh: handle ancient sort that doesn't have -k
13711-06-01 make.probe: add more /lib64 logic
13811-05-01 package.sh: fix admin ditto to sync LICENSES too
13911-03-25 package.sh: initialize { $SED $TR } before first use!
14011-03-21 package.sh: fix vpath probes
14111-03-17 iffe.sh: fix cleanup to rm $tmp* instead of $tmp*.*
14211-02-24 package.sh: change curl usage to "curl -L ..."
14311-02-11 package.sh,C+probe,make.probe,mamprobe.sh: add ###.*archiac.*###
14411-02-02 Makefile: add :MAPLIB: check for ancient -lw
14511-02-02 make.probe: handle -print-multi-directory => 64 => /usr/lib64 /lib64
14611-02-02 package.sh: HOSTTYPE=*,*cc*[,-*,...] sets CC [ and CCFLAGS ]
14711-02-02 make.probe: handle gcc $ORIGIN link but exec failure -- gee thanks
14811-01-25 cc.hp.ia64: bundled cc is a pile of shaving cream
14911-01-07 iffe.sh: check debug==3 for is_hdr() failure
15010-11-22 ditto.sh: fix timing problem between |& and exec &p
15110-11-10 package.sh: fix cc cross compile check to use checkcc absolute path
15210-10-10 package.sh: list main env vars at start of make action
15310-10-10 ratz.c: tweak widnows delays
15410-09-10 ratz.c: add _SEAR_ARGS for _SEAR_EXEC
15510-09-01 package.sh: fix ratz from source logic
15610-08-25 package.mk: consolidate license file search in .package.licenses.
15710-08-22 ratz.c: run sear bootstrap command detached
15810-08-20 C+probe: version_stamp only if version_flags works
15910-08-17 package.sh: unset makerules *DIR variables in env
16010-08-15 package.sh: "make" action now lists some env values
16110-08-11 mktest.sh: add "DO command ..."
16210-07-27 rt.sh: handle "rt X=Y ..."
16310-06-29 ratz.c: non-option sear args passed to sear_exec()
16410-06-25 iffe.sh: "api" op changed to not do "map-libc" type mappings
16510-06-25 package.sh: "force admin ditto" => no ditto --update option
16610-06-22 C+probe: handle cc that require .[ci] input for version info
16710-06-21 ditto.sh: change default remote access to ssh (about time)
16810-06-12 regress.sh: DISGNOSTICS [ 1 | 0 | pattern ] and fix EXIT for all
16910-06-09 package.sh: add AT&T to usable nmake check
17010-06-06 iffe.sh,iffe.tst: add { api ver } ops
17110-04-22 package.sh: update "html binary|source" NAME/PASSWORD info
17210-04-15 iffe.sh: don't forget candidate headers for hdr|sys!
17310-04-11 WWW.mk: disable man page metarule -- now done by admin-man(1)
17410-02-14 package.sh: $CC verification needs $INSTALLROOT/bin in PATH
17510-02-11 package.sh: fix package admin make report error count
17610-02-02 package.sh: fix write binary bug that did scp on local fs
17710-02-02 package.mk: up to date binary targets must still be in PACKAGE.*.lst
17810-01-01 package.sh: fix premature $INSTALLROOT/bin during cross compile check
17910-01-01 make.probe: handle ['"] in CC.VERSION.STRING
18009-12-04 iffe.sh: add "opt name" to check for name in $PACKAGE_OPTIONS
18109-11-30 mktest.sh: change RESET to STATE.RESET to make it global
18209-11-14 make.probe: use gcc { -print-multi-directory -print-search-dirs }
18309-11-11 package.sh: re-order and combine cc checks
18409-10-27 C+probe,make.probe,probe.win32: add CC.SUFFIX.DEBUG
18509-10-21 iffe.sh,Makefile: test -e is not in ksh88!
18609-10-06 iffe.sh: handle cc -E #error with 0 exit status (sgi)
18709-10-06 package.sh: stub in ar intercept checks -- not used yet
18809-10-06 ar.ibm.risc: add ar intercept because some aix require -Xfoo first!!
18909-09-24 regress.sh: fix UMASK logic to create test support files before umask
19009-08-28 release.c: change docs to mention stdin if no file operands
19109-08-24 package.sh: fix isascii() bug that failed on od(1) trailing space
19209-08-20 make.probe: add CC.SHARED.NAME
19309-08-20 regress.sh: add { JOB CONTINUE EXITED KILL FIFO }
19409-08-11 package.sh: filter lines containing : for package results
19509-07-31 make.probe: add CC.AR.ARFLAGS (for aix ar -xany)
19609-07-31 package.sh,cc.*: fix -dumpmachine to handle 32/64/* bit options
19709-06-24 package.sh: fix admin.db output formatting
19809-05-05 package.sh: export dll hackery environment vars
19909-05-05 package.sh: handle non-identifier hostnames
20009-05-05 mamake.c: pass undefined ${...} identifiers to the shell
20109-05-05 mamake.rt: add macro expansion regression tests
20209-05-01 iffe.sh: fix output initialization *again*
20309-04-28 package.sh: handle admin.db contact field $9
20409-04-15 iffe.sh: add implicit "ini" op to initialize io for subsequent ops
20509-03-31 regress.sh: EXPORT before test => global ENVIRON[]
20609-03-26 package.sh: test fail pattern is 'fail[es]'
20709-03-26 UNIT - ... appends (options) to command line
20809-03-19 TEST.mk: x.tst => x only if x is command target
20909-03-15 regress.sh: add ${MAIN} for base name of main unit
21009-03-10 TEST.mk: add .SOURCE:tests if tests is a dir
21109-03-03 regress.sh: allow command line unit to override UNIT
21209-03-03 mktest.sh: handle IO == $'\n'
21309-02-02 package.sh: delay $INSTALLROOT/bin/.paths generation until mamprobe runs
21409-01-30 cc.mvs.390: c89 balks at [ ()] in -Dname="..."!
21509-01-27 package.sh: add isascii() to use ratz instead of tar
21609-01-20 hurl.sh: add --size=bytes option
21709-01-08 TEST.mk: add test.* prereqs, multiple arg lists with :T=*: binding
21809-01-03 regress.sh: fix UNIT to allow command line override
21909-01-03 mktest.sh: handle TWD
22008-12-24 package.sh: fix cross-compile HOSTTYPE logic
22108-12-15 package.sh,hurl.sh: handle http codes { 301 302 303 }
22208-10-16 make.probe '-fno-stack-protector -fno-stack-protector-all' to cop out!!
22308-09-30 rt.sh: fix ksh93 regression test signal count
22408-09-26 regress.sh: ignore SIGPIPE for SET pipe-input
22508-09-24 package.sh: package only test foo => make --recurse=only recurse tests foo
22608-09-20 make.probe: handle another /usr/bin/file shared lib description
22708-09-20 regress.sh: add --pipefail for SET pipe-input ...
22808-09-17 Makefile: add gdbm1.c for <gdbm-ndbm.h>
22908-09-10 make.probe: add CC.NOPROTECT
23008-08-08 mktest.sh: add --width=width
23108-08-05 dbm.req: favor sleepycat ndbm compatibility
23208-08-04 C+probe: fix stdlib initialization logic
23308-06-24 package.sh: fix $INSTALLROOT/bin/cc intercept time stamp file typo
23408-06-20 TEST.mk: make the localyunit before *.rt => *.tst -- doh
23508-06-20 mktest.sh: prepend $PWD onto PATH for local units -- doh^2
23608-06-11 regress.sh: fix bug that skipped the last test
23708-05-20 regress.sh: add --local to put *.tmp dir in local fs
23808-05-05 regress.sh: add IF command ... ELIF command ... ELSE ... FI
23908-05-01 package.sh: package test => ulimit -c 0
24008-04-28 regress.sh: fix EXPORT quoting
24108-04-28 regress.sh: fix UNIT set check args too
24208-04-24 rt.sh: exit code > 256 => signal termination
24308-04-10 C+probe: change probe_so order to check .so last (macos ld workaround)
24408-04-01 package.sh: handle multiple admin HOSTTYPEs per HOST
24508-03-28 C+probe: add C++ #include <iostream> (no extension) dir probes
24608-03-17 regress.sh: fix trap on EXIT, add terminated note to final tally
24708-02-28 make.probe: fix probe_warn to include ld!
24808-02-02 make.probe: add CC.RUNPATH to match default -L order
24908-01-31 package.sh: check lib64 for LD_LIBRARY_PATH
25008-01-31 iffe.sh: tweak ancient /bin/sh workarounds
25108-01-28 make.probe: darwin ld export dynamic is -force_flat_namespace
25208-01-28 C+probe: handle sgi cc error message but exit 0 botch(es)
25308-01-23 package.sh: fix checksum doc typo
25408-01-09 C+probe: add __FUNCTION__ to the undef (don't check) list
25507-12-14 iffe.sh: add set nooptimize
25607-12-03 package.sh: add LC_ALL=C
25707-11-27 package.sh: fix overaggressive *.md5 cleanup
25807-11-20 iffe.sh: treat exit status >= 250 as normal error with no signal
25907-11-05 package.sh: fix write op error count pattern
26007-11-05 package.mk: fix $(~req) .ver binding
26107-08-11 probe.win32: add cl.exe setuid workaround, CC.VERSION[.STRING]
26207-08-01 package.sh: handle 'package read lcl|tgz'
26307-05-08 regress.sh: execute basename instead of absolute path for short $0
26407-04-27 cc.sgi.mips[34]: for #error to exit non-zero -- a no brainer
26507-04-20 mktest.sh: defer to systems without 'grep -q' -- sigh
26607-04-11 mamprobe.sh: handle $(CC.*) => ${mam_cc_*}, $(...) => ${...}
26707-04-11 make.probe: fix CC.PICBIG probe, default { CC.PIC CC.DLL } to BIG
26807-04-04 iffe.sh: prepend ${tst}${ext} to each .c probe
26907-03-28 package.sh: fix binary tgz architecture type duplication
27007-03-28 package.mk: add binary write PACKAGE.$HOSTTYPE.lst
27107-03-28 iffe.sh: add -F header to mac test
27207-03-23 make.probe: handle file(1) that returns 'archive' for .so
27307-03-22 mamprobe.sh: fix STDED probe for implementations that ignore EOF
27407-03-11 package.sh: add nocopyright and tst => nocopyright
27507-03-11 package.mk: add copyright=0
27607-03-08 C+probe: restore IFS after probe.ini
27707-02-26 mamake.c: expand first of ${mam_lib*} for ${AR}
27807-01-05 package.sh: fix "admin write binary" logic
27907-01-01 iffe.sh: add "cmd" --verbose trace
28007-01-01 iffe.sh: sort => LC_ALL=C sort
28107-01-01 C+probe: LC_ALL=C
28206-12-22 make.probe: lean on gcc -v for stdlib, but preserve /usr/local!
28306-11-23 package.sh: *.md5 are not tarballs -- doh
28406-11-23 iffe.sh: add -F, --features=feature-test-header
28506-11-11 make.probe: favor lib64 over lib for hosttype==*64
28606-10-31 make.probe: add "-ignore-source-dir -iquote" test
28706-10-31 iffe.sh: add status{...} code block
28806-10-11 regress.sh: fix DO to handle {...} (time for regress.tst?)
28906-10-11 package.sh: handle already gunzip'd *.tgz
29006-10-06 iffe.sh: add reference for header content tests
29106-09-27 regress.sh: fix UMASK to do DO too (duh)
29206-09-22 iffe.sh: drop -O for npt tests (for msvc intrinsics)
29306-09-14 cc.darwin: drop -O until gcc 4.* gets its act together
29406-09-11 package.sh: { cc ld ldd } intercepts check ${HOSTTYPE%.*} too
29506-09-08 regress.sh: add PIPE INPUT|OUTPUT for pipe io
29606-09-05 C+probe: add { probe_version version_stamp version_string }
29706-09-05 make.probe: add version stamp comment, CC.VERSION[.STRING]
29806-08-27 regress.sh,mktest.sh: add UMASK
29906-08-25 regress.sh: add -b,--ignore-space,IGNORESPACE
30006-08-25 mktest.sh: add IGNORESPACE
30106-08-24 mktest.sh: handle \000 in data
30206-08-24 regress.sh: handle -f* for INPUT|OUTPUT|ERROR
30306-08-16 package.sh: fix 'install flat' logic
30406-08-11 rt.sh: handle style=shell %K date format
30506-07-17 ratz.c: fix __MVS__ FAR definition
30606-07-17 iffe.sh: "header x.h" -- deprecate "include x.h" for .SCAN.iffe
30706-07-17 package.sh: differentiate urls vs. assignments
30806-06-27 rt.sh: add --failed, --heading
30906-06-27 C+probe,TEST.mk,make.probe,mktest.sh,regress.sh: 'ulimit -c 0'
31006-06-26 cc.darwin.ppc: handle -lcc_dynamic disappearance
31106-06-25 mktest.sh: implement PROG
31206-06-11 Makefile: add -ldbm :MAPLIB:, provide public MAPLIB.mk
31306-05-06 package.sh: add PACKAGE_admin_tail_timeout
31406-05-22 ratz.c: upgrade to zlib-1.2.3
31506-05-09 package.sh: fix admin.db docs
31606-03-11 package.sh: fix `package use - command ...'
31706-03-05 make.probe: work around pedantic bash 3.1 mismatched " in `.`
31806-02-14 package.sh: "results failed test" == "results test failed"
319	 cc.sgi.*: add _AST_cc_OPTIONS parameterization, -OPT:Olimit=0
320	 cc.linux.ia64-icc: add for intel cc
32106-02-02 package.sh: freebsd stuck with os version for all arch
32206-02-01 package.mk: fix locale logic (tw -d requires dir arg)
32306-01-31 package.sh: require $CC only for make|test
32406-01-30 package.sh,hurl.sh: use the backwards-compatible --http-passwd
325	 package.sh: add more pdksh => /bin/sh checks
32606-01-26 package.sh: wget --http-pass => --http-password
327	 package.sh: fix wget error logic
328	 hurl.sh: wget --http-pass => --http-password
32906-01-11 package.mk: pass package.license.class to make --mam too
330	 package.mk: variants=pattern => --variants=pattern
331	 package.sh: darwin rel<=7 => darwin7.ppc
332	 package.sh: freebsd rel<=4 => freebsd4
333	 package.sh: freebsd rel<=5 => freebsd5
33405-12-07 iffe.sh: don't emit <stdio.h> if <sfio.h>|<ast.h> (XXX)
33505-12-05 make.probe: disable readonly.exe core dump via ulimit -c 0
33605-09-22 mktest.sh: add EXEC [ ++NOOUTPUT ++NOERROR ++NOEXIT ]
33705-09-21 mktest.sh: fix --style=shell compare to ignore \r
33805-09-12 TEST.mk: all --force to force %.rt regeneration
33905-09-05 TEST.mk: regenerate from %.rt only if newer, :SAVE: %.tst
34005-08-25 mktest.sh: add
341	 TEST.mk: add %.rt=>%.tst for mktest
34205-08-18 package.sh: 'package host cpu' now checks $NPROC first
34305-07-17 iffe.sh: add { define extern include print } ops
344	 iffe.sh: accept output{...}end output on success only -- doh
34505-07-01 package.sh: add TARPROBE for tar B flag probe
34605-06-24 package.sh: fix binary read chmod via *.sum
34705-06-06 package.sh: fix KEEP_HOSTTYPE logic to handle synthesized types
34805-06-01 make.probe: verify that cc_pic works for hosted cc
349	 cc.lynxos.ppc: make -mshared the default
350	 package.sh: note $INSTALLROOT/bin/@(cc|ld|ldd) installation
35105-05-25 make.probe: add CC.INCLUDE.LOCAL instead of -I- in CC.DIALECT
35205-05-24 iffe.sh: really fix grouping logic -- with tests this time
353	 package.sh: pipe/socket configuration mismatches => use /bin/sh
35405-04-28 TEST.mk: add $(TESTS)
35505-04-19 package.sh: package results test uses rt if possible
356	 iffe.sh: fix 'op var - ... - ...' grouping logic
35705-04-15 rt.sh: handle autom4ate style
35805-04-11 regress.sh: fix unit name when command line unit also specified
359	 rt.sh: handle all ast package test output formats
360	 package.sh: fix make docs for options passed to underlying make
36105-04-08 package.sh: cp -p makerules.mo to $OK to preserve mtime
362	 regress.sh: add "TITLE name" to change TEST output title
36305-04-01 rt.sh: add pretty make test + regress.sh wrapper
36405-03-29 package.sh: test -e path => test -f path -o -d path
36505-03-24 make.probe: fix CC.PICBIG probe to prefer -fPIC over -fpic -- doh
36605-03-19 mamake.c: command line name=var also defines name.FORCE=var
36705-03-11 regress.sh: unset LC_ALL when LC_* EXPORT'd
368	 package.sh: old make.out saved in circular make.out.[1-9]
369	 mamake.c: sync with nmake :W=O:
37005-03-01 package.sh: fix flat hierarchy initialization
371	 package.sh: admin action now properly resets sibling remote logs
372	 package.mk: relax unknown/unwritten package messages to warnings
373	 package.sh: handle space in command line name=value
374	 make.probe: add mvs -Wc,dll,exportall,longname,rent to CC.DLL probe
37505-02-24 package.sh: hosttype *.powerpc => *.ppc
376	 cc.lynxos.ppc,ldd.lynxos.ppc: add
37705-02-22 mamake.c: fix { -G --debug-symbols -S --strip-symbols } MAMAKEFLAGS bug
37805-02-20 probe.win32: handle /platformsdk mount
37905-02-19 package.sh,package.mk: add write tst for tgz in tst subdir
38005-02-18 package.sh: accept cc -dumpmachine with 0 or 1 -
38105-02-14 package.sh: handle mutiple architectures per host in admin.db
382	 Makefile,package.sh: honor $INSTALLROOT/bin/.paths overrides
383	 package.sh: normalize trailing [-_]bits in host type
384	 iffe.sh: some ksh-compatible shells don't do *(pattern)
38505-02-11 iffe.sh: back out 05-01-11 child process stdin hijack
386	 cc.lynxos.i386: -dynamic instead of -static default
38705-02-10 package.sh: cyg usr/doc => usr/share/doc
38805-02-08 package.sh: drop -m with pax -- delta bug fixed 2005-02-08
389	 iffe.sh: work around old bash 0<... redirection bug
39005-02-06 package.mk: source.tgz: update generated files only when they change
39105-02-02 *.sh,*probe: IFS may be unset and { ash bsh } don't on startup -- wow
39205-01-11 package.sh: update setup docs to include authorize+password
393	 package.mk: fix .source.cyg final directory edit
394	 package.mk: notice=1 for conspicuous empty NOTICE file
395	 WWW.mk: fix *-index.html installation
396	 filter.sh: retain input file suffix in tmp copy
397	 mamexec.c: fix non-contiguous "exec" bug that skipped lines
398	 iffe.sh: fix candidate lib test to try grouping subsequent libs
399	 iffe.sh: fix child process stdin hijack that skipped input lines
400	 iffe.sh: --shell=osh to force read -r compatibility command
401	 iffe.sh: chop iffe input leading space before # for KnR compatibility
40205-01-05 package.sh: add ${TAR} ${TARFLAGS} and tar B flag for pipes
403	 mamake.c: fix makefile scan to ignore lib*.[hH]
404	 iffe.sh: immunize function/symbol tests from aggressive -O
40504-12-28 WWW.mk: add :WWWPAGE: faq.*.mm index generator
40604-12-21 ratz.c: make sure tmp dir is writable -- doh
40704-12-08 iffe.sh: fix dat test for aggressive -O
40804-12-01 iffe.sh: add `include file' to pull in #define's for `exp'
40904-11-11 package.sh: default MAKESKIP is "*[-.]*"
41004-10-22 ratz.c: change docs to note zlib license
411	 mamake.c: handle --debug-symbols and --strip-symbols
412	 package.sh: make (debug|strip)=1 => --(debug|strip)-symbols
413	 package.mk: add :LICENSE: => package.license.class
414	 mamake.c: fix recursive order logic
41504-10-18 package.mk: add :LICENSE:, :OMIT: to omit package subdirs
41604-10-11 package.sh: add 'authorize name' and 'password password'
41704-10-01 iffe.sh: double check $static link with ! $static
418	 Makefile: add BUILTIN_LIB to $INSTALLROOT/bin/.paths
419	 make.probe: add CC.DIALECT EXPORT={ALL,REF,EXT,DLL}
420	 package.sh: add BUILTIN_LIB to $INSTALLROOT/bin/.paths
42104-09-21 package.mk: $(init)$(name) is now an implicit prereq
42204-09-09 package.sh: copy makerules.mo to $INSTALLROOT/bin/ok
42304-09-01 package.mk,package.sh: rename *.txt => *.README
424	 package.mk: add the runtime package type (no *.[ah])
425	 iffe.sh: fix key test reports
42604-08-26 Makefile: { add m2.c m3.c } -lm tests for { frexp[l] ldexp[l] }
42704-08-11 package.mk: handle HOSTTYPE for solaris > 9
428	 package.sh: add `checkaout proto' for { make view }
429	 package.sh: check for { md5sum md5 }
430	 iffe.sh: add {if|elif|else|endif} test ...
431	 iffe.sh: add 'exp - expression' and '( expression )'
432	 iffe.sh: add 'name = test ...' user defined macros
433	 iffe.sh: add '! test ...' negation
434	 TEST.mk: add implied { .c .sh } generated prereq
435	 cc.darwin.ppc: handle 10.3 -dylib mess
43604-08-01 package.mk: let include handle nested requirements -- duh
43704-07-31 package.sh: attempt a second ping before admin assumes host down
43804-07-26 package.sh: fix hp.ia64 HOSTTYPE
43904-07-23 probe.win32: generalize #include dir order search
44004-07-17 regress.sh: add INPUT -x for chmod +x
44104-07-01 regress.sh: TMP => TWD
44204-06-29 regress.sh: put COMMAND in $TWD too
44304-06-21 regress.sh: mkdir -p INPUT and OUTPUT intermediate dirs
444	 TEST.mk: add :TEST: -- to disable .c .sh search
44504-06-18 TEST.mk: add .SCAN.tst
44604-06-17 regress.sh: TEST returns true if active, false otherwise
447	 regress.sh: add CD to change test pwd from $TWD
44804-06-16 regress.sh: add TWD for ./unit.tmp override
449	 regress.sh: DO now flushes previous test
450	 regress.sh: INPUT and OUTPUT handle -f for printf instead of print
45104-06-11 package.sh: make sure $INSTALLROOT/bin is in front of $PATH
452	 package.sh: skip nmake if older than 2000-10-31
45304-05-20 package.sh: fix arg vs. package parse with - or '' to disambuguate
45404-05-11 package.sh: package verbose update lists closure for package setup
455	 package.sh: add src/lib/libardir to nmake proto bootstrap
456	 regress.sh: probe for rm -u vs. chmod -R u+rwx
45704-05-01 package.sh: $CC must be C, not C++; allow release command on $PATH
45804-04-15 make.probe: check probe_libdir false positives
459	 package.sh: add lib/package/*.lic src package subdirs
460	 package.mk: add mamfile=0 to inhibit Mamfile generation
461	 iffe.sh: config name_DECLARED => HAVE_name_DECL
462	 iffe.sh: fix mac to handle default value
46304-04-11 iffe.sh: normalize sed [\\\\/] quoting
46404-04-04 package.mk: only checksum generated tarballs
465	 mamprobe.sh: add STDCHMOD
46604-04-01 C+probe: set export LANG=C for uniform error messages
467	 make.probe: another CC.STDLIB tweak
468	 package.sh: fix regress core dump pattern, expand [a-z] match ranges
46904-03-31 Makefile: add intl :MAPLIB: test
470	 make.probe: fix CC.STDLIB search; drop CC.* path duplicates
47104-03-28 iffe.sh: drop unused exec $stdin<&0 dup
47204-03-25 Makefile: add iconv :MAPLIB:
473	 package.sh: use ${PING:-ping -c 1 -w 4}, allowing admin.db override
47404-03-24 package.mk: add *.md5 checksum for each *.(c|exe|tgz)
475	 package.sh: update base change on md5 sum instead of size
476	 iffe.sh: adjust case label \ and keyword quoting for ancient /bin/sh
47704-03-22 probe.win32: ncc => nld
47804-03-19 CONVERT.mk: change the instructions and old source dir default
479	 package.mk: fix recurse=list check
480	 package.mk: add *.md5 checksum for each *.(c|exe|tgz)
481	 package.sh: fix update base/delta/sync existence check
48204-03-18 iffe.sh: -d2 does not remove core dumps on exit
48304-03-17 package.sh: fix make recurse arg/action order
48404-02-29 package.sh: add regress action to compare current and previous tests
485	 package.sh: fix sgi.mips[23] HOSTTYPE test for old irix cc
486	 package.sh: add `export variable ...'
487	 package.sh: admin action now handles host name with non-id chars
488	 package.sh: non-numeric M T W in admin.db disables that action
489	 package.sh: fix admin write binary local vs. shared clash
490	 cc.hp.pa: add _AST_CC_hp_pa_DEFAULT=+DAportable
491	 cc.hp.pa64: sync with cc.hp.pa
492	 cc.ibm.risc: -bnolibpath => -blibpath:/usr/lib:/lib
493	 probe.win32: sync with make.probe
494	 make.probe: fix last chance dynamic test
495	 make.probe: add hp.pa CC.EXPORT.DYNAMIC -Wl,-E
496	 make.probe: add ibm.risc CC.EXPORT.DYNAMIC -bexpall
497	 make.probe: move probe_dll_def to the end of probe_dll
498	 package.mk: capture subcomponent mamfile recursion
49904-02-24 make.probe: strip "..." from cc/ld traces
500	 iffe.sh: add ``set [no]define'' to disable macro #define/#undef
50104-02-23 make.probe: rework CC.LD search
50204-02-14 make.probe: add CC.EXPORT.DYNAMIC for main dynamic sym export
503	 make.probe: resurrect CC.PIC with separate semantics from CC.DLL
504	 make.probe: add CC.SHARED.LD for CC.SHARED linker
505	 C+probe: clear DISPLAY to stifle interactive windows
50604-02-11 iffe.sh: handle ``siz void*'', add cross{ ... }end
507	 make.probe: add { CC.AR CC.SIZE }, fix cross command search
508	 cc.darwin.ppc: change $cc => $CC for old ksh + libast conf bug
50904-02-09 make.probe: drop -nostartfiles from CC.SHARED for C++
51004-02-04 package.sh: fix cross compilation bug that mixed binary formats
51104-02-02 package.sh: package admin now ditto's bin/package too
51204-01-30 cc.sgi.mips3: drop warning 3421
51304-01-11 regress.sh: output label#count for tests in loops
51404-01-05 regress.sh: fix bug that ignored the first SAME
51504-01-04 crossexec.sh: fix typo that did not recognize rcp
51603-12-19 mamake.c: add `foolib:foo:libfoo' to recurse()
51703-10-11 regress.sh: add EXPORT, export COLUMNS=80 for message consistency
51803-09-23 ratz.c: fix tar header number parse bug that skipped to next number
519	 regress.sh: rm cleanup now handles files matching -*
52003-09-11 iffe.sh: add unnamed { ... } blocks
521	 regress.sh: add COPY from to, like MOVE but comprison still done
522	 regress.sh: rm -rfu to handle test dirs w/o u+rwx
52303-08-14 Makfile: add hello.c to the manifest
52403-08-11 package.sh: fix `html binary' generation
52503-06-21 package.sh: fix INITROOT initialization bug
526	 package.sh: make sure admin logs exists before tail'ing
52703-06-11 probe.win32: fix $(BINDIR) typo that expanded in sh instead of make
528	 cc.mvs.390: return code 4 yields exit code 3 but its *really* ok
529	 package.sh: fix onpath function global var conflict
530	 make.probe: add CC.DIALECT { GNU -dD }
531	 package.mk: add Mamfile to lcl manifest
53203-06-10 package.sh: fix setup action typo that only checked the INIT package
533	 package.sh: *.s390x => *.s390-64
53403-06-09 package.mk: add cyg :POSTINSTALL:
53503-06-08 make.probe: fix CC.STDLIB logic
536	 hurl.sh: add User-Agent identification
537	 package.sh: tweak source and binary installation instructions
538	 cc.hp.pa,ld.hp.pa: +-Wl,+cdp,${INSTALLROOT}/lib/: drops abs lib paths
539	 ldd.hp.pa: add
54003-06-06 package.sh: fix $INSTALLROOT/bin/ldd check
541	 make.probe: add CC.STDLIB verification
54203-06-04 make.probe: add +forceread +noforceread
54303-05-11 hurl.sh: handle http://host:port/path
54403-05-06 package.sh: fix setup action PACKAGEROOT and INIT logic
54503-05-05 package.mk: fix cygwin tarball names
54603-04-30 package.sh: move (cc|ld|ldd).$HOSTTYPE updates from Makefile
54703-04-27 make.probe: fix mvs CC.PREFIX.SHARED "lib" => ""
548	 make.probe: add CC.DLL.DIR = $(BINDIR) or $(LIBDIR)
549	 make.probe: add { CC.LD.LAZY CC.LD.NOLAZY CC.LD.RECORD CC.LD.NORECORD }
550	 probe.win32: sync with latest CC.*
55103-04-25 mamprobe.sh: add args to `. $makeprobe' for ancient sh
55203-04-23 package.mk: fix dup "covered by" licenses
55303-04-22 probe.win32: CC.DIALECT += "LIBPP -I-" for all cc's
554	 package.sh: fix admin write binary tarball snarf
55503-04-21 package.mk: package covered *.@(pkg|lic) too
55603-04-15 package.mk: don't generate incremental archives for lcl
557	 package.mk: add incremental=[source:1 binary:0] archive control
558	 package.sh: generate $INSTALLROOT/bin/cc wrapper for CC != cc
559	 package.sh: admin must ditto lib/package/*.@(pkg|lic) too
560	 mamake.c: ignore time of ignore prereqs
561	 mamake.c: -D2 lists propagated times
56203-04-11 package.mk: tidy up cyg tarballs
563	 package.sh: fix old shell clash between get() and $get
56403-04-05 package.mk: restore *.inx generation somehow lost during cyg additions
565	 package.sh: add pthread_num_processors_np() last resort for cpu count
566	 package.sh: use `make believe' to accept mamake generated files
567	 package.sh: handle `make [make-flags] [target ...]'
568	 mamake.c: ignore -e
56903-03-21 package.mk: fix cyg old make typo
570	 package.sh: switch to `package setup' instructions
57103-03-19 package.sh: add registry checks for `host cpu'
572	 package.sh: `results failed' now lists core dump messages
57303-03-17 package.sh: on cygwin verify 'ntsec binmode' in $CYGWIN or die
574	 Makefile: install gcc wrapper if no cc
575	 package.mk: add :DETAILS: { :README: :EXPORT: :INSTALL: :TEST: } ops
57603-03-12 package.mk: add :DETAILS: for style-specific details
57703-03-11 package.sh: add beta setup/update support
578	 TEST.mk: add (TESTCC) prereq for .sh tests
57903-03-07 hurl.sh: add
58003-03-06 iffe.sh: fix lib win32 test cygwin vs native incompatibility
581	 iffe.sh: change internal stdio.h guard to handle C++ inline vs. macro
58203-03-03 package.sh: check for curl or wget for update
583	 package.sh: add setup action == update read make
584	 package.sh: fix packageroot() typo that showed up in non ~user shells
585	 mamake.c: treat name+=value args like name=value
586	 mamake.c: add ${var?*|value?match?no-match?}
587	 mamake.c: fix archive vs. dynamic bind logic
58803-02-28 package.sh: add the "cyg" (cygwin) package type
589	 package.mk: add "cyg" stubs, :CATEGORY: for category name(s)
59003-02-25 mamake.c: add -D4 system(3) debug trace
59103-02-24 package.mk: change --mismatch to --corrupt=accept
59203-02-14 ratz.c: add _WIN32 setmode([01],O_BINARY) and fopen "rb"/"wb"
59303-02-12 Makefile: handle getconf LIBPATH with host pattern
59403-01-31 package.mk: fix .lic search
59503-01-30 package.sh: handle { INIT ksh nmake } already installed elsewhere
596	 package.sh: admin handles command outside of $PACKAGEROOT/bin
597	 Makefile: install $(INSTALLROOT)/lib/make/package.mk
59803-01-28 package.sh: admin remote commands on one line to please syslog
59903-01-23 probe.win32: borland and mingw32 tweaks
60003-01-22 package.sh: fix $CC test to ignore set -x trace -- duh
60103-01-16 ditto.sh: tw --chop on by default
60203-01-14 package.sh: use /bin/cp to copy previous binaries to bin/ok/
603	 package.sh: admin now initiates remote exec and copy from local host
60403-01-12 package.sh: handle admin "xxx:" default root
60503-01-03 probe.win32: add /usr/include/borland path truncation workaround
60602-12-10 iffe.sh: add <&$nullin >&$nullout to checkread() $cc
60702-12-06 probe.win32: fix inlcude => include typo, add lcc lib
608	 probe.win32: CC.MAKE.OPTIONS = nativepp=0
60902-12-04 mamake.c: fix ${foo-bar} to expand foo if defined
61002-11-28 probe.win32: add C++ and -I- CC.DIALECT checks
61102-11-26 package.sh: package release now checks for second level files
61202-11-22 package.sh: update action now uses HTTP/1.0
61302-11-21 probe.win32: update the vc include dir test
61402-11-20 make.probe: fix CC.LD.ORIGIN typo that expanded make var
61502-11-13 packahe.mk: fix list.install => list.installed typo
61602-11-12 make.probe: add CC.LD.ORIGIN for a.out origin dir relative dll search
617	 make.probe: add CC.LD.STRIP for link time a.out strip
618	 package.sh: fix package_use vs. PACKAGE_USE check
61902-10-24 WWW.mk: fix bug that required a :WWWBIN: assertion to post
62002-10-23 mamake.c: fix unuinitialized time in make()
621	 ratz.c: fix meter buffer overflow
62202-10-20 package.sh: fix lib/probe/C/make/probe update test
62302-10-18 probe.win32: update for mingw
624	 make.probe: add bash workaround to SHELLMAGIC test
625	 package.sh: work around yet another cygwin hassle
62602-10-17 iffe.sh: short circuit id check for *[-+/\\]*
62702-10-08 regress.sh: unset FIGNORE to avoid rm . errors
628	 package.sh: unset FIGNORE to avoid rm . errors
629	 package.sh: $CC must at least compile and executable hello world
63002-10-04 package.sh: $INSTALLROOT/lib/package/tgz=>$PACKAGEROOT/lib/package/tgz
631	 package.mk: $(ED) => $(STDED), $(EDFLAGS) => $(STDEDFLAGS)
632	 iffe.sh: add identifier checks for tests that (implicitly) require them
633	 iffe.sh: disambiguate a few --config macros
63402-10-02 iffe.sh: fix shell=bsh `hdr a/b'
63502-09-30 package.sh: handle chmod of -* files
636	 package.sh: verify that $SHELL is Bourne compatible
637	 package.sh: tighten PACKAGE_USE logic PATH,LIBPATH,etc. validation
638	 iffe.sh: fix bug that didn't define mac variable on success
63902-09-22 package.sh: handle admin_action=ditto
640	 iffe.sh: --config sizeof(foo) macro is SIZEOF_foo
641	 iffe.sh: fix long.long test so it doesn't defeat uwin "typ long.long"
642	 mamprobe.sh: convert $("foo") nmake string constants
64302-09-21 mamprobe.sh: "-" info-path writes probe info to stdout
64402-09-11 make.probe: move from nmake src to be part of mamprobe.sh
645	 mamprobe: generate from mamprobe.beg C.probe make.probe mamprobe.end
646	 mamake.c: pass cc absolute path to mamprobe
647	 package.sh: generate mamprobe -- yuk (at least its confined to INIT)
648	 iffe.sh: lcl,nxt: drop default sys/ check
649	 ditto.sh: tw --logical by default; add --physical
65002-09-10 package.sh: SHELLMAGIC creeps into package too -- duh and fooey
65102-09-09 ditto.sh: test that remote .profile exists before sourcing
65202-09-06 package.sh: don't ditto nfs junk
653	 ditto.sh: --show now lists directory ops instead of enumerating all
65402-09-05 ditto.sh: add --remote={rsh|ssh}
655	 package.sh: add admin [[{rsh|ssh|-}]:]directory
65602-09-02 iffe.sh: change 'print -r --' to 'print -r -' for ksh86 compatibility
65702-09-01 cc.unix.mc68k: add for ancient 3b1
65802-08-22 package.sh: fix component() to test for components -- duh
659	 Makefile: add LICENSE:.DONTCARE to workaround mam
66002-08-11 iffe.sh: provide defaults for LD_* additions
66102-08-07 ratz.c: change -m to use * instead of non-portable inverse video
66202-07-17 mamprobe.sh: close tmp file in trap before rm for cygwin
663	 package.sh: fix "type" to handle i1586 (P4)
664	 package.sh: add the view action
66502-06-28 package.sh: handle multiple packages for release action
66602-06-27 package.sh: catch sol*.sparc=>sol*.sun4 when CC=gcc
66702-06-14 package.sh: fix admin_action to not include qualifiers
668	 package.sh: fix help/html doc typo
66902-06-11 package.sh: fix ditto update doc to `PACKAGEROOT field matching *:*'
67002-06-07 WWW.mk: change substitute $("\n") to \n
67102-06-06 package.sh: clarify output streams for help/html
67202-05-22 mamake.c: fix executable file check to use (S_IXUSR|S_IXGRP|S_IXOTH)
67302-04-04 package.sh: fix update to differentiate *.sun4 and sun4
67402-03-27 package.sh: yacc/bison warning only if both missing
67502-03-24 mamake.c: all shell actions wrapped with -c to avoid #! problems
67602-03-23 package.sh: recover $PACKAGEROOT/bin/package if not in INIT package
677	 package.sh: precheck $CC, not `cc'
678	 package.sh: fix install to use pax -ps to preserve set-uid/gid
679	 package.sh: fix install to use list.installed for existing files only
68002-03-17 package.sh: fix PAX initialization that was sometimes omitted for read
681	 package.sh: fix update delta sync fetch
68202-02-14 iffe.sh: fix macro{ }end docs to include "
683	 iffe.sh: add dfn to extract #define from headers
684	 iffe.sh: handle nxt #include ok but no line sync
685	 iffe.sh: drop local header clash logic
686	 iffe.sh: add -X, --exclude=dir to exclude -I dirs
687	 iffe.sh: lcl,nxt now generate <...> headers instead of "..."
688	 package.sh: admin.db root dir matching -* disables host
689	 package.mk: fix package.src.pat typo -- too many )
690	 package.mk: add { :COVERS: :DESCRIPTION: :REQUIRES: }
691	 package.sh: handle { :COVERS: :DESCRIPTION: :REQUIRES: }
692	 Makefile: move proto.c generation to the proto component dir
69302-02-02 execrate.sh: add for .exe challenged win32 systems/commands
694	 mamprobe.sh: add STD* commands/flags
695	 mamake.c: update mamprobe info when older than mamprobe executable
696	 package.sh: move ed/ex workaround to mamprobe.sh
697	 package.sh: fix `host type' bug that incorrectly assumed sun4 for sol
698	 package.sh: add execrate(1) hooks for challenged systems
699	 package.sh: add check for { cc ar nm yacc/bison } before make
700	 ratz.c: fix "rb" vs. "r" macro tests
701	 iffe.sh: add nxt, similar to lcl but defines _nxt_foo for #include
702	 iffe.sh,package.sh: remove vaibale from sccs,cvs ident strings -- duh
70302-01-24 C+probe: check CC.DYNAMIC to handle cc that accept but ignore -B*
704	 iffe.sh: handle 'mem struct.a.b'
70502-01-22 iffe.sh: cache (internal) `foo vs. struct foo' test results
706	 package.sh: uts.370 => uts.390
70702-01-18 package.sh: fix uts hosttype
70802-01-17 package.sh: add 'results failed ...' to list failures only
709	 package.sh: change ARCH internal var to all_types to avoid env conflict
710	 iffe.sh: fix hdr/lib precheck that missed some -- ouch
711	 iffe.sh: fix noexecute test that forgot to check compile first!
71202-01-15 ratz.c: fix path[] type typo
71302-01-01 package.mk: tighten license search
71402-01-08 package.sh: `pwd` => ${PWD:-`pwd`}
715	 package.mk: expand license file pattern match
71602-01-04 iffe.sh: fix `exp name "value"' bug that duped "value"
717	 iffe.sh: fix initial <sys/types.h> check to honor --config
71801-12-25 iffe.sh: fix bug where -o file restored old file
71901-12-23 package.mk: uniq the closure lists
72001-12-07 ratz.c: fix --meter to retain paths containing " -- "
72101-11-30 ratz.c: use sear_system() to execute; should work on all windows
72201-11-28 ratz.c: fix sear_rm_r() to check SetCurrentDirectory() status
72301-11-26 ditto.sh: drop n+=v for ksh compatibility
72401-11-21 ditto.sh: add rsync script replacement [hey, it works!]
725	 package.sh: add [ditto]:directory notation to admin.db
72601-10-31 package.sh: handle *.sum paths with embedded space
727	 package.sh: change executable() to onpath()
728	 package.sh: executable([!] foo) replaces test [!] -x foo (.exe hack)
729	 package.sh: add os2 fix to `host type'
730	 mamake.c: add .exe hack
731	 iffe.sh: fix intrinsic function lib test
732	 mamprobe.sh: update pic probe to match make.probe for linux.ia64
73301-10-30 package.sh: make action skeleton view now checks subdirs
73401-10-20 package.sh: don't recurse into leaf dirs matching $MAKESKIP
735	 package.mk: tarball package.notice replaces `license accepted' prompt
736	 package.sh: eliminate `license accepted' prompt
737	 package.sh: add update to download latest from a url
738	 package.sh: use builtin arithmetic when we know its ksh
739	 iffe.sh: unkown -> unknown
74001-10-18 package.sh: convert to YYYY-MM-DD delta releases instead of NNNN
741	 package.mk: convert to YYYY-MM-DD delta releases instead of NNNN
742	 ratz.c: fix -m for paths containing \f\n\r\v
74301-10-16 ratz.c: _SEA_* => SEAR_*
744	 ratz.c: preserve stdin for sear_exec()
745	 ratz.c: add recursive sear_rm_r() to sear_exec() tmp dir cleanup
74601-10-10 mamprobe.sh: add mam_cc_SHELLMAGIC
747	 package.sh: add nfs wakeup call to admin to avoid stale file handles
74801-10-04 cc.darwin.ppc: -flat_namespace is not longer the default (huh)
74901-10-01 package make: prepend $INSTALLROOT/bin/ok to PATH
750	 package read: save cpy of bin/package when reading the INIT package
751	 mamprobe.sh: allow cc path with optional arguments
75201-09-24 Makefile,package.sh: add $INSTALLROOT/bin/.paths initialization
75301-09-19 package.mk: add recurse to list.package.*
754	 package.sh: bootstrap build nmake with _BLD_STATIC for _WIN32
75501-09-11 ratz.c: add _SEA_SKIP & _SEA_COMMAND for self extracting archives
75601-09-07 package.mk: fix output capture to not generate files names with spaces
75701-09-07 package.mk: fix delta release number search
75801-08-11 package.mk: handle single gz executable packages (e.g., for ksh)
759	 package.sh: fix package install to require nmake only if no *.sum
760	 iffe.sh: drop ancient menu and prompt actions; check ./hdr.h clash
76101-07-17 package: fix use cross compile test to generate files in /tmp
76201-06-27 ratz: handle hard and soft links if possible
76301-06-07 Makefile: fix :MAPLIB: for sco
76401-05-31 crossexec.sh: add
765	 iffe.sh: add -x crosstype to run crossexec
766	 iffe.sh: exp test now handles pass{}end fail{}end yes{}end no{}end
767	 package.sh: add package host canon external-host-type-name
768	 package.sh: fix `use USER' lookup for shells that support ~USER
769	 cc.*: add -dumpmachine to dump target HOSTTYPE
77001-05-18 iffe.sh: drop $HOME/tmp/t.sh debug trace -- oops
77101-05-01 mamake.c: scan() now handles :PACKAGE: foo:command
77201-04-26 *.sh: expand [a-z][A-Z][0-9] for non-contiguous character codes
773	 iffe.sh: fix run *.sh for shells that don't $* across . command
774	 cc.mvs.390: recode for /bin/sh
77501-04-25 package.mk: include non cc-g variants by default
776	 package.sh: *[._]* => *?[_.]* for mvs.390 /bin/sh
77701-04-24 TEST.mk: no tests for VARIANT=="DLL"
77801-04-22 package.mk,package.sh: tarball text members are ascii encoded
77901-04-18 package.mk: allow package name to be the same as one of its components
780         cc.mvs.390: handle .C .cpp .cxx
781         cc.mvs.390: compensate for -o that does not overwrite
78201-04-01 regress: fix SAME that just skipped it -- we should regress regress!
783	 iffe: fix bug that didn't emit _hdr_foo for internal hdr tests
784	 iffe: fix lcl bug for cc -E that doesn't emit line syncs
785	 ratz: add ascii=>ebcdic conversion for text archive members
786	 mamake: fix buffer overlap bug that clobbered the probe file path
78701-03-17 iffe: handle : separator as first arg
78801-03-15 mamake.c,ratz.c,release.c: add <stdlib.h> and <string.h>
78901-02-26 iffe.sh: fix bug that omitted runtime #define for `mac' op
79001-02-22 cc.ibm.risc: handle SF_CLOSE clash in <sfio.h>
79101-02-14 cc.sgi.mips3,cc.sgi.mips4: handle -mips2 -mips3 -mips4 for cross cc
792	 C+probe: quote "$cc" when its an argument!
793	 mamake: execute actions with $SHELL, ignored signals back to default
794	 package.sh: nmake check error output to /dev/null
795	 package.sh: fix INIT a.out updates for knr cc
796	 package.sh: package list now handles large tgz dirs
797	 package.sh: *-ok executables moved to ok/* for *.dll systems
798	 iffe.sh: change "exec >&-" to "exec >/dev/null" else linux mkdir fails!
799	 mamake: handle `bind -lx [dontcare]'
80001-02-12 ratz.c: fix _PACKAGE_ast includes
801	 package.sh: $HOSTTYPE env overrides if $PACKAGEROOT/arch/$HOSTTYPE/
802	 package.sh: $CC ^HOSTTYPE=[A-Za-z_0-9.]*$ overrides HOSTTYPE
803	 iffe.sh: fix dat code that used previous $tmp.exe
804	 iffe.sh: fix dat code for _DLL imports
80501-02-09 iffe.sh: add copy() for shells with the dissappearing here doc bug
80601-02-08 Makefile: guard against null $(CC.HOSTTYPE)
80701-02-06 Makefile: separate out cc,ld,ldd workarounds (so they will be packaged)
80801-02-02 package.sh: fix package use for $INSTALLROOT != */$HOSTTYPE
809	 package.sh: create intermediate recursion makefiles when needed
810	 package.sh: add $SECONDS to the DEBUG trace prompt
81101-01-01 ratz.c: #ifdef for uwin ncc
812	 iffe.sh,package.sh: check PACKAGE_PATH for local installations
813	 package.sh: add psrinfo for osf.alpha host cpu
814	 package.sh: change pax --meter probe; some hang on /dev/tty
815	 package.sh: fix `install flat ARCH'
816	 mamake: eliminate loops from scan order
817	 C+probe: add probe_verbose -V for aix cc=xlc
818	 cc.ibm.risc,ldd.ibm.risc: add
819	 package.mk: list refs to top-level licenses only
820	 package.mk: add local link table to change log html
82100-12-25 package.sh: `no package archives' is a hard error, duh
822	 package.sh: reorder host type logic for lame shells
823	 mamake.c: getcwd => getwd for NeXT -- how about posix==default guys
824	 iffe.sh: really gross workaround for NeXT -lposix stdout null's
825	 iffe.sh: handle cc -E that insists on compiling
82600-12-15 iffe.sh: ancient sh function call blows $*; call only when $# == 0
827	 *.sh: `getopts 2>/dev/null` => `(getopts)2>/dev/null` for ancient sh
828	 package.sh: fix LD_LIBRARY*_PATH initialization
829	 cc.next.m68k: add for _POSIX_SOURCE and linker multiply defined syms
83000-12-12 ratz: add --meter
831	 package.sh: a few VPATH fixes
832	 Makefile: don't override *.mips* cc if -version not accepted
83300-12-11 package.mk: *.inx now contains name=value
83400-12-07 package.sh: handle PC netscape . => _ pathname mangle
835	 WWW.mk: .tar.gz => .tgz
83600-11-27 package.sh: add checklicense() to do license checks at read time
837	 package.mk: change component list from preformat to table
83800-10-31 package.mk: *.pkg must assert closure
839	 package.mk: add cc- variants to list.package.binary
840	 package.sh: omit dups from package list
841	 package.sh: invalid arg gives one line Usage
842	 package.sh: relax checkaout checks for non-owners
843	 package.sh: package use sets NPROC if not already set or [01]
844	 proto.c: add $(INSTALLROOT)/include/ast hack
84500-10-26 WWW.mk: add .SOURCE rhs to :WWWPAGE:
84600-10-25 package: fix install
847	 package.mk: add list.install
84800-10-22 regress: fix VIEW to skip empty dirs
84900-10-19 package.mk: $(PACKAGEROOT)/bin/nmake => $(PACKAGEROOT)/bin/manmake
850	 iffe: validate #define identifiers
85100-10-18 C+probe: mac os10 additions
852	 package: add DYLD_LIBRARY_PATH initialization
853	 add ldd.$(CC.HOSTTYPE)
85400-10-01 iffe: handle -I* -L* options
85500-09-21 mamake: add libxxx and xxx to makefile ordered prereqs
85600-09-19 C+probe: add probe_longlong
85700-09-11 package: drop manmake and $PACKAGEROOT/bin/nmake
85800-09-08 iffe: verfiy that $cc is a C compiler
85900-06-14 mamprobe: fix win32.* probe
860	 mamake: fix bug that used lower view path for generation
861	 package: don't clobber $PACKAGEROOT/bin/nmake
86200-06-01 C+probe: fix stdinclude *again*
863	 package: fix write delta source to use default pax format
864	 package: add disambiguating bias for sgi.mips3 over sgi.mips4
865	 package.mk: fix for directory content packages lib ast-locale
86600-05-01 iffe: fix invalid _LIB_ macro identifier
86700-04-11 C+probe: uniq stdinclude and stdlib, fix usrinclude
86800-04-01 regress: fix explicit OUTPUT bug that didn't compare with expected
86900-03-17 package: all archives are .tgz for binary download
870	 package: $(PACKAGEROOT)/LICENSES/* in source and binary archives
871	 package: implement install and verify actions
872	 iffe: add exp, pth file dir ..., fix lib - -lfoo, fix lib - - -la -lb
873	 iffe: -L* must affect LD_LIBRARY* hacks for .exe tests -- yuk
874	 package.mk: add *.pkg :INDEX:
87500-03-07 package: add admin action
87600-03-06 makefile: install optional make probe override script C+make+probe.lcl
87700-02-14 --- release 1.0 ---
878	 ratz: treat "foo/" as a dir, not a regular file
879	 package: clarify source and binary installation instructions
880	 package: fix so binary packages can install without cc
881	 package: "ratz" now a non-archive package (the only one) for bootstrap
882	 package: handle VPATH=a:b arg
883	 package.mk: "ratz" package adjustments
884	 Makefile: use :PACKAGE_INIT: to support binary INIT packages
885	 WWW.mk: add :WWWALL:
886	 C.probe: fix .so check that let .dll slip through
887	 iffe: fix config sh var assignment for HAVE_member_IN_struct
888	 iffe: fix config sh var assignment for symbol_DECLARED
889	 package: delay PATH export until dll hack exports complete
890	 package: don't forget binary package $(INSTALLROOT)/lib(32|64)
891	 package: add delta change log for source packages
89200-02-10 mamprobe: add mam_cc_DLLBIG
893	 package: fix spelling typos
894	 package: add html help output
895	 package.mk: beef up source and binary help => html
89600-02-08 package: mkdir man/man[138] in the new arch to cover MAM bug
89700-01-28 package,release: add -rcount to release
898	 package: fix linux "host cpu" and "host rating"
899	 package: copy *.lic to $PACKAGEBIN for "make" and "write binary"
900	 package: fix 'release change log' case match
90100-01-24 package: add copyright action
902	 mamprobe: add -D_BLD_DLL to mam_cc_DLL
90300-01-11 package: tsort for package write
904	 package: early verification that $CC works
905	 package: add non-interactive command arg for use action
906	 proto: fix -C intermediate mkdir()
907	 mamprobe: unixware.i386 ksh workaround
908	 C.probe: move hosttype to C.probe (with unixware.i386 workaround)
909	 WWW.mk: fix mm2html option quoting
910	 WWW.mk: add .SCAN.mm
911	 WWW.mk: don't force static=1; grab dll's instead
912	 *.sh: fix getopts test to handle botched implementations like osf.alpha
913	 iffe.sh: fix read -r test
91499-12-25 iffe: tweak verbose messages
915	 iffe: hand code non-optget getopts parse
916	 iffe: fix bash quoting bug again
917	 iffe: do test -w . after option parse
918	 package: fix PACKAGEROOT search
91999-11-19 --- release 0.2 ---
92099-11-19 first working package & friends
92199-10-31 change from lib0ast to INIT; add MAM and package bootstrap
922	 hostinfo: gobbled by package
92399-10-01 iffe: add --config, yes{...}end no{...}end, fix read -r workaround
92499-09-27 iffe: add --all --verbose, --* set options
92599-09-22 regress: -v disables long line truncation
92699-09-11 WWW.mk: WWWDIR and MM2HTMLINFO are now lists searched in $(HOME)
92799-08-11 hostinfo: fix type sgi.mips4
92899-06-24 WWW.mk: add
92999-06-08 hostinfo.sh: ${TMPDIR:-/tmp}
93099-06-07 TEST.mk: add
93199-06-01 iffe: add `siz type' for _siz_type == sizeof(type)
93299-05-11 hostinfo,iffe,regress,use: long options
93399-05-01 C.probe: fix over aggressive stdinclude, e.g., /usr/include/machine
93499-04-01 hostinfo: sgi.mips? -o32 and -n32 checks
935	 iffe: check that . is writable
93699-03-17 hostinfo: fix for cc not found
937	 dl.c,hello.c,m.c: headers in conditionals to force .DONTCARE
938	 C.probe: extra check for include dirs pulled in by <sys/types.h>
93999-03-03 regress: add `UNIT - ...' for extra args
940	 Makefile: add (_hosttype_) prereq for cc
94199-01-23 hostinfo: tweak rating, use /proc/cpuinfo if there
94299-01-11 C.probe: shlib before lib, /usr before /
94398-12-25 iffe: work around win32.alpha intrinsic clash with -O
94498-11-11 regress: fix UNIT PATH lookup
94598-11-01 regress: add PROG
94698-10-01 hostinfo: add unixware.*
947	 use: export PACKAGE_*
94898-08-11 C.probe: add /usr/include check (for sco CC)
949	 hostinfo: handle uwin uname update
95098-05-01 regress: fix bug sometimes didn't list last test
95198-04-01 hostinfo: add cc path arg
952	 hostinfo: now works with /bin/sh
953	 Makefile: strengthed -lm probe
95498-01-23 Makefile: check for -ldl -lm
955	 C.probe: handle gcc -v -E phony include dirs
956	 iffe: fix lcl by dropping sort -u -- we need the real first
957	 iffe: `mem x' to test if x is a non-opaque struct
95898-01-11 $(INSTALLROOT)/lib32 for sgi.mips3
959	 $(INSTALLROOT)/lib64 for sgi.mips4
960	 add cc.hp.pa
96198-01-01 cc.sgi.mips*: turn off ld library multiply defined
96297-10-11 regress: add VIEW function for locating data
96397-10-01 Makefile: -ldl test moved to libdll Makefile
96497-08-11 regress: add MOVE
965	 regress: add SAME
966	 regress: use getopts
967	 regress: `EXEC' repeats previous test
96897-07-17 use: tweak PATH and LIBPATH bootstrap order
969	 iffe: fix lcl bug that botched pathnames with embedded spaces
97097-06-12 iffe: add npt `needs prototype' test
97197-05-09 hostinfo: mvs.* => mvs.390
972	 Makefile: cc.$(_hosttype_) workaround installed here
973	 iffe: fix nolink{ ... }end
974	 iffe: add [no]static{ ... }end for static link test
975	 C.probe: _probe_PATH => _probe_export which must be eval'd
97697-04-01 use: _RLD_ROOT set too
97797-03-17 mm2html: changed inner loop
978	 mm2html: handle .if|.ie|.el, .so
979	 mm2html: handle different man styles
980	 mm2html: differentiate mm/man in some non-obvious cases
981	 hostinfo: r5000 is not mips4
98297-02-14 hostinfo: validate type with cc
98396-12-25 C.probe: uwin tweaks
984	 iffe: use `...` instead of $(...) for alpha /bin/sh
985	 iffe: fix `typ' divide by 0
986	 iffe: `lcl' now drops X: prefix
987	 iffe: +l* -> -l*
988	 iffe: eval around ${...#%...} for bsd /bin/sh
989	 use: add sgi.mips LD_LIBRARY<abi>_PATH variants
990	 use: add -e to list exports
991	 iffe: lcl leaves leading [a-zA-Z]: for dos
992	 iffe: fix no{link|output|execute} logic
993	 C.probe: don't automatically add /usr/include for non-hosted compilers
994	 C.probe: don't automatically place /usr/include last
995	 C.probe: check gcc style -v -E for stdinclude usrinclude
99696-11-28 iffe: check BASH_VERSION for IFS botch
997	 iffe: typ long.xxx only if sizeof(long xxx) != sizeof(xxx)
998	 hostinfo: fix sgi.mips[234] tests
999	 hostinfo: fix ncr.i386 tests
100096-10-31 iffe: work around old bsh here doc bug by running separate sh
100196-10-11 iffe: *.iffe and *.iff for iffe src files
1002	 hostinfo: tighten sgi.mips cpu type check
100396-10-01 C.probe: add probe_libdir to catch alpha /usr/shlib
100496-09-17 iffe: fix typ bug that failed for single id types!
100596-08-31 hostinfo: handle recent sgi hinv cpu changes
100696-07-17 make sure sizeof(long xxx)>sizeof(xxx) for typ long.xxx
100796-05-09 C.probe: drop multiple / in stdinclude
100896-02-29 use: package root must have bin and lib subdir
1009	 mm2html: add
1010	 C.probe: probe_members += -whole-archive for gcc
1011	 iffe: add + fix the blasted `...'...\\...'...`
101296-01-31 use: add pkg dir
1013	 hostinfo: add tandem
101496-01-01 hostinfo: windows_nt|windows[0-9][0-9] -> win32
101595-11-24 hostinfo: linux-aout.* for non-elf linux
101695-11-11 use: add aix LIBPATH
101795-10-11 hostinfo: no args prints type
101895-08-11 use: add
101995-05-09 save original PATH in _probe_PATH
1020	 beef up library dir probe
102195-04-01 use c source suffix if it still preserves the dialect
1022	 add hostinfo
1023	 add lib/hostinfo/typemap user type map
1024	 add sol.sun4 cpu count
1025	 fix C.probe to properly handle C/C++ combined compiler drivers
1026	 add NeXT to hostinfo
1027	 bummer: mach has /usr/bin/hostinfo
102895-03-19 fix dialect executable test
102995-03-19 --- release 0.0 ---
1030

ast-open.README

1The AT&T Software Technology ast-open package from AT&T Research
2contains all of the ast open source commands and libraries.  This
3package is a superset of the following packages: ast-base ast-make
4ast-ksh ksh ast-ast ast-dss; you won't need these if you download
5ast-open.
6
7Source Package Installation Instructions:
8
9  (1) Do not install packages as root/super-user. Although some components may
10      have setuid executables, few must be owned by root. These are best
11      changed manually when the security implications are understood.
12  (2) Choose a package root directory and cd to it. This will be a local work
13      area for all packages.
14  (3) These instructions bypass the click to download package links on the
15      download site. If you already clicked, or if your system does not have
16      curl(1), hurl(1), lynx(1) or wget(1) then use the alternate instructions
17      for (3),(4),(5) in plan B below. Plan B installs the hurl(1)
18      script which works with ksh and modern bash. The top level URL is:
19		URL=http://www.research.att.com/sw/download
20  (4) If the bin/package script does not exist then run:
21		test -d bin || mkdir bin
22		url=$URL/package
23		(wget -O - $url||curl -L $url||hurl $url) > bin/package
24		chmod +x bin/package
25  (5) Determine the list of package names you want from the download site, then
26      use the package(1) command to do the actual download:
27		bin/package authorize "NAME" password "PASSWORD" \
28			setup source $URL PACKAGE ...
29      (Refer to the AUTHORIZATION paragraph on the main download page for
30      NAME/PASSWORD details.)  This downloads the closure of the latest
31      source package(s); covered and up-to-date packages are not downloaded again unless
32      package force ... is specified. Package content is verified using md5sum.
33      If the package root will contain only one architecture then you can install in bin and
34      lib instead of arch/HOSTTYPE/bin and arch/HOSTTYPE/lib by running this
35      instead:
36		bin/package authorize "NAME" password "PASSWORD" \
37			flat setup source $URL PACKAGE ...
38      To update the same packages from the same URL run:
39		bin/package setup source
40  (6) Build and install; all generated files are placed under arch/HOSTTYPE
41      ($INSTALLROOT), where HOSTTYPE is the output of bin/package (with no
42      arguments.) name=value arguments are supported; CC and debug=1 (compile
43      with -g instead of -O) are likely candidates. The output is written to
44      the terminal and captured in $INSTALLROOT/lib/package/gen/make.out:
45		bin/package make
46  (7) List make results and interesting errors:
47		bin/package results
48      Run the regression tests:
49		bin/package test
50      List test results and errors:
51		bin/package results test
52  (8) The generated binaries are position independent, i.e., they do not
53      contain hard-coded paths. However, commands with related files, like
54      file(1) and nmake(1), require the path of the bin directory to be
55      exported in PATH.
56  (9) You can run the binaries directly from the package root, or you can
57      install them in a public root after you are satisfied with the make and
58      test actions (requires the AT&T nmake(1) command):
59		bin/package flat install DIRECTORY PACKAGE
60      This will install in DIRECTORY/bin and DIRECTORY/lib. If you want to
61      preserve the arch/HOSTTYPE hierarchy under DIRECTORY then omit the
62      flat argument. If you don't have nmake(1) then the following will do a
63      flat install:
64		cd $INSTALLROOT
65		cp -p -r bin lib include DIRECTORY
66  (10) To summarize, after the first time the download, build, and test cycle
67      for the latest source release is:
68		bin/package setup source
69		bin/package make
70		bin/package test
71
72Source Package Installation Instructions -- Plan B:
73
74  (3) Create the subdirectory lib/package/tgz and download all package archives
75      into that directory.
76  (4) If the bin/package script does not exist then manually read the INIT
77      source package:
78		gunzip < lib/package/tgz/INIT.YYYY-MM-DD.tgz | tar xvf -
79      Note that some browsers automatically unzip downloaded without warning.
80      If the gunzip fails try:
81		tar xvf - lib/package/tgz/INIT.YYYY-MM-DD.tgz
82      If your system does not have tar(1) or gunzip(1) then download the ratz
83      source package, compile it, and manually read the INIT
84      source package:
85		mkdir bin
86		cp lib/package/tgz/ratz.YYYY-MM-DD.c lib/package/tgz/ratz.c
87		cc -o bin/ratz lib/package/tgz/ratz.c
88		bin/ratz -lm < lib/package/tgz/INIT.YYYY-MM-DD.tgz
89  (5) Read all unread package archive(s):
90		bin/package read
91      Both source and binary packages will be read by this step.
92
93All recorded changes follow.
94
95:::::::: ksh93 ::::::::
96
9712-08-01  --- Release ksh93u+ ---
9812-08-01  A bug that ignored interrupts for some builtins (e.g. cmdtst::grep)
99	  that read from stdin has been fixed.
10012-08-01  A bug that interpreted "cd .foo" as "cd foo" has been fixed.
10112-07-30  Added automatic restart for EINTR for ioctl, tcgetattr, and tcsetattr.
10212-07-23  A scoping error with namrefs to compound associative arrays has
103	  been fixed.
10412-07-20  A bug where builtin -d /path/foo deleted foo has been fixed.
10512-07-18  A bug in which /dev/stdout did not work in command substitution on
106	  some systems has been fixed.
10712-07-17  A bug in which the restricted option set in a subshell prevented
108	  some variables from getting restored when the subshell completed
109	  has been fixed.
11012-07-09  A bug in which the directory is not restored after a subshell changes
111	  the name of the directory for subshells executed in the same process
112	  has been fixed.
11312-07-09  A bug in which file descriptors created with {n}< file were not being
114	  closed has been fixed.
11512-07-09  The 12-04-04 fix for cd .. was not correct causing cd /etc;cd .. to
116	  remain in /etc.  This has been fixed.
11712-07-02  A bug in which builtin name did now work for builtins found in a
118	  library added by builtin -f lib has been fixed.
11912-07-02  A bug in the edit modes which <tab> after a directory did not refresh
120          the input line has been fixed.
12112-07-02  A bug in which an exit status > 256 corresponding to a signal was
122          not returned by a function to indicate a signal exit has been fixed.
12312-06-28  Fix ulimit -a to list (Kibytes) instead of (kbytes).
12412-06-27  Fix unitialized data reference for <CR> as first char in --vi mode.
12512-06-26  The formatting of printf "%q" for multibyte locales has changed to
126	  output using \u[xxx] format for valid wide characters.
12712-06-25  The size limit for read -N and read -n has been raised to INT_MAX.
12812-06-22  A bug in which an exit trap set in a subshell might not be triggered
129	  when the last command was a simple executable has been fixed.
13012-06-22  A bug which could cause the shell to hang when a coprocess exits
131	  while a command inside a command substitution is reading from it has
132	  been fixed.
13312-06-21 +ksh new accepts for commands of the form for i; <nl> do;...;done
13412-06-19  Tab completion after a / when there is only one match not completes
135	  with that match rather than generating a menu of matches.
13612-06-19  A bug in which patterns containing {...} where not processed
137	  correctly inside ${var/pattern/string} has been fixed.
13812-06-18  Code modified to eliminate fts_notify variable.
13912-06-15  Change the .paths plugin/builtin library variable name from
140	  BUILTIN_LIB to PLUGIN_LIB to prevent new plugin_version() aware
141	  -lcmd from causing older non-plugin_version() aware ksh to dump core.
14212-06-14  builtin without argument no longer lists .sh.tilde as a built-in.
14312-06-12  For assignments if the form x=(foo bar), foo is only check for an
144	  alias if it is float, integer, compound, or nameref.
14512-06-12 +The shell supports 64 bit i-nodes even for 32 bit binaries.
14612-06-11  A bug wth >; redirection systems for which vfork() was the same a
147	  fork() has been fixed.
14812-06-11  A bug in path lookup that ignored buffer boundaries has been fixed.
14912-06-08  typeset -a var and typeset -A var, first unset var when var is
150	  a compound variable.
15112-06-08  A bug in which running shcomp on a program containg namespace
152	  could core dump has been fixed.
15312-06-06  A bug in which unset of an associative array of compound variables
154	  did not completely unset the variable has been fixed.
15512-06-06  A bug in which exporting left or right justfied fields could loose
156	  the field width has been fixed.
15712-06-06  A bug on Solaris11 in which >; did not work for /dev/null was fixed.
15812-06-05  A race condition which occured when stopping a builtin command
159	  invoked from a subshell has been fixed.
16012-06-05  A bug with appending elements to an empty indexed array has been
161	  fixed.
16212-06-04  A bug in which continuing a stopped builtin could cause it to
163	  terminate has been fixed.
16412-06-04  By default, builtins added at runtime will restore the current
165	  directory if they are killed or stopped.
16612-06-04  A bug in handling \\ in read has been fixed.
16712-05-31  Use getrlimit64/setrlimit64 on systems that support it.
16812-05-31  Fix 64 bit big-endian arithmentic bug that mishandled nan and inf.
16912-05-31  Handle ECONNRESET like EPIPE.
17012-05-31  Change .paths parse to use only the last BUILTIN_LIB from the top
171	  and treat BUILTIN_LIB value as a ':' separated list of lib names.
17212-05-29  Fix BUILTIN_LIB binding bug that ignored subsequent lookups.
17312-05-29  shtests: --nocompile omits the compile test and --compile does only
174	  the compile test.
17512-05-25  A command subsitution containing a here-document that itself contains
176	  a here-document no longer hangs.
17712-05-24  When the redirection operatory >; is directed to a symlink, it now
178	  overwrites the file named by the link rather than the link.
17912-05-21 +Added printf formats %(type)q where type can be html, url, pattern,
180	  ere, or csv.
18112-05-18  A bug with appending elements to an indexed array has been fixed.
18212-05-18  The exit status from getopts --man interactively was 0 instead of 2
183	  and has been fixed.
18412-05-18  Another bug with SHOPT_EDPREDICT which could cause a core dump has
185	  been fixed.
18612-05-17  A bug with fixed size arrays which could cause a core dump has been
187	  fixed.
18812-05-17  A bug in which the here-document <<< $(<file) was not processed
189	  correctly has been fixed.
19012-05-15  The default value for -L, -R, and -Z when the size was not set was
191	  incorrectly defaulting to 1 and has been fixed.
19212-05-15  A bug in which a subshell of the form (name=value exec ...) could
193	  coredump when name is an environment variable and xtrace is on has
194	  been fixed.
19512-05-15  Fixed a .paths bug in which only the first BUILTIN_LIB assignment worked.
19612-05-14  Arithmetic expressions and subexpressions that are not floating point
197	  now treat -0 as 0, so that $((-0)) is 0 and $((-0.0)) is -0.
19812-05-11  'unset .sh' now fails with readonly message instead of coredump.
19912-05-11  A bug which left an associative array arr containing one element in
200	  the wrong state after expanding with ${arr[@]} has been fixed.
20112-05-10  A bug in which typeset -f did not display options that called getopts
202	  has been fixed.
20312-05-08  Fixed a number of potential bugs uncovered by valgrind.
20412-05-08  A bug in which typeset -b -Z10 var did not initialize var to the
205	  empty string has been fixed.
20612-05-07  A bug in which the exit value of an interactive shell could be
207	  affected by the evaluation of the PS1 prompt has been fixed.
20812-05-04  A bug in which x=() was not unsetting the old value of x before
209	  creating an empty compound variable has been fixed.
21012-05-01  A bug in vi edit mode in which after <ESC>^V, the terminal was not
211	  restored to insert mode after a character is entered has been fixed.
21212-04-27  A bug in which old attributes were not cleared when assigning a
213	  value using typeset has been fixed.
21412-04-26 +Enabled multiline editing by default.  set +o multiline can disable.
21512-04-25  The 12-04-17 PATH fix created a new bug which was fixed.
21612-04-25  Fixed a big memory leak problem in which unsetting compound variables
217	  did not free all the space.
21812-04-25  A bug in which test ! ! ! was treated as an error has been fixed.
21912-04-24  A bug with print -v for a compound variable that contained fixed
220	  arrays which prevented the output from being used again as input
221	  has been fixed.
22212-04-23 +kill provides the STKFLT signal on systems that support it.
22312-04-23 +The -L option was added to kill.  The -L option is the same as -l
224	  except that without arguments the output format is in the form of
225	  a select menu.
22612-04-23  A bug in which the exit status for an interactive shell was always
227	  0 has been fixed.
22812-04-20  Entering blank lines interactively no longer resets the exit status.
22912-04-18  A bug in file completion in which the second tab completion on a file
230	  would list the completion rather than inserting the completion has
231	  been fixed.
23212-04-18  A bug in which "${arr[@]:i:j}" and "${@:i:j}" generated the empty
233	  string when i was a valid subscript and j was <=0 rather than
234	  generating nothing has been fixed.
23512-04-17  A bug in which read -d delim from a terminal did not respond to
236	  interrupt and did not termrinate when the delimiter was entered
237	  has been fixed.
23812-04-17  A bug in which a directory in PATH containing a .paths file that
239	  contains a line with FPATH=dir, where dir does not exist could
240	  cause the path search to fail has been fixed.
24112-04-16  A bug in which $(trap -p) did not display traps such as ERR and
242	  DEBUG that are not associated with signals has been fixed.
24312-04-11  A bug in which unsetting a variable did not unset attributes when
244	  the variable did not have a value has been fixed.
24512-04-11  A bug in which read -A for an array whose index is an enumeration
246	  type, lost the enumeration type has been fixed.
24712-04-10  Shared libraries loaded from a library named by a BUILTIN_LIB= found
248	  in a .paths file found in a directory on PATH now add builtins that
249	  are associated with the directory in PATH containing the .paths file.
25012-04-09  Increased I/O buffer sizes for better performance.
25112-04-09  A bug in which the leading 0 was stripped from $x, when $x contained
252	  a heximadecimal constant inside an arithmetic expression inside
253	  a for or while loop.
25412-04-06  Modified namespaces to hand variabes FPATH, PATH, and OPTIND that
255	  are defined in name spaces appropriately.  This also fixed OPTIND
256	  and OPTARG processing for functions.
25712-04-04  A bug in which cd .. fails when the current directory has been
258	  renamed has been fixed.
25912-04-02  Made some namespace changes and added a regression test.
26012-03-30  A bug with namespaces in which PATH and FPATH set in a namespace was
261	  not restored when leaving the namespace has been fixed.
26212-03-29  A bug in which appending an index array onto an array without elements
263	  caused the first element to be 1 rather than 0 has been fixed.
26412-03-29  A bug which could cause a core dump when copying a large index array
265	  has been fixed.
26612-03-28  The shell now generates an error message when the sizes with L, Z, and
267	  R are > 32767 on 32 bit binaries instead of generating a core dump.
26812-03-28  A bug in left and right justification in which the width of invalid
269	  characters was not taken as zero has been fixed.
27012-03-26  A bug in which typeset -p ref, when ref is a reference to an index
271	  array element did not display the subscript has been fixed.
27212-03-23  A bug in lowercase and uppercase fields when expanding ${name:=val}
273	  when name is the empty string has been fixed.
27412-03-22  A namespace bug in which a type t defined in namespace foo could not
275	  be referenced outside the namespace as .foo.t has been fixed.
27612-03-22  A bug in name reference scoping in which a name function called from
277	  another function is pass a name reference to a compound variable
278	  instance to be created and the compound variable is in the global
279	  scope.
28012-03-22  A bug in which ${ref[@}} did not behave like ${arr[i][@]} when
281	  ref is a name reference to arr[i] has been fixed.
28212-03-21  A bug in which assigning a compound variable into arr[i], where
283	  arr[i] is an array variable did not work correctly has been fixed.
28412-03-21  A bug with multi-dimenstional index arrays in which ${arr[i][j]}
285	  could generate a bogus error message when i was > 9 has been fixed.
28612-03-21  A bug in which typeset v=foo, typeset -p v[0] generated a core dump
287	  has been fixed.
28812-03-20  A bug in vi edit mode in which the sequence bar<ESC>0i<ESC>l left the
289	  cursor on the b rather than the a has been fixed.
29012-03-20  A bug which caused a core dump when defining a type with a field
291	  as ' integer -a data=([0]=0)' has been fixed.
29212-03-19  Using typeset -a array when array is an associative arry not
293	  generated an error message.
29412-03-19  typeset +a, typeset +A, and typeset +C not displays the variables
295	  with the attributes a, A, and C respectively instead of an error.
29612-03-19  A bug in which typeset -pC, typeset -pa, and typeset -pA output all
297	  variables rather than those of type C, a, or A only has been fixed.
29812-03-18  A bug in which unset foo where foo is a name reference to a compound
299	  variable defined inside a function is not unset has been fixed.
30012-03-18  A bug with SHOPT_EDPREDICT which could cause a core dump when the
301	  list of matches became empty has been fixed.
30212-03-15  The assignment, typeset -C foo=(a b c) now generates a syntax
303	  error since a is not an assignment command.
30412-03-16  A bug in which an unset discipline from a variable defined in a
305	  subshell is not invoked in the subshell has been fixed.
30612-03-08  The assignment typeset -a (x=1 y=2) now creates an index array
307	  of two elements rathern than an array of one element which is
308	  a compound variable.
30912-03-02 +The vi and emacs edit modes now list all the entries in a directory
310	  when entering a <tab> for completion after a /.
31112-03-02  A bug in which a program that exits with value 12 when called
312	  from a command substitution in which standard output has been
313	  redirected caused the shell to hang has been fixed.
31412-03-01  A bug in which the shell could not parse [[ ']' == ~(E)[]] ]]
315	  has been fixed.
316
31712-02-29  --- Release ksh93u+ ---
31812-02-29  A bug in which ~user expanded first in a subshell prevented it
319	  from expanding later in a program has been fixed.
32012-02-29  A bug which could lead to a core dump when more that four shared
321	  libraries were added with the builtin command has been fixed.
32212-02-29  Fixed a few bugs which caused SIGCHLD to be blocked preventing
323	  background jobs from being reaped until a foreground job was run.
32412-02-27  A bug in which sh -c for a simple command caused a fork() has been
325	  fixed.
32612-02-27  A timing bug on systems such as AIX that doesn't support vfork()
327	  that could cause the exist status to get lost has been fixed.
32812-02-22  A private file descriptor that was not close-on-exec for a command
329	  substitution and has been fixed.
33012-02-14  A bug in which ^Z did not stop a pipeline when the last component
331	  was a shell built-in has been fixed.
33212-02-14  getconf("PATH") used to initialize ed(1) path.
33312-02-13 +In earlier version read from standard input would fail when called
334	  from the KEYBD trap.  Now read options -N, -n, and -t should work
335	  when called from a KEYBD trap.
33612-02-13  If FCEDIT is not set and fc is invoked without the -e option,
337	  ed will be invoked if found instead of /bin/ed.
33812-02-10  Another bug in the saving and restoring of IFS in a subshell
339	  that caused a core dump has been fixed.
34012-02-08  A bug in which .sh.fun disciplines could be cleared after a
341	  function completes has been fixed.
34212-02-08  A bug in job control in which the foregroup process group was not
343	  set correctly after restarting a stopped pipeline has been fixed.
34412-02-07  A bug in which numbers with leading zeros could be treated as
345	  octal constants outside of ((...)) has been fixed.
34612-02-06  A bug in arithmetic with compound variables containing multiple
347	  array elements has been fixed.
34812-02-02  A bug in the ulimit option table was fixed.
34912-01-26  A bug in which a set command that did not change monitor could
350	  effect the behavior of the monitor when monitor mode is on is fixed.
35112-01-21 +You can now test whether the shell implements a math function using
352	  typeset -f .sh.math.name, where name is the name of the function.
35312-01-21  A bug in which typeset -L and typeset -R did not handle multibyte
354	  characters correctly has been fixed.
35512-01-20  A bug that could cause the shell to hang waiting for an incorrect
356	  job pid has been fixed.
35712-01-19  A memory leak which occured for a nested command subtiution has been
358	  fixed.
35912-01-17  A bug in which typeset -u PS1 could enable the uppercase attribute
360	  for some other variables, for exampe, HISTFILE has been fixed.
36112-01-16  A bug in which .sh.match was not correct after a substring match when
362	  the replacement string contained a substring match has been fixed.
36312-01-12 +Files that are sourced from profile files are now read and executed
364	  one command at a time so that alias definitions take effect as they
365	  do for profile files.
36612-01-12  A bug in which whence -p would find a function if one existed and
367	  there was no command of that name on PATH.
36812-01-11  Change b_* prototype (int, char**, void*) => (int, char**, Shbltin_t*).
36912-01-05  A bug in which read was not terminating for a signal that had a trap
370	  set has been fixed.
37112-01-01  A timing problem with >; has been fixed.
37212-01-01  A macro expansion memory leak has been fixed.
37311-12-26  A bug in array assignments of the form arr=( $arr[i] ...) in which
374	  arr was not unset before the assignment has been fixed.
37511-12-20  A number of code changes were made based on the results of errors
376	  indicated by static code analysis.
37711-12-13  In vi edit mode a lteral <TAB> can now be entered by preceding it
378	  with a backshash.
37911-12-13  When tab is entered for completion after a ' or ", the ' and "
380	  characters are no longer deleted.
38111-12-07  A bug in which a program in the current direcotry with a . in the
382	  name could fail to execute when both PATH and FPATH end with :. has
383	  been fixed.
38411-12-07  I fixed a bug in which a variable expansion in a large here-document
385	  could be expanded to a null string.
38611-12-06  An optimization to read was added in the case the the read command
387	  was redirected from a file.
38811-12-06  Changes were made to make the line limit for read unlimited by
389	  default.
39011-12-05  A bug in which unsetting an array variable did not completely clear
391	  the variable in some cases has been fixed.
39211-12-02 +The printf alternative character # when applied to the %q format will
393	  quote argument in a form suitable for a field in a .csv format file.
39411-12-02 +A -S option was added to read to be able to read .csv format files.
39511-11-28  A bug in which redirection of standard error in a function called from
396	  command substitution caused standard error to be lost has ben fixed.
39711-11-21  [[ (-n foo) ]] no longer requires a space before (.
39811-11-11  The readonly attribute for a variable now applies to compound
399	  assignments to that variable.
40011-11-07  Changes were made to reduce the stack size to allow deeper function
401	  recursion.
40211-10-10 +Added alternate flag to printf %H for encoding of URI's.
40311-10-10  A bug which could lead to a core dump when the shell was invoked
404	  with more than twenty five open files has been fixed.
40511-10-06  A bug in the scoping of name references in functions called by other
406	  functions has been fixed.
40711-10-05  A bug in which wait on a pid may return the exit status of an
408	  earlier background job with that pid instead has been fixed.
40911-09-22  A bug in which a read timed out with TMOUT did not always restore
410	  the terminal state has been fixed.
41111-09-21  An optimization that allowed the last command in a script to use
412	  the same process id as the script has been eliminated.
41311-09-21  Added letoctal option that enables the let command to recognize
414	  octal constants starting with 0.
41511-09-20  A bug in which ${var.} could cause a core dump has been fixed.
41611-09-20  A bug with SHOPT_EDPREDICT when neither vi or emacs was enabled for
417	  lines beginning with # when in a multibyte locale has been fixed.
41811-09-20  A bug in emacs edit mode with SHOPT_EDPREDICT that would cause
419	  history searches matching comments lines to generate predictions
420	  has been fixed.  Only user typed comment lines generate predictions.
42111-09-20  A bug in emacs edit mode with a search that matches a comment line
422	  that could cause a core dump has been fixed.
42311-09-16  A bug in which a command name ending in .. could cause the shell to
424	  abort has been fixed.
42511-09-16  The characters ! + - % and @ in file names are no longer escaped with
426	  file name completion.
42711-09-13  The let command no longer treats numbers starting with 0 as octal
428	  constants.
42911-09-08  A bug in which printf "%R" could cause a core dump for invalid shell
430	  patterns has been fixed.
43111-08-09  With set -u, ${var#pattern} reported that var was unset for special
432	  variables.
43311-08-03  A bug in which the shell did not preserve the exit status for a
434	  coprocess has been fixed.
43511-08-02  A bug in the saving and restoring of IFS in command substitution that
436	  caused a core dump has been fixed.
43711-07-21  Modified the 10-08-27 bug fix so that background jobs started in for
438	  and while loops created interactively generate completion messages.
43911-07-20  I fixed a bug in here documents in which multi-byte characters that
440	  crossed buffer boundaries were not processed correctly.
44111-06-22  The shell compiler now supports process substitution.
44211-06-22 +Added code to support process substitution on systems that do
443	  not supply the /dev/fd directory.
44411-06-21  Fixed extraneous jobs Done messages when builtin is at the end of a
445	  pipeline.
44611-06-20  Fixed two regression tests.
44711-06-20  Fixed a bug introduced on last update.
44811-06-14  A bug with pipefail in which the shell would wait for background
449	  jobs to complete has been fixed.
45011-06-09  A bug which caused the options.sh regression test to fail on OS390
451	  Linux has been fixed.  The bug could also have affected other systems.
45211-06-07 +A number of changes to support the still undocuments namespace option
453	  have been added.
45411-06-06  A bug in which command substitution of eval would hang when it  had
455	  standard error redirected to standard output has been fixed.
45611-06-01  A bug in case statement fall through (;&) ignoring set -e was fixed.
45711-06-01  A bug in which creating a left or right justified upper or lowercase
458          variable with an empty string has been fixed.
45911-06-01  A bug in which the .paths directory wasn't read when a subshell was
460	  executed before any other command has been fixed.
46111-05-31  The shell now gives an error when a type variable is assigned to
462	  an array instance when the array has been declared a compound variable
463	  array.
46411-05-31  A bug in which typeset -m of an array instance did not remove the
465	  original instance has been fixed.
46611-05-28  A bug in which typeset -m dest=src fails when src and are passed as
467	  name references was fixed.
46811-05-28  A bug in which typeset -m "c.board[1][i]=el", where el is a compound
469	  variable core dumps has been fixed.
47011-05-28  Two bugs in the display of arrays of compound variables with print -v
471	  have been fixed.
47211-05-27  A bug with command substitution with the shift jis locale has been
473	  fixed.
47411-05-25  A bug in which unset -f foo, called within function foo could cause
475	  the shell to core dump has been fixed.
47611-05-24  A bug in unsetting arrays of compound variables that could lead to
477	  a core dump has been fixed.
47811-05-24  A scoping bug in with typeset -m for variables passed as references
479	  has been fixed.
48011-05-09  A bug in which 'typeset +p array[$i]' in a subshell could cause an
481	  exception has been fixed.
48211-05-03  Two more scoping bugs with name references and read -C were fixed.
48311-05-03  A potential race condition which occurs when here-documents are
484	  processed in asynchronous blocks has been eliminated.
48511-05-02  Another scoping bug with name references defined in a function has
486	  been fixed.
48711-05-02  A bug in which the shell discards saved exit status of a job if it is
488	  followed by a subshell execution has been fixed.
48911-04-28  The shell now checks for numerical overflows with process ids.
49011-04-28  Another scoping bug with compound variables defined by name references
491	  inside a function has been fixed.
49211-04-28  A bug which caused a core dump on 32 bit systems with the basic.sh
493	  regression test has been fixed.
49411-04-27  A scope binding error for name references has been fixed.
49511-04-27  Assignment of compound variable to compound array element by name
496	  is now working.
49711-04-26  I fixed a bug with SHOPT_FIXEDARRAY compilation that could cause
498	  an a core dump for not fixed arrays.
49911-04-25  A bug in the references to two dimensional compound arrays has
500	  been fixed.
50111-04-20  A bug in which a name reference to a multidimentional index array
502	  index, nameref x=foo[3][4], did not work correctly has been fixed.
50311-04-18  Changes were added to allow fixed size arrays of variable sized
504	  objects when the SHOPT_FIXEDARRAY compile option defined on 10-09-28.
50511-04-18  A bug in which name references to array elements could fail has
506	  been fixed.
50711-04-15 +A compile option, SHOPT_2DMATCH, has been added which causes
508	  .sh.match to be a two dimensional array after ${var//pat/str}
509	  where the first dimension is the pattern number and the second is
510	  the match instance.
51111-04-11  A bug in which readonly var, where var is exported could cause var
512	  to be unset has been fixed.
51311-04-06  A tokenizer bug in which ${x/{3}(\d)/ } would cause in infinite
514	  loop has been fixed.
51511-04-05  A bug in which ${!x.} could cause a core dump has been fixed.
51611-04-04  A bug in which cleaning out the history file could terminate before
517	  keeping all the recent history events has been fixed.
51811-03-29  A bug in which ${#array[@]} was 1 rather than 0 after issuing
519	  typeset array[7] has been fixed.
52011-03-29  The subscript out or range message for fixed arrays has been fixed.
52111-03-29  A bug in which suspend could cause a core dump has been fixed.
52211-03-24  For the showme option added 09-09-09, commands beginning with a ;
523	  inside an arithmetic for loop, no longer produce syntax errors.
52411-03-18  A bug in _WINIX ~domain/user expansion has been fixed.
52511-03-16  A bug in the pipefail option which could cause a script to hang
526	  has been fixed.
52711-03-12  The shell no longer treats ${##pattern} as a syntax error.
52811-03-11  A bug in typeset -u on systems that don't supply the towctrans()
529	  function has been fixed.
53011-03-11  A bug in which a compound assignment of the form var[sub]=(...)
531	  would evaluate sub for each assignment has been fixed.
53211-03-07  A bug in which reassigning a compound variable to an associative
533	  array index could incorrectly increase the count of the number
534	  of elements has been fixed.
53511-03-04 +The tilde expansion on windows has been modified to handle user
536	  names of the form domain/user so that ~domain/user now expands
537	  to the home directory of that domain user.
53811-03-03  A bug in which the width of the prompt was calculated incorectly
539	  which cause the wrong line length for edit commands has been fixed.
54011-03-02  A bug in which a global variables set from within a function inside
541	  a subshell can leave side effects in parent shell has been fixed.
54211-03-01  A bug in which whence -a could dump core when the first match
543	  was due to : in PATH and the program was in the current directory.
54411-02-28  A bug in emacs mode with SHOPT_EDPREDICT (added on 10-05-20) which
545	  disabled prediction on a line starting with # when the cursor was not
546	  at the end of line has been fixed.
54711-02-28  The output format for compound variables with set has been fixed.
54811-02-25  A bug which could lead to a core dump occurred when a shell script
549	  without #! is invoked by name from a parent shell that has name
550	  references defined and the script creates name references of the
551	  same name.
55211-02-21  The shell now fails with a syntax error when a here-document in a
553	  command substition is not completed before the closing ), for
554	  example, $( foobar <<! )
555		here_doc
556	  !.
55711-02-18  A bug in which the value of $0 in a function defined by name()
558	  was changed to name has been fixed.
55911-02-17  A bug in which the declaration typeset var[100] did not work
560	  correctly has been fixed.
56111-02-15  A bug in which [[ -v sh.match ]] did not work correctly has been
562	  fixed.
563
56411-02-08  --- Release ksh93u  ---
56511-02-08  A bug in which opening standard output after it has been closed with
566	  exec 1>&- doesn't work has been fixed.
56711-02-07  A bug on some systems for which a command subtitution could hang
568	  has been fixed.
56911-01-28  A bug in file name completion for files containing both multibyte
570	  characters shell special characters has been fixed.
57111-01-18  The .sh.match variable now shows elements that do not match as
572	  as not set rather than an empty string.
57311-01-18  A bug with typeset -m of an array into an element of an indexed
574	  array has been fixed.
57511-01-13  A bug in handling of arrays of compound variables inside ((...)) which
576	  reported a syntax error been fixed.
57711-01-10  A bug in arithmetic assignment operators of the form op= for array
578	  variables when the same array was referenced on the left and the
579	  right hand side with different indices has been fixed.
58011-01-10  A bug in which the output of time was lost when { time...;} 2>&1
581	  occurred inside command substition has been fixed.
58211-01-07  [[ -v sh.match[i] ]] was returning false when sh.match[i] was set.
58311-01-05  Added and modified warning messages with sh -n.
58411-01-02  Fixed bugs with typeset -l/-u/-M and arrays.
58510-12-28  Fixed a bug with typeset -l/-u/-M values in arithmetic expressions.
58610-12-26  Fixed a time parsing bug in sleep and localeconv() initialization.
58710-12-23  Prevented the shell from generating a core dump when it sends itself
588	  a termination signal because the last command terminated with that
589	  signal.  This prevents a core dump to be overwritten by the shell.
59010-12-22  A bug in the expansion of  ${A[@]} ${B[@]}, introduced in 10-12-01
591	   when A="" B=B has been fixed.
59210-12-21 +Use MS_3D in b_vpath() for setting win32 WoW mount defaults.
59310-12-17  A bug in the expansion of ${var:i:j} which caused a core dump when
594	  i > ${#var} has been fixed.
59510-12-16 +sleep now treats . as decimal point even in locales that use comma.
59610-12-16 +typeset -M mapname was added to generalize on toupper and tolowwer
597	  mapping as provided with wctrans().
59810-12-10  A bug in which typeset -l displayed namespaces as well as lower case
599	  variables has been fixed.
60010-12-06  A bug in which a pipeline could terminate prematurely for a pipeline
601	  whose right hand side is a builtin, and whose left hand side ends in
602	  a simple command that has standard output redirected has been fixed.
60310-12-06  A bug in hexfloat assignments when the right hand side is a string
604          variable starting with 0x has been fixed.
60510-12-01  A bug in the expansion of ${$1+"$@"} which causes the last positional
606	  parameter to disappear when it is empty has been fixed.
60710-12-01  A number of changes were made to reduce the startup time.
60810-11-29  When wait is interrupted by a signal that is caught, it now exits
609	  with a non-zero exit status.
61010-11-29  When a variable is used directly in an arithmetic expression,
611	  leading zeros no longer cause the value to be treated as an
612	  octal constant.  This was true in previous versions for justified
613	  variables.
61410-11-29  An incorrect warning message was eliminated with the -n option for
615	  arithmetic expressions with associative arrays.
61610-11-29  Some changes were made to slightly reduces startup time.
61710-11-24  A bug in which a name reference is make to arr[0] when arr is not
618	  an array has been fixed.
61910-11-23  If a type definition is made without a compound variable assignment it
620	  produces an error message and no longer shows up as a defined type.
62110-11-22  The handling of \ inside [...] for for shell and ~(E) patterns has
622	  been fixed.
62310-11-22  A patch was made to pfsh to handle an error case.
62410-11-22 +Modified types defined in namespace so that they do not clash with
625	  types in other namespaces.  Types can be referenced using
626	  .namespace.typename.
62710-11-22  A bug which caused functions addressed as .namespace.funct to not
628	  work has been fixed.
62910-11-22  A bug in which if nr was a name reference to an unset associative
630	  array subscript, then ${!nr} did not output the subscript correctly
631	  has been fixed.
63210-11-18  A bug in which shcomp -n was not processing double quotes correctly
633	  has been fixed.
63410-11-18  Fixed a bug in which typeset -T foo; typeset -T could cause a
635	  core dump.
63610-11-17  Fixed a bug in which the error message for set -u could come out
637	  garbelled.
63810-11-17  Modified the parser so that typeset -a var=(...) no longer checks
639	  the first index for aliases and reserved words.
64010-11-17  A bug in which a subshell command consisted of only a for or until
641	  command has been fixed.
64210-11-16  Fixed a bug in which typeset -u would display namespace variables
643	  as well as upper case variables.
64410-11-16  A bug which could cause a core dump when unsetting a type variable
645	  when there are references to type elements has been fixed.
64610-11-15  A bug which could cause a core dump when unsetting a compound
647	  array variable when there are references to array subscripts has
648	  been fixed.
64910-11-15  A bug in which using typeset -m to move an indexed array instance
650	  to another array could cause the array to display incorrectly has
651	  been fixed.
65210-11-12  A bug in which the unset discipline function for a type is called
653	  when the type is initialized has been fixed.
65410-11-12  The sequences \< and \> are now preserved after patterns containing
655	  ~(E) in ${var/pattern/string} expansions.
65610-11-11  A bug in typeset -m when the variables were compound arrary instances
657	  has been fixed.
65810-11-10  A bug in output of a compound variable with types containing types
659	  has been fixed.
66010-11-10  Fixed ``name=value export [-p]'' to list environment.
66110-11-09  shtests resets SIGPIPE to SIG_DFL for all tests.
66210-11-09  Fixed a bug in expansion of $"..." when used in assignments.
66310-11-09  Fixed a getaddrinfo() memory leak that didn't call freeaddrinfo()
664	  after an interrupt.
66510-11-08  Modified the behavior of set -u so that the shell terminates with
666	  error message when when var is unset with ${!var} and ${#var}.
66710-11-02  Fix a bug in which a signal received while in a subshell could be
668	  ignored.
66910-10-26  Fix a bug where terminal interrupt was ignored while in vi/emacs
670	  edit search mode.
67110-10-26  Fix $'a\0b'c to expand to 'ac'.
67210-10-26  Provide user defined round() if not in <math.h>.
67310-10-26  Fix bug where $((undefined_function(1))) dumped core.
67410-10-22  Provide user defined iszero() if not in <math.h>.
67510-10-22  Fixed a bug with BGX compile option that could cause the shell to
676	  hang.
67710-10-22  Fixed a bug with user define math function on systems for which
678	  char is unsigned.
67910-10-21  A bug in which function autoloaded in a function leaves a file open
680	  has been fixed.
68110-10-20  Modified the behavior of set -u so that the shell terminates when
682	  when var is unset with ${var op string} when op is #, % or /.
68310-10-20  Fixed a bug with the AUDIT option in which the audit file was not
684	  not close-on-exec.
68510-10-20 +Made a number of changes and fixes for the NAMESPACE compile option
686	  which as added on 10-06-09 but some problems still remain.
68710-10-15  Fixed a bug in which arithmetic functions (added on 10-03-24) did
688	  not work when the function definition was in the same compound
689	  command in which the function was referenced.
69010-10-13  A bug in which creating an associative array of compound variables
691	  with no members as an element of a compound variable did not work
692	  has been fixed.
69310-10-08  A bug in which killing the last command in a function defined
694	  with function name, terminated the calling script has been fixed.
69510-10-08  A bug which could cause a core dump if IFS is unset inside a function
696	  has been fixed.
69710-10-07 +To reduce unwanted side effects, invoking typeset without the export
698	  option and without an assignment now causes the variables to be unset
699	  if the variable is inherited from the environment.
70010-10-06  The closing brace for ${ command } is now a token no matter what
701	  character follows it.
70210-10-04  The change for $'...' expansion on 10-08-09 did not expand parameters
703	  contained in the error message and this has been fixed.
70410-10-04  A bug in which a declaration of indexed array (-a_ in a type
705	  definition would be displayed as a compound indexed array (-C -a)
706	  has been fixed.
70710-09-30  The C99 math function ldexp has been added.
70810-09-30  A bug with two dimensional arrays with expansion of the form
709	  ${ref[0..5]} where ref is a nameref to array[i] has been fixed.
71010-09-29  A bug in which an eval with redirections invoked from a dot script
711	  would not restore the file has been fixed.
71210-09-29  A bug in which loading a function from FPATH could leave a file
713	  descriptor open has been fixed.
71410-09-28 +A new compile option SHOPT_FIXEDARRAY has been added and is being
715	  evaluation.  It allows fixed sized indexed arrays be to defined
716	  using "typeset array[dim1][dim2]...[dimn]".  Fixed sized arrays
717	  are used the same way indexed arrays are.  Currently, only fixed
718	  arrays of fixed objects (float, int, and justifies objects) are
719	  supported.
72010-09-22  A bug which could cause an exception when a function with static
721	  variables was redefined has been fixed.
72210-09-21  A bug in the processing of (command&) which created a job in the
723	  parent process has been fixed.
72410-09-21  A for loop optimization bug with arithmetic expression evaluation
725	  has been fixed.
72610-09-21  A bug in which a recursive function containing a pipeline could
727	  lead to an exception fixed after 8 levels of recursion has been
728	  fixed.
72910-09-18  A bug in which the count of elements in an array was wrong leading
730	  to an exception has been fixed.
73110-09-13  A bug which occurred when both xtrace and showme options where
732	  specified in which the xtrace option disabled showme has been fixed.
73310-09-13  A bug in which creating a reference to an array variable with any
734	  elements could cause subsequent array elements to be treated as
735	  compound variables has been fixed.
73610-09-09  A bug which caused ((c.ar[x][y])) to be treated as a syntax error
737	  has been fixed.
73810-09-08  A bug in the processing of references to multidimensional arrays
739	  in arithmetic expressions has been fixed.
74010-09-08  A bug in the handling of multi-dimensional arrays which caused
741	  the number of elements in each dimension to be incorrect has
742	  been fixed.
74310-09-07  The change for messages on 10-08-09 did not handle message in
744	  assignments and this has been fixed.
74510-09-07  A bug in the indentation of compound variables in arrays when
746	  output with print -v has been fixed.
74710-09-07  A rare bug with indexed arrays when assigned a null string that could
748	  cause a core dump has been fixed.
74910-09-03  A number of changes were made for jobs pools.
75010-08-31  typeset -p was modified to output name references after other
751	  variables so that the output could be used as input.
75210-08-31  A bug with typeset -p in which variables with attributes but
753	  without attributes were not displayed correctly has been fixed.
75410-08-27 +When running a subshell, the current pool is unset.
75510-08-27  A bug in which jobs started from within for or while lists in
756	  interactive shells could generate completion messages has been fixed.
75710-08-25  Fixed a couple of bugs related to job pools.
75810-08-24 +[[ -e /dev/xxx/ ]] can be used to check whether special files of
759	  those names are handled by the shell.
76010-08-24  A bug in the running of a compiled dot script in which only the
761	  first command was executed has been fixed.
76210-08-23  A bug which sometimes caused a core dump with a configure script
763	  has been fixed.
76410-08-20  A bug in command substitution which caused a configure script to
765	  hang has been fixed.
76610-08-19  Eliminated unnecessary ; from output of compound variable with
767	  typeset -p.
76810-08-17  Fixed a bug in command substitution in which under certain
769	  circumstances a file whose size is a power of 2 plus one, and the last
770	  character was not a new-line, could cause memory corruption.
77110-08-13 +Added static discipline functions to type similar to C++ static
772	  class functions.
77310-08-11  A bug in time when applied to a pipeline in which the shell did
774	  not wait for all elements of the pipeline to complete has been fixed.
77510-08-11  Restored sh_fmtq() quoting to not quote NAME= in NAME=VALUE.
77610-08-09 +Modified the expansion of message strings, $"...", so that they
777	  are expanded each time they are referenced rather than expanding
778	  them when the script is compiled or read in.
77910-08-06 +The process id for jobs in job pools is now of the form poolname.n
780	  where n is the jobid in that pool.  Commands that accept job names
781	  or numbers now understand names in this format.
78210-08-05  A bug in which an assignment from within an arithmetic expression
783	  inside a function would create a local variable has been fixed.
78410-08-04  A bug in the expanding of variables whose names contain multibyte
785	  characters has been fixed.
78610-08-04  A bug which caused an exception when processing scripts compiled
787	  with shcomp -n has been fixed.
78810-08-02  Tests using very small buffer sizes uncovered a number of bug most
789	  connected with here documents which have been fixed.
79010-07-27  The format modifier , used for digit grouping with d and f formats
791	  has been documented.
79210-07-26  cd '' now produces and error rather than changing to the current
793	  directory.
79410-07-26  A bug in multi-byte locales which the last character of a
795	  multi-byte character is a \ or pattern character which could occur
796	  when the character was the last character of a command substitution
797	  has been fixed.
79810-07-23  Another bug in the processing of ${var:offset;len} in multi-byte
799	  locales when len is larger than the number of characters has been
800	  fixed.
80110-07-23  Many coding changes have been made to eliminate most of the uses
802	  of global variables in the shell code.
80310-07-22  Fixed a bug in which discipline functions were not being invoked
804	  when it was invoked as ref.discipline where ref was a name reference
805	  to an array instance.
80610-07-22  Fixed a bug in which discipline functions were not being invoked it
807	  was invoked on a two dimensional array, i.e., arr[5][9].discipline.
80810-07-19  Fixed a buffering problem which occurred when running a script with
809	  ssh and the parent ssh process is killed.
81010-07-14  Modified the parser to treat ((...)) inside [[...]] as ( (...) ) to
811	  that it is a nested (...).
81210-07-09  A bug in the handling of process substitution inside command
813	  substitution as part of a pipeline has been fixed.
81410-07-07  A bug in the output for compound variables containing
815	  multi-dimensional arrays has been fixed.
81610-07-06  ksh now recovers from changes made by bash to the history file without
817	  loosing history commands.
81810-06-25  A bug in which a large here document containing command substitutions
819	  of a dynamically loaded function that contained a here document
820	  could get truncated has been fixed.
82110-06-24  If after executing a script found in FPATH, if a function, builtin,
822	  or type name corresponding to that script is not defined, the shell
823	  now outputs an error message and returns value 126.
82410-06-23  Floating point functions that happened to return integer values
825	  were being treated as if the function returned integers so that
826	  integer division could be used instead of floating point division.
82710-06-22  Fixed a bug in earlier ksh93u in which an arithmetic assignment to a
828	  variable in the global scope would instead create a local variable if
829	  the variable had an attribute but did not have a value.
83010-06-18  Modified trap handling so that if the same signal is received when
831	  executing the handler, it is deferred until the handler completes.
83210-06-16  Fixed a bug in which ulimit -v was setting the the cpu limit
833	  on Linux.
83410-06-14 +The command 'typeset -T' now generates the list of type definitions
835	  in a format that can be used as input to the shell.
83610-06-09  Put in patch from Solaris for output quoting with %q.
83710-06-09 +Made changes to the NAMESPACE compile option so that it now seems
838	  to work.  With this option, namespace <name> { command;} will
839	  run command in the namespace .name so that all variables and
840	  functions created by command are accessible outside the name
841	  space via .name.var and .name.fun.  Variables and functions that
842	  are not in the namespace are not modified when running command.
84310-06-07  Change most internal interfaces to take Sh_t* argument.
84410-06-03 +Types can be loaded on first reference by putting definitions in
845	  PFPATH.
84610-06-03 +The shell is now able to parse commands which use type statements
847	  before the typeset -T command to define the type executes.
84810-06-03  A bug in the quoting for name reference declarations which did
849	  not properly handle [ and ] in subscripts for associative arrays.
85010-06-02  A bug in which a discipline function defined by a type instance to
851	  override the default was not being registered has been fixed.
85210-06-02  A bug in which read -C of an associative array of compound variables
853	  was not working has been fixed.
85410-06-02  A bug in which the error message for an unset parameter with set -u
855	  did not contain the name of the variable has been fixed.
85610-06-01  A bug in typeset -m for moving an indexed array instance to a variable
857	  has been fixed.
85810-06-01  A bug in which caused memory to be freed twice when unset was called
859	  for an indexed array that had get or set disciplines has been fixed.
86010-06-01  A bug in which the %b format of printf was not preserving NUL bytes
861	  with \0 has been fixed.
86210-06-01  A bug in the handling of name references to array variables in
863	  arithmetic expressions has been fixed.
86410-05-28  Fixed bugs in changing attributes for two dimensional arrays.
86510-05-28  Eliminated a few unreferenced variables and a reference to
866	  uninitialized memory.
86710-05-27  Rewrote the subshell code to avoid using pipes an many cases.
86810-05-24  Fixed a bug which cause an exception when both -l and -s were
869	  specified with typeset -i.
87010-05-21  Inputting of three dimensional indexed arrays with ( ( (...)...)...)
871          was not working and has been fixed.
87210-05-21  A bug in which adding the attributes -Ai to a variable via a name
873	  reference could cause the value to display incorrectly has been fixed.
87410-05-21  A bug in which using $var inside ((...)) did not work when var was
875	  a hex float variable.
87610-05-20 +The compile option SHOPT_EDPREDICT has been added.  When this option
877	  is on, as you type a line beginning with a # the following characters
878	  are treated as a shell pattern and cause matching lines from the
879	  history file to be displayed as a numbered list as you type.
880	  You can scroll up and down this list or you can use <ESC>nTAB
881	  to make this the current line (n defaults to 1 of omitted) or
882	  <ESC>n<cr> to execute.
88310-05-20  A bug which caused an exception when multiple levels of composite
884	  functions in arithemtic expressions has been fixed.
88510-05-19  <<< with an empty string no longer gives an error.
88610-05-19  A bug in arithmetic evaluation when a name reference to an array
887	  instance was used has been fixed.
88810-05-14  A bug in which the shell treats a valid index array assignment,
889	  typeset -a x=(foo (x=3;y=4) bar) as a syntax error has been fixed.
89010-05-13  A bug in creating name references to associative array variable
891	  after a lookup of one of its elements has been fixed.
89210-05-12  Two bugs in the handling of function static type variables in
893	  subshells have been fixed.  One could cause an exception and the
894	  other would leave side effects in the parent shell.
89510-05-10  A bug in which static variables in functions were not being saved and
896	  restored properly when running subshells has been fixed.
89710-05-05  A bug in which print -v did not work correctly when an operand was an
898	  indexed array element referring to a compound variable has been fixed.
89910-05-05  A change to improve performance by special casing empty string
900	  assignments to avoid repeated malloc() and free().
90110-05-05  A bug in which creating a name reference to a non-existent associative
902	  array element would create the array element has been fixed.
90310-05-04  A bug in which name references to static variables in the static
904	  scope were not found has been fixed.
90510-04-30  Do not use socketpair() on systems that implement ioctl(I_PEEK)
906	  on pipes.
90710-04-29 +When the current job pool is set, coprocess are run in a job pool.
90810-04-28  A type defined with a member foo that is an associative array without
909	  elements followed by an expansion ${bar.foo[a]} and an assignment
910	  bar.foo[a]=b, no longer indicates that ${#bar.foo[@]} has 0 members.
91110-04-27  Another bug in which a nested command substitution could hang if it
912	  generated too much data has been fixed.
91310-04-26  A type defined with a member that is an indexed array without elements
914	  would behave as if the 0th element of each instance was defined after
915	  a non-zero element was specified and this has been fixed.
91610-04-26  A bug in which types defined in a subshell were not undefined when
917	  the subshell completed has been fixed.
91810-04-23  For file completion in commmand line editing, file names starting
919	  with # are now escaped so that they are not treated as comments.
92010-04-23  A bug in which ${t.var:=value}, where t is an instance of a type
921	  variable, could assign value to the type variable rather than to
922	  the type instance has been fixed.
92310-04-23 +Added &| which can be used in place of | to have portions of a
924	  pipeline executed in the pool.
92510-04-22 +The .sh.pool variable was added for use with job pools.
92610-04-22  A bug in which a nested command substitution could hang if it
927	  generated too much data has been fixed.
92810-04-20  A bug which corrupted one byte of memory when read was called with
929	  reads that did not use a delimiter has been fixed.
93010-04-19  The display of a compound variable with an embedded array with
931	  attributes was sometimes not working correctly and has been fixed.
93210-04-16  A bug in which attributes were not be propagated to elements in
933	  an associative array has been fixed.
93410-04-15  A bug which caused scripts containing user defined math functions to
935	  fail to compile with shcomp has been fixed.
93610-04-15 +Job pools have been added with the SHOPT_COSHELL compilation option.
937	  A job pool allows a collection of background jobs to run either locally
938	  or remotely and to be managed as a unit.  The command '& name ...'
939	  creates or uses a named job pool for subsequent background jobs.
940	  kill, wait, and jobs allow the pool name as operands.
94110-04-14  A bug in which a coprocess connection could terminate prematurely
942	  when running a nested subshell has been fixed.
94310-04-12 +Enumeration constants can be used in arithmetic expressions with the
944	  ==, != and = operators when the left hand side is an enum variable
945	  and the right hand side is an enumeration constant.
94610-04-07  A bug in which setting the trap on CHLD to ignore could cause
947	  an incorrect exit status has been fixed.
94810-04-06  A bug in which LINENO was not incremented for a here-document when
949	  the here-document word was followed by a comment has been fixed.
95010-04-06  The optimization that execs the last process of a script rather
951	  than creating a new process has been removed when a trap on
952	  interrupt has been set.
95310-04-06  Unsetting the 'C', 'A' or 'a' typeset attribute now produces an
954	  error message rather than generating an exception.
95510-04-06  A bug in which .sh.name contained the subscript and .sh.subscript
956	  was empty in some cases with discipline functions on array instances
957	  has been fixed.
95810-04-05  A bug in the edit modes where preceding the interrupt character with
959	  the literal next character did not work has been fixed.
96010-04-05  A bug in the creation of type instances of arrays which could cause
961	  an exception has been fixed.
96210-03-30  A bug in the display of a compound variable containing an indexed
963	  array of compound variables has been fixed.
96410-03-24 +Arithmetic functions can be defined using the shell function syntax,
965	  'function .sh.math.name x y z{...}' , where name is the function name
966	  invoked within ((...)) and x y z are long double arguments passed
967	  as name references.  y and z are used for functions with two and
968	  three arguments respectively.  The value of the function is the value
969	  of the long double .sh.value variable when the function returns.
97010-03-24  A bug in which integer division was mistakenly used when the
971	  numerator was a binary operator with the first operand floating
972	  point and the second integer, e.g. (.1**3)/3, has been fixed.
97310-03-24  The >; file operator was modified so that the temporary file is
974	  created in the same physical directory as file.
97510-03-23  A warning message was added to sh -n when $var was used inside
976	  ((...)) instead of var.
97710-03-19  fmin was added to the list of math function on the man page.
97810-03-19  Fixed the return value for unalias when the alias did not
979	  exist.
98010-03-19  A bug in which the SHLVL variable exported the value it had on
981	  input rather than the incremented value has been fixed.
98210-03-19  A bug which causes whence -q to go into an infinite loop has been
983	  fixed.
98410-03-19  Removed space between Stopped message and (SIGTTIN) and (SIGTTOUT).
98510-03-17  Modified profile shell execution so that when builtins that
986	  correspond to executable have extended attributes, they are
987	  executed by pfksh instead of being treated as built-ins.
98810-03-16  A bug in whence -a which produced duplicate lines of output has
989	  been fixed.
99010-03-16  A bug in the handling of process groups in monitor mode for
991	  command substitutions has been fixed.
99210-03-15  Fixed a bug in which read -u[fd] could cause the shell to core
993	  dump when fd was greater than open_max.
99410-03-15 +Modified the shell I/O so that the shell will not fail if the
995	  ulimit for open_max is increased as part of the script.
99610-03-12  A bug in which a here-document containing command substitutions
997	  that contained here-documents did not process correctly has been
998	  fixed.
99910-03-12  A bug in which the terminal is not restored to canonical mode
1000	  after read times out when in a multibyte locale with no edit mode
1001	  enabled has been fixed.
1002
100310-03-05  --- Release ksh93t+  ---
100410-03-05  A variable unset memory leak has been fixed and tests/leaks.sh
1005	  has been added to verify the fix.
100610-03-04  Documentation, comment, and diagnostic spelling typos corrected.
100710-02-14  Fix sh_getenv() initialization to cooperate with the 3d fs.
100810-02-12  A bug in which the get discipline function was not invoked for
1009	  associative array subscripts for unset array elements has been fixed.
101010-02-12  A bug which could occur if the last line of a script was an eval
1011	  that executed multiple commands has been fixed.
101210-02-02  A buffer overflow in read and another in binary type base64
1013	  encoding were fixed.
101410-01-20  A bug in the evaluation of arithmetic expression in which the
1015	  subscript was evaluated twice for $((foo[x++]++)) has been fixed.
101610-01-19  A workaround for a double-free of a trap in both a subshell and its
1017	  parent has been added.
101810-01-18  A bug in type handling of typeset -H has been fixed.
101910-01-15  The "adding empty subscript" warning now only emitted with -x set.
102010-01-01  A bug in the parser in which '$((case i in i):;esac);:))' was not
1021	  parsed correctly was fixed.
102210-01-01  A bug in the parser in which '$(( 2 , 3.6 ))' dumped core for locales
1023	  with radix char , and thousands separator . has been fixed.
102409-12-28  A bug in the handling of SIGCLD on systems that generated SIGCLD
1025	  while blocked waiting for process to complete has been fixed.
102609-12-24  ast setlocale() reworked to differentiate env var changes from user
1027	  override.
102809-12-18  A bug with the SHOPT_BGX option set which disabled traps for signals
1029	  < SIGCHLD when a trap for a signal > SIGCHLD was set has been fixed.
103009-12-18  A bug where [[ -v var ]] was incorrect for some variables (including
1031	  LC_* vars) has been fixed.
103209-12-15  A bug that produced a syntax error when a multibyte character
1033	  straddled a buffer boundary has been fixed.
103409-12-11  A bug where the subscript of an unset variable was not evaluated has
1035	  been fixed.
103609-12-09  A bug where shcomp dumped core on certain syntax errors has been fixed.
103709-12-07  A bug where a parent shell environment var reset in a subshell removed
1038	  the value in subsequent children of the parent shell has been fixed.
103909-12-04  A bug in which in some cases a trap in a function executed in
1040	  a subshell could trigger twice has been fixed.
104109-12-03  A bug in which SHLVL exported with some attributes could cause
1042	  the shell to abort at startup has been fixed.
104309-12-02  A bug with pipefail in which the shell could hang waiting for the
1044	  writer to complete before the last reader command has been fixed.
104509-11-30  A bug in which a trap could be inherited by the first element of
1046	  a pipeline when the command had more than 63 arguments that did
1047	  not contain any macro expansions has been fixed.
104809-11-19  When read from a terminal was called from with a while or for loop,
1049	  and an edit mode was on, a backspace or erase no longer will
1050	  overwrite the prompt.
105109-11-17 +Change .paths parse to handle BUILTIN_LIB=foo BUILTIN_LIB=foo-1.2.
105209-11-17  Inside a function, typeset foo.bar will bind foo to global variable
1053	  foo if local variable foo does not exist, instead of creating a
1054	  local variable.
105509-11-17  "read -n1" from the terminal has been fixed to read exactly one character.
105609-11-11  Job control now works for subshell commands, (...).
105709-11-11  If set -e is on for an interactive shell errors in special builtins
1058	  now cause the shell to exit.
105909-11-11  A bug in which an interrupt handler processed during the read builtin
1060	  when IFS did not contain a new line has been fixed.
106109-11-09  A bug in which a variable that has been unset in a subshell and then
1062	  exported from that subshell does not show up in the environment
1063	  has been fixed.
106409-11-02  ``,2'' is now a valid numeric constant for locales with
1065	  decimal_point=','.
106609-11-02  A bug where "return" in .profile did not restore the shell state
1067	  has been fixed.
106809-10-31  A bug that corrupted saved exit status when pids wrapped around has
1069	  been fixed.
107009-10-26  A bug in { LANG LC_ALL LC_category } ordering has been fixed in -last.
107109-10-16  A bug where notification to libast that the environment has changed
1072          has been fixed.
107309-10-12  A bug in which a function loaded in a subshell could leave side
1074	  effects in the parent shell has been fixed.
107509-10-12  A bug in converting a printf %d operand to a number when the operand
1076	  contains multiple subscripts for the same variable has been fixed.
107709-10-09  A bug in the handling of the escape character \ in directory prefixes
1078	  in command completion has been fixed.
107909-10-09  $PATH processing has been changed to delay dir stat() and .paths
1080	  lookup until the directory is needed in the path search.
108109-09-28  Call the ast setlocale() intercept on unset too.
108209-09-24  A bug in which LANG=foo; LC_ALL=foo; unset LC_ALL; did not revert
1083	  LC_CTYPE etc. to the LANG value has been fixed.
108409-09-17  A bug in which unsetting SVLVL could cause a script invoked by
1085	  name without #! to core dump has been fixed.
108609-09-16  A bug in which a pipeline in a here-document could hang when the
1087	  pipefail option was on has been fixed.
108809-09-09  A bug in the processing of line joining in here documents which
1089	  occurred when a buffer began with <escape><new-line> has been fixed.
109009-09-09 +A leading ; with commands in a brace group or parenthesis group
1091	  no longer causes an error.  It now is used for the "showme" option.
109209-09-09  A bug in which a subshell containing a background process could
1093	  block until the background process completed has been fixed.
109409-09-04  A bug in handing ${var[sub]}, where var is a nameref has been fixed.
109509-09-03  A bug which caused an index array to have the wrong number of elements
1096	  when it was converted from a compound variable by adding an another
1097	  element has been fixed.
109809-09-03  Specifying export for a compound variable now generates an error.
109909-09-02  $"..." localizations strings are no longer recognized inside `...`.
110009-09-01  A bug in the for loop optimizer in the handling of type static
1101	  variables has been fixed.
110209-09-01  An error message is not displayed when * and @ are used as subscripts.
110309-09-01  Several bugs in the processing for types that included an associative
1104	  array of another type has been fixed.
110509-09-01  A bug in the tracing of [[ a < b ]] and [[ a > b ]] has been fixed.
110609-08-26  The .sh.file variable was not being set for a script that was run
1107	  by name and didn't start with #! and this has been fixed.
110809-08-25  A bug in which a function called to deeply from command substitution
1109	  did not display an error message has been fixed.
111009-08-24 +When processing profiles, ksh93 now violates the POSIX standard and
1111	  treats &> as a redirection operator similar to bash.
111209-08-23  A bug in the handling of the trap on SIGPIPE that could lead to a
1113	  memory fault has been fixed.
111409-08-21  A bug in the handling of the comma operator in arithmetic expressions
1115	  that could cause a core dump on some systems has been fixed.
111609-08-20  A bug in which a compound variable containing an array of a type
1117	  that doesn't have any elements now expands correctly.
111809-08-19  A bug which disabled function tracing inside a function after
1119	  a call to another function has been fixed.
112009-08-19  A bug in which initializing a compound variable instance to another
1121	  compound variable by name has been fixed.
112209-08-18  A bug in which compound variable instances could be lost after
1123	  an instance that invoked a type method discipline has been fixed.
112409-08-18  A bug in which a discipline function for a type applied to an
1125	  array instance when invoked in a function ignored the subscript
1126	  has been fixed.
112709-08-18  A scoping error with variables in arithmetic expression with
1128	  type variables when reference with a name reference has been fixed.
112909-08-10  Several memory leaks were fixed primarily related to subshells.
113009-08-06  A bug in which setting the trap on CHLD to ignore could cause
1131	  a script to hang has been fixed.
113209-07-08  A bug in the processing of name reference assignments when it
1133	  contained pattern expansions with quoting has been fixed.
113409-06-22 +The default width for typeset -X has been changed so that there
1135	  should be no loss of precision when converting to a string.
113609-06-19  A bug in the printing of array elements for binary variables with
1137	  printf %B has been fixed.
113809-06-19  A bug which caused a core dump with trap DEBUG set with an array
1139	  assignment with no elements has been fixed.
114009-06-19  A bug with read with typeset -b -Z<num> has been fixed.
114109-06-19  Two bugs related to read -b for array variables has been fixed.
114209-06-19  A bug with typeset for compound variables containing arrays of
1143	  compound variables has been fixed.
114409-06-18  A bug in appending a compound variable to a an indexed array of
1145	  compound variables has been fixed.
114609-06-18  A bug which occurs when appending a compound variable to an indexed
1147	  array element has been fixed.
114809-06-18  Setting VISUAL to a value other than one ending in vi or emacs will
1149	  no longer unset the edit mode.
115009-06-17  A bug in typeset -m when moving a local compound variable to a
1151	  global compound variable via a name reference has been fixed.
115209-06-17  A bug in appending to nodes of an array of compound variables when
1153	  addressing them via nameref has been fixed.
115409-06-17  A bug in typeset -p var, when var is an array of compound variables
1155	  in which the output only contained on array element has been fixed.
115609-06-17  The prefix expansion ${!y.@} now works when y is a name
1157	  reference to an element of an array.
115809-06-16  Traps on signals that are ignored when the shell is invoked
1159	  no longer display.  Previously they were ignored as required but
1160	  would be listed with trap -p.
116109-06-12  A bug in vi edit mode in which hitting the up arrow key at the
1162	  end of a line longer than 40 characters which caused a core dump
1163	  has been fixed.
116409-06-11  A bug in which "eval non-builtin &" would create two processes,
1165	  one for the & and another for non-builtin has been fixed.
116609-06-08  When var is an identifier and is unset, ${var} no longer tries to
1167	  run command substitution on the command var.
116809-06-08 +Process substitution arguments of the form <(command) can now be
1169	  used following the < redirection operator to redirect from command.
117009-05-13  A bug in which redirections of the form 2>&1 1>&5 inside command
1171	  substitution could cause the command substitution to hang has been
1172	  fixed.
117309-05-12  To conform with POSIX, the -u option only checks for unset variables
1174	  and subscript elements rather than checking for all parameters.
117509-05-12  A bug which could cause a core dump when a variable whose name
1176	  begins with a . was referenced as part of a name reference inside
1177	  a function has been fixed.
117809-05-01  A bug that caused a core dump when SIGWINCH was received and
1179	  both vi and emacs mode were off has been fixed.
118009-04-22 +Default alias compound='typeset -C' added.
118109-04-15  A bug that caused ${...;} to hang for large files has been fixed.
118209-04-08  A change was made in the -n option which printed out an incorrect
1183	  warning with <>.
118409-04-07  The emacs edit command M-_ and M_. and the vi command _ was fixed
1185	  to handle the case there there is no history file.
118609-04-05  A bug in handling new-lines with read -n has been fixed.
118709-04-05  The ENV variable defaults the the file named by $HOME/.kshrc rather
1188	  then to the string $HOME/.kshrc.
118909-03-31  A bug in which a nested command substitution with redirections could
1190	  leave a file descriptor open has been fixed.
119109-03-24 +ksh now only uses the value of the _ variable on startup if it can
1192	  verify that it was set by the invoking process rather than being
1193	  inherited by some other ancestor.
119409-03-24 +When ksh is invoked without -p and ruid!=euid, and the shell is
1195	  compiled without SHOPT_P_UID or ruid<SHOPT_P_UID, the shell now
1196	  enables the -p option.  The previous version instead set the
1197	  euid to the ruid as it does for set +p.
119809-03-24 +When SHOPT_P_UID is defined at compile time and the shell is started
1199	  without -p and ruid!=euid and ruid>=SHOPT_P_UID then euid is set
1200	  to ruid. A bug that did the wrong test (ruid<SHOPT_P_UID) was fixed.
120109-03-17 +The sleep(1) builtin now accept and ISO 8601 PnYnMnDTnHnMnS
1202	  duration or date(1) compatible date/time operand.
120309-03-10  If a variable that was left or right justified or zero-filled was
1204	  changed with a typeset statement that was left or right justified
1205	  or zero-filled, then the original justification no longer affects
1206	  the result.
120709-03-10  A bug in the handling of traps when the last command in a script
1208	  is a subshell grouping command has been fixed.
120909-03-03  A bug in which an expansion of the form ${!prefix@} could generate
1210	  an exception after the return from a function has been fixed.
121109-02-02  A bug in restricted mode in which the value of ENV could be
1212	  changed from within a function has been fixed.
121309-02-02  A bug in which an erroneous message indicating that a process
1214	  terminated with a coredump has been fixed.
121509-02-02  The exit status when exit was called without an argument from
1216	  a signal handler was incorrect and has been fixed.
121709-02-02  A bug in which a function autoloaded in a subshell could cause
1218	  a core dump when the subshell completed has been fixed.
121909-02-02  A bug in which 2>&1 inside a command substitution wasn't working
1220	  correctly has been fixed.
122109-02-02  A bug in the call stack of arithmetic function with 2 args
1222	  returning int has been fixed.
122309-01-30  A bug in which 'eval print \$0' inside a function was giving the
1224	  wrong value for $0 has been fixed.
122509-01-28  A bug in which a command substitution could return an exit status
1226	  of 127 when the pipefail option is enabled has been fixed.
122709-01-26  ksh93 now generates an error message if you attempt to create
1228	  a global name reference to a local variable.
122909-01-26 +The [[ -v var ]] operator was modified to test for array elements.
123009-01-23 +The redirection operator <>; was added.  It is similar to <>
1231	  except that if the command it is applied to succeeds, the file
1232	  is truncated to the offset at the command completion.
123309-01-23  The default file descriptor for <> was changed to 1.
123409-01-20  A bug in which the exit status specified in an exit trap was
1235	  not used when a process terminated with a signal has been fixed.
123609-01-19  A bug in which a signal whose default action is to terminate
1237	  a process could be ignored when the process is running a sub-shell
1238	  has been fixed.
123909-01-19  A bug in which sending SIGWINCH to a process that reads from a pipe
1240	  could cause a memory fault has been fixed.
124109-01-16 +The -R unary operator was added to [[...]] and test to check whether
1242	  a variable is a  name reference.
124309-01-16 +The -v unary operator was added to [[...]] and test to check whether
1244	  a variable is set.
124509-01-14  The unset built-in was modified to return 0 exit status when
1246	  unsetting a variable that was unset to conform with the POSIX
1247	  standard.
124809-01-14  The unset built-in was modified to continue to unset variables
1249	  after encountering a variable that it could not unset to
1250	  conform to the POSIX standard.
125109-01-14  The parameter expansion ${x+value} no longer expands the value of
1252	  the variable x when determining whether x is set or not.
125309-01-13  A bug in which background jobs and pipelines that were not waited
1254	  for could, in rare instances, cause the shell to go into an infinite
1255	  loop or fail has been fixed.
125609-01-06  A bug in indexed arrays of compound variables in which referencing
1257	  non-existent sub-variable in an arithmetic expression could cause
1258	  the sub-variable to be created has been fixed.
125909-01-05  A bug in which the \ character did not escape extended regular
1260	  expression pattern characters has been fixed.
126108-12-24  A bug in which killing the last element of a pipe did not cause
1262	  a write to the pipe to generate a SIGPIPE has been fixed.
126308-12-19  A bug which could cause command substitution to hang when the
1264	  last element of a pipeline in a command substitution was a built-in
1265	  and the output was more that PIPE_BUFF.
126608-12-18  A bug which occurs when a here documented marker embedded in a
1267	  command substitution occurs on a buffer boundary has been fixed.
126808-12-17  A bug in the output of typeset -p for variables that had attributes
1269	  but did not have a value has been fixed.
127008-12-16  A bug in which a name reference to a name reference variable that
1271	  references an array element has been fixed.
127208-12-16  A bug in which a variable given both the -A and -C attribute along
1273	  with an initial assignment didn't work correctly has been fixed.
127408-12-10  The [[ -t fd ]] test was fixed to handle fd>9.
127508-12-10  A bug where function stack misalignment could cause a bus error
1276	  has been fixed.
127708-12-09  Command completion was changed to use \ to quote special characters
1278	  instead of quoting the argument in single quotes.
127908-12-07  A bug in typeset -m which occurred when the target node was an
1280	  associative array element has been fixed.
128108-12-07  A timing bug on some systems (for example darwin), that could
1282	  cause the last process of a pipeline entered interactively to fail
1283	  with an "Exec format error" has been fixed.
128408-12-04 +SHOPT_BGX enables background job extensions. Noted by "J" in
1285	  the version string when enabled. (1) JOBMAX=n limits the number
1286	  of concurrent & jobs to n; the n+1 & job will block until a
1287	  running background job completes. (2) SIGCHLD traps are queued
1288	  so that each completing background job gets its own trap; $! is
1289	  set to the job pid and $? is set to the job exit status at the
1290	  beginning of the trap. (3) sleep -s added to sleep until the time
1291	  expires or until a signal is delivered.
129208-12-04  The sign of floating point zero is preserved across arithmetic
1293	  function calls.
129408-12-04  A bug that caused print(1) to produce garbled stdout/stderr
1295	  output has been fixed.
129608-12-04  A bug in which printf "%d\n" "'<euro>'" did not output the
1297          numerical value of the EURO symbol, 8354, has been fixed.
129808-11-24 + /dev/fd* and /dev/std* redirections are first attempted with
1299	  open() to preserve seek semantics; failing that the corresponding
1300	  file descriptors are dup()'d.
130108-11-20  A bug which could cause a core dump if a function compiled with
1302	  shcomp was found has been fixed.
130308-11-20  A bug in which jobs were not cleared from the jobs table for
1304	  interactive shells when the pipefail option is on has been fixed.
130508-11-11  A bug in which a field that was unset in a type definition and later
1306	  set for an instance could appear twice when displaying the variable
1307	  has been fixed.
130808-11-11  A bug in which running a simple command & inside a function would
1309	  not return the correct process id has been fixed.
131008-11-10  A bug in which the exit status of a command could be lost if the pid
1311	  was that of the most recent command substitution that had completed
1312	  has been fixed.
131308-11-10  The maximum depth for subshells has been increased from 256 to 65536.
131408-11-06  A bug which could cause a core dump when the _ reference variable was
1315          used as an embedded type with a compound assignment has been fixed.
1316
131708-10-31  --- Release ksh93t  ---
131808-10-31  Variable scoping/initialization bugs that could dump core were fixed.
131908-10-24  The lexer now accepts all RE characters for patterns prefixed
1320	  with a ksh ~(...) option expression.
132108-10-24 +For ${var/pat/sub} \0 in sub expands to the text matched by pat.
132208-10-18  A bug in array scoping that could dump core has been fixed.
132308-10-10  read -n and -N fixed to count characters in multibyte locales.
132408-10-10  A bug that mishandled _.array[] type references has been fixed.
132508-10-09 +${.sh.version} now contains a concatenation of the following (after
1326	  'Version') denoting compile time features:
1327		A	SHOPT_AUDIT
1328		B	SHOPT_BASH
1329		L	SHOPT_ACCT
1330		M	SHOPT_MULTIBYTE
133108-10-09  A bug that caused subshell command substitution with redirection
1332	  to hang has been fixed.
133308-10-08  Output errors, other than to stderr, now result in a diagnostic.
133408-10-08  ksh93 now supports types that contain arrays of other types as
1335	  members.  Earlier versions core dumped in this case.
133608-10-05  A bug which caused the shell to emit a syntax error for an arithmetic
1337	  statement of the form (( var.name[sub] = value)) has been fixed.
133808-10-01  A bug that caused subshell command substitution to hang has
1339	  been fixed.
134008-09-29  When the -p export option of typeset is used with other options,
1341	  only those variables matching the specified options are displayed.
134208-09-29  When the shell reads the environment and finds variables that are
1343	  not valid shell assignments, it now passes these on to subsequent
1344	  commands rather than deleting them.
134508-09-29  A bug in the display of compound variables containing an indexed
1346	  array of compound variables has been fixed.
134708-09-29  A bug in the display of compound variables containing an associative
1348	  array with a subscript containing a . in the name has been fixed.
134908-09-26  A core dump in the subshell environment restore has been fixed.
135008-09-24  $(...) has been fixed to properly set the exit status in $?.
135108-09-23  $(<...) with IFS=$'\n\n' has been fixed to retain all but the last
1352	  of multiple trailing newlines.
135308-09-23  The -p option to typeset when used with other attributes, restricts
1354	  the output to variables with the specified attributes.
135508-09-22  A bug that sometimes lost the exit status of a job has been fixed.
135608-09-21  A bug that retained trailing command substitution newlines in
1357	  cases where the command caused the shell to fork has been fixed.
135808-09-19  type, whence -v, and command -v were fixed to comply with POSIX
1359	  by writing 'not found' diagnostics to the standard error.
136008-09-18  test and [...] were fixed to comply with POSIX in the case
1361	  of test '(' binop ')' where binop is a valid binary test operator.
136208-09-16 +If a method discipline named create is specified when defining a
1363	  type, this function will be called when an instance is created.
136408-09-15 +The variable _ is now set as a reference to the compound variable
1365	  when defining a compound variable or a type.
136608-09-10  The shell now prints an error message when the type name specified
1367	  for an indexed array subscript is not an enumeration type.
136808-09-10  A bug in which a subshell that spawned a background process could
1369	  loose output that was produced after the foreground completed
1370	  has been fixed.
137108-09-10  A timing bug on some systems that could cause coprocesses started by a
1372	  subshell to not clean up and prevent other coprocesses has been fixed.
137308-09-09  The typeset -m option is now able to rename array elements from
1374	  the same array.
137508-09-09  The exit status of 2 from the DEBUG trap causes the next command
1376	  to be skipped.  An exit value of 255 from a DEBUG trap called from
1377	  a function causes the function to return.
137808-09-08  A bug in which a coprocess created in a subshell that did not
1379	  complete when the subshell terminated could prevent a coprocess
1380	  from being created in the parent shell has been fixed.
138108-09-05  An assignment of the form name1=name2 where name1 and name2
1382	  are both compound variables causes name1 to get a copy of name2.
1383	  name1+=name2 causes name2 sub-variables to be appended to name1.
138408-09-05  A bug in which unsetting a compound variable did not unset all
1385	  the sub-variables has been fixed.
138608-09-01  A bug in the subshell cleanup code that could cause SIGSEGV has
1387	  been fixed.
138806-08-26 +The SHLVL variable which is an environment variable used by bash
1389          and zsh that gets incremented when the shell starts.
139008-08-25 +For an indexed array, a negative subscript now refers to offsets
1391	  from the end so that -1 refers to the last element.
139208-08-24  An alignment error for shorts on 64 bit architectures has been fixed.
139308-08-22  If oldvar is a compound variable, typeset -C newvar=oldvar creates
1394	  newvar as a copy of oldvar.
139508-08-19 +The ALRM signal no longer cause the sleep builtin to terminate.
139608-08-13  When used in an arithmetic expression, the .sh.version variable
1397	  now produces a number that will be increasing for each release.
139808-08-11  A bug in which type instantiation with a compound assignment in
1399	  a dot script in which the type is defined has been fixed.
140008-08-07 +The -m option has been added to typeset to move or rename a
1401	  variable.  Not documented yet.
140208-08-06  A bug in read when used in a loop when a prompt was specified
1403	  when reading from a terminal has been fixed.
140408-08-01  A bug with the pipefail option in which a nested pipeline could
1405	  cause an asynchronous command to block has been fixed.
140608-08-01  A for loop optimizer bug that treats .sh.lineno as an invariant
1407	  has been fixed.
140808-07-30  A bug in which expanding compound variable that had a get discipline
1409	  from with a here document could cause a syntax error has been fixed.
141008-07-18  A bug in which a nameref caused a local variable to be created
1411	  rather than binding to an existing variable in the global scope
1412	  has been fixed.
141308-07-17  A bug which occurred when a nameref was created from within a
1414	  function that was  part of a pipeline has been fixed.
141508-07-14 +The compile option SHOPT_STATS was added. With this option the
1416	  compound variable .sh.stats keeps usage statistics that could help
1417	  with performance tuning.
141808-07-10 +The output of set now always uses a single line for each variable.
1419	  For array variables, the complete set of values is now displayed.
142008-07-09 +The typeset -C option can be used with arrays to indicate that
1421	  each element should default to a compound variable.
142208-07-08 +The %B format now outputs compound variables and arrays.  The
1423	  alternate flag # can be used to cause output into a single line.
142408-07-03  When the window change signal, WINCH, is received, the current
1425	  edit line is redrawn in place.
142608-07-01  A bug in the handling of shared variables when inside an embedded
1427	  type has been fixed.
142808-06-29  A bug in multiline edit mode which occurred when the prompt length
1429	  was three characters or less has been fixed.
143008-06-23  A bug in which the SIGCLD was not be triggered when background
1431	  jobs completed has been fixed.
143208-06-23  _KSH_VERSION added as a name reference to .sh.version.
143308-06-20  type now outputs 'special builtin' for special builtins.
143408-06-19  A couple of bugs in multi-dimensional arrays have been fixed.
143508-06-19  A bug in which a syntax error in a dot script could generated
1436	  a syntax error in the next subsequent command has been fixed.
143708-06-17  Reduced the maximum function call depth to 2048 to avoid exceptions
1438	  on some architectures.
143908-06-16  A bug in which printf "%B" could generate an exception when the
1440	  specified variable was not set has been fixed.
144108-06-16 +When typeset -p is followed by variable names, it now displays
1442	  the attributes names and values for the specific names.
144308-06-14  A bug that could effect the drawing of the screen from multiline
1444	  emacs or gmacs mode when walking up the history file has been fixed.
144508-06-13  A bug in which a compound variable defined in a subshell could
1446	  have side effects into the parent shell has been fixed.
144708-06-13  A number of bugs related to using .sh.level to set the stack from
1448	  for DEBUG traps have been fixed.
144908-06-13 +The .sh.lineno variable has been added.  When .sh.level is changed
1450	  inside a DEBUG trap, the .sh.lineno contains the calling line number
1451	  for the specified stack frame.
145208-06-13  The .sh.level variable has been documented and now works.
145308-06-11 +The -C option has been added to read for reading compound command
1454	  definitions from a file.
145508-06-11 +The . command is now permitted inside a compound command definition.
1456	  The dot script can contain declaration commands and dot commands.
145708-06-09 +Add -C option to typeset so that typeset -C foo, is equivalent
1458	  to foo=().
145908-06-09  Added -n warning message for typeset option orderings that are valid
1460	  with ksh88 but not valid with ksh93, for example Lx5.
146108-06-09  A bug in which the return value for an assignment command containing
1462	  a command substitution with that failed was zero when the assignment
1463	  contained redirections has been fixed.
146408-06-09  A bug in the quoting of $ inside a ERE pattern ~(E)(pattern)
1465	  has been fixed.
146608-06-06  A bug when processing `` command substitution with the character
1467	  sequence \$' has been fixed.
146808-06-02 +When defining a type, the typeset -r attribute causes this field
1469	  to be required to be specified for each instance of the type and
1470	  does not allow a default value.
147108-06-02  Several bugs in which compound variables were modified by
1472	  subshells have been fixed.
147308-05-22 +The ceil function has been added to the math functions.
147408-05-21  A bug in which a name reference defined in a function and passed
1475	  as an argument to another function could cause an incorrect binding.
147608-05-21  A bug in freeing compound variables that are local to functions
1477	  has been fixed.
147808-05-19 +The array expansions ${array[sub1..sub2]} and ${!array[sub1..sub2]}
1479	  to expand to the value (or subscripts) for array between sub1 and
1480	  sub2 inclusive.  For associative arrays, the range is based on
1481	  location in the POSIX locale.  The .. must be explicit and cannot
1482	  result from an expansion.
148308-05-15  The trap on SIGCLD is no longer triggered by the completion of
1484	  the foreground job as with ksh88.
148508-05-14  A bug in the implementation of the editing feature added on
1486	  07-09-19 in emacs mode has been fixed.
148708-05-12  A bug in processing the test built-in with parenthesis has been
1488	  fixed.
148908-05-12  The unset built-in now returns non-zero when deleting an array
1490	  subscript that is not set.
149108-05-08 +Changing the value of HISTFILE or HISTSIZE will cause the old
1492	  history file to be close and reopened with the new name or size.
149308-05-08  When FPATH is changed functions that were found via a path search
1494	  will be searched for again.
149508-05-08  A parser bug in which reserved words and labels were recognized
1496	  inside compound indexed array assignment after a new-line has
1497	  been fixed.
149808-05-07  A bug in getopts when handling numerical option arguments has
1499	  been fixed.
150008-05-07 +The typeset -S option was added for variables outside type
1501	  definitions to provide a storage class similar to C static
1502	  inside a function defined with function name.  When outside
1503	  type definitions and outside a function, the -S option cause
1504	  the specified variable so be unset before the assignment and
1505	  before the remaining attributes are supplied.
150608-05-07  A bug that affected the cursor movement in multiline mode when
1507	  a character was deleted from near the beginning of the any
1508	  line other than the first.
150908-05-01  In multiline edit mode, the refresh operation will now clear
1510	  the remaining portion of the last line.
151108-05-01  A bug in computing prompt widths for the edit modes for prompts
1512	  with multibyte characters has been fixed.
151308-05-01  A bug in the multiline edit mode which could cause the current
1514	  line to be displayed incorrectly when moving backwards from third
1515	  or higher line to the previous line has been fixed.
151608-05-01  A bug in which options set in functions declared with the function
1517	  name syntax were carried across into functions invoked by these
1518	  functions has been fixed.
151908-04-30  A bug which could cause a coprocess to hang when the read end
1520	  is a builtin command has been fixed.
152108-04-30 +The emacs and vi editors have been modified to handle window
1522	  change commands as soon as they happen rather than waiting for
1523	  the next command.
152408-04-28  A bug in which ${!x} did not expand to x when x was unset has been
1525	  fixed.
152608-04-27  A bug in which the assignment x=(typeset -a foo=([0]=abc)) created
1527	  x.foo as an associative array has been fixed.
152808-04-25  A bug in which $# did not report correctly when there were more
1529	  than 32K positional parameters has been fixed.
153008-04-04  Choose the name _ as the sub-variable that holds type or instance
1531	  specific data used by discipline functions.
153208-03-27  A bug in which the terminal group was not given back to the parent
1533	  shell when the last part of a pipeline was handled by the parent shell
1534	  and the other parts of the pipeline complete has been fixed.
1535	  The symptom was that the pipeline became uninterruptable.
153608-03-25  A bug in restricted mode introduced in ksh93s that caused scripts
1537	  that did not use #! to executed in restricted mode has been fixed.
153808-03-25  A bug in which the pipefail option did not work for a pipeline
1539	  within a pipeline has been fixed.
154008-03-24  A bug in which OPTIND was not set correctly in subshells has
1541	  been fixed.
154208-03-24  A bug which could cause a memory exception when a compound variable
1543	  containing an indexed array with only element 0 defined was expanded.
154408-03-20  A bug in which ${!var[sub].*} was treated as an error has been fixed.
154508-03-20  Associative array assignments of the form ([name]=value ...)
1546	  now allow ; as well as space tab and new line to separate elements.
154708-03-18  A buffering problem in which standard error was sometimes
1548	  not flushed before sleep has been fixed.
154908-03-17  A bug in which a signal sent to $$ while in a subshell would be
1550	  sent to the subshell rather than the parent has been fixed.
155108-03-17 + A --default option added to set(1) to handle set +o POSIX semantics.
1552	  set --state added as a long name alias for set +o.
155308-03-14  A bug in which using monitor mode from within a script could
1554	  cause the terminal group to change has been fixed.
155508-03-10  The new ${...} command substitution will treat the trailing }
1556	  as a reserved word even if it is not at the beginning of a command,
1557	  for example, ${ date }.
155808-03-10  If the name of the ENV begins with /./ or ././ then the
1559	  /etc/ksh.kshrc file will not be executed on systems that support
1560	  this interactive initialization file.
156108-03-07  A bug in which ksh -i did not run the ENV file has been fixed.
156208-03-07  A bug in which ulimit did not always produce the same output as
1563	  ulimit -fS has been fixed.
156408-03-04  A bug in multiline mode in emacs and vi mode which could cause the
1565	  cursor to be on the wrong line when interrupt was hit has been fixed.
156608-03-03  The change made in ksh93s+ on 07-06-18 in which braces became
1567	  optional for ${a[i]} inside  [[...]] was restored in the case
1568	  where the argument can be a pattern.
156908-03-03  A bug in which creating a name reference to an associative array
1570	  instance would fail when the subscript contained characters [ or
1571	  ] has been fixed.
157208-02-29 +The redirection operator >; has been added which for non-special
1573	  files, generates the output in a temporary file and writes the
1574	  specified file only of the command has completed successfully.
157508-02-15  A bug in ${var/pattern/string} for patterns of the form ?(*) and +(*)
1576	  has bee fixed.
157708-02-07  A bug in which test \( ! -e \) produced an error has been fixed.
157808-02-14 +The typeset -a option can now optionally be followed by the name
1579	  of an enumeration type which allows subscripts to be enumerations.
158008-02-14 +The enum builtin which creates enumeration types has been added.
158108-02-12  The backoff logic when there are no more processes has been fixed.
158208-02-07  The -X option has been added to typeset.  The -X option creates
1583	  a double precision number that gets displayed using the C99 %a
1584	  format.  It can be used along with -l for long double.
158508-01-31  The -T option to typeset has been added for creating typed
1586	  variables.  Also the -h and -S options have been added to
1587	  typeset that are only applicable when defining a type.
158808-01-31  The prefix expansion operator @ has been added.  ${@name}
1589	  expands to the type of name or yields the attributes.
159007-11-15  A bug in the macro expander for multibyte characters in which
1591	  part of the character contains a file pattern byte has been fixed.
159207-10-03  A bug in which : was not allowed as part of an alias name has been
1593	  fixed.
159407-09-26  A bug in which appending a compound variable to a compound variable
1595	  or to an index array didn't work has been fixed.
159607-09-19  In both emacs and vi edit mode, the escape sequence \E[A (usually
1597	  cursor up, when the cursor is at the end of the line will fetch
1598	  the most recent line starting with the current line.
159907-09-18  The value of ${!var} was correct when var was a reference to an
1600	  array instance.
160107-09-18  The value of ${!var[sub]} was not expanding to var[sub] and this
1602	  was fixed.  It also fixed ${name} where name is a name reference
1603	  to var[sub].
160407-09-18 +It is now legal to create a name reference without an initialization.
1605	  It will be bound to a variable on the first assignment.
160607-08-30 +A discipline function can be invoked as ${x.foo} and is equivalent
1607	  to ${ x.foo;} and can be invoked as x.foo inside ((...)).
160807-07-09  A bug in which typeset -a did not list indexed arrays has been
1609	  fixed.
161007-07-03 +The command substitution ${ command;} has been added.  It behaves
1611	  like $(command) except that command is executed in the current
1612	  shell environment.  The ${ must be followed by a blank or an
1613	  operator.
1614
161508-04-17  --- Release ksh93s+  ---
161608-04-17  A bug in which umask was not being restored correctly after a
1617          subshell has been fixed.
161808-04-15  A bug in which sending a STOP signal to a job control shell started
1619	  from within a shell function caused cause the invoking shell to
1620	  terminate has been fixed.
162108-04-11  A bug which caused $(exec > /dev/null) to go into an infinite loop
1622	  has been fixed.
162308-03-27  A bug in which typeset -LZ was being treated as -RZ has been fixed.
162408-03-06  A bug with ksh -P on systems that support the the profile shell,
1625          in which it would exit after running a non-builtin has been fixed.
162608-01-31  A bug in which command substitution inside ((...)) could cause
1627	  syntax errors or lead to core dumps has been fixed.
162808-01-17  A bug in which discipline functions could be deleted when invoked
1629	  from a subshell has been fixed.
163008-01-17  A bug in which a command substitution consisting only of
1631	  assignments was treated as a noop has been fixed.
163208-01-17  A bug in which discipline functions invoked from withing a
1633	  compound assignment could fail has been fixed.
163408-01-16  Incomplete arithmetic assignments, for example ((x += )), now
1635	  generate an error message.
163608-01-16  A bug in which a set discipline defined for a variable before
1637	  an array assignment could cause a core dump has been fixed.
163808-01-03  A bug in on some systems in which exit status 0 is incorrectly
1639	  returned by a process that catches the SIGCONT signal is stopped
1640	  and then continued.
164107-12-13  A race condition in which a program that has been stopped and then
1642	  continued could loose the exit status has been fixed.
164307-12-12  Code to check for file system out of space write errors for all
1644	  writes has been added.
164507-12-11  A bug in the macro expander for multibyte characters in which
1646	  part of the character contains a file pattern byte has been fixed.
164707-12-06  A bug in the emacs edit mode when multiline was set that output
1648	  a backspace before the newline to the screen has been fixed.
164907-12-04  A bug in which using <n>TAB after a variable name listing expansion
1650	  in the edit modes would cause the $ to disappear has been fixed.
165107-11-28  A bug in which setting IFS to readonly could cause a subsequent
1652	  command substitution to fail has been fixed.
165307-11-27  A work around for a gcc 4.* C99 "feature" that could cause a job
1654	  control shell to go into an infinite loop by adding the volatile
1655	  attribute to some auto vars in functions that call setjmp().
165607-11-27  A bug in which the shell could read ahead on a pipe causing the
1657	  standard input to be incorrectly positioned has been fixed.
165807-11-27  A bug in which compound variable UTF-8 multibyte values were not
1659	  expanded or traced properly has been fixed.
166007-11-21  A bug where an unbalanced '[' in a command argument was not treated
1661	  properly has been fixed.
166207-11-15  A bug in which compatibility mode (no long option names) getopts(1)
1663	  incorrectly set the value of OPTARG for flag options has been fixed.
166407-11-15  A bug in which "hash -- name" treated "--" as an invalid name operand
1665	  has been fixed.
166607-11-15  typeset now handles "-t -- [-r] [--]" for s5r4 hash(1) compatibility.
166707-11-15  A bug in which the umask builtin mis-handled symbolic mode operands
1668	  has been fixed.
166907-11-15  Bugs in which shell arithmetic and the printf builtin mis-handled the
1670	  signs of { -NaN -Inf -0.0 } have been fixed.
167107-11-15 +The full { SIGRTMIN SIGRTMIN+1 ... SIGRTMAX-1 SIGRTMAX } range
1672	  of signals, determined at runtime, are now supported.
167307-11-15  A bug in which creating an index array with only subscript 0 created
1674	  only a simple variable has been fixed.
167507-11-14  A bug in which appending to an indexed array using the form
1676	  name+=([sub]=value) could cause the array to become an associative
1677	  array has been fixed.
167807-11-14  A bug in which typeset without arguments could coredump if a
1679	  variable is declared as in indexed array and  has no elements has
1680	  been fixed.
168107-11-14  A bug in which creating a local SECONDS variable with typeset in
1682	  a function could corrupt memory has been fixed.
168307-11-14  A bug which could cause a core dump when a script invoked by name
1684	  from a function used compound variables has been fixed.
168507-11-05  A bug in which printf %d "'AB" did not diagnose unconverted characters
1686	  has been fixed.
168707-11-05  printf %g "'A" support added for all floating point formats.
168807-11-01  A bug in which typeset -f fun did not display the function definition
1689          when invoked in a subshell has been fixed.
169007-10-29  The sleep builtin was fixed so that all floating point constants
1691	  are valid operands.
169207-10-10  A bug in which the locale was not being restored after
1693          LANG=value command has been fixed.
169407-09-20  A bug in which a nameref to a compound variable that was local
1695	  to the calling function would not expand correctly when displaying
1696	  is value has been fixed.
169707-09-19  A bug which cause cause a core dump if .sh.edchar returned
1698	  80 characters or more from a keyboard trap has been fixed.
169907-09-14  A bug in which could cause a core dump when more than 8 file
1700	  descriptors were in use has been fixed.
170107-09-10  A bug in which creating a name reference to an instance of
1702	  an array when the array name is itself a reference has been fixed.
170307-09-10  The file completion code has been modified so that after an = in
1704	  any word, each : will be considered a path delimiter.
170507-09-06  A bug in which subprocess cleanup could corrupt the malloc() heap
1706          has been fixed.
170707-08-26  A bug in which a name reference to an associative array instance
1708	  could cause the subscript to be evaluated as an arithmetic expression
1709	  has been fixed.
171007-08-22  A bug in which the value of an array instance was of a compound
1711	  variable was not expanded correctly has been fixed.
171207-08-14  A bug which could cause a core dump when a compound assignment was
1713	  made to a compound variable element with a typeset -a attribute
1714	  has been fixed.
171507-08-08  A bug in which a trap ignored in a subshell caused it to be
1716	  ignored by the parent has been fixed.
171707-08-07  A bug in which the set command would generated erroneous output
1718	  for a variable with the -RZ attribute if the variable name had been
1719	  passed to a function has been fixed.
172007-08-02  A bug in which read x[1] could core dump has been fixed.
172107-08-02  A second bug in which after read x[sub] into an associative array
1722	  of an element that hasn't been assigned could lead to a core dump
1723	  has been fixed.
172407-07-31  A bug in which a pipeline that completed correctly could have
1725	  an exit status of 127 when pipefail was enabled has been fixed.
172607-07-09 +The SHOPT_AUDIT compile option has been added for keyboard logging.
172707-06-25  In vi insert mode, ksh no longer emits a backspace character
1728	  before the carriage return when the newline is entered.
172907-06-25  A bug in which pipefail would cause a command to return 0
1730	  when the pipeline was the last command and the failure happened
1731	  on a component other than the last has been fixed.
173207-06-25  A bug in the expansion of ${var/pattern/rep} when pattern or rep
1733	  contained a left parenthesis in single quotes has been fixed.
173407-06-18  The braces for a subscripted variable with ${var[sub]} are now
1735	  optional when inside [[...]], ((...)) or as a subscript.
173607-05-28  A bug in brace expansion in which single and double quotes did
1737          not treat the comma as a literal character has been fixed.
173807-05-24  The -p option of whence now disables -v.
173907-05-23  Several bug fixes in compound variables and arrays of arrays
1740	  have been made.
174107-05-15  A bug in which the %B format of printf was affected  by the
1742	  locale has been fixed.
174307-05-14  A bug in which \ was not removed in the replacement pattern with
1744	  ${var/pattern/rep} when it was not followed by \ or a digit has
1745	  been fixed.
174607-05-10  A bug in which ksh -R file core dumped if no script was specified
1747	  has been fixed.  it not displays an error message.
174807-05-07  Added additional Solaris signals to signal table.
174907-04-30  A bug in which a pipeline with command substitution inside a
1750	  function could cause a pipeline that invokes this function to
1751	  hang when the pipefail option is on has been fixed.
175207-04-30 +Added -q to whence.
175307-04-18  A small memory leak with each redirection of a non-builtin has
1754	  been fixed.
175507-03-08  A bug in which set +o output command line options has been fixed.
175607-03-08  A bug in which an error in read (for example, an invalid variable
1757	  name), could leave the terminal in raw mode has been fixed.
175807-03-06  A bug in which read could core dump when specified with an array
1759	  variable with a subscript that is an arithmetic expression has
1760	  been fixed.
176107-03-06  Several serious bugs with the restricted shell were reported and
1762	  fixed.
176307-03-02  If a job is stopped, and subsequently restarted with a CONT
1764	  signal and exits normally, ksh93 was incorrectly exiting with
1765	  the exit status of the stop signal number.
176607-02-26 +M-^L added to emacs mode to clear the screen.
176707-02-26  A bug in which setting a variable readonly in a subshell would
1768	  cause an unset error when the subshell completed has been fixed.
176907-02-19 +The format with printf uses the new = flag to center the output.
177007-02-19  A bug in which ksh93 did not allow multibyte characters in
1771	  identifier names has been fixed.
177207-02-19  A bug introduced in ksh93 that causes global compound variable
1773	  definitions inside functions to exit with "no parent" has been fixed.
177407-02-19  A bug in which using compound commands in process redirection
1775	  arguments would give syntax errors <(...) and >(...) has been fixed.
177607-01-29  A bug which caused the shell to core dump which can occur when a
1777	  built-in exits without closing files that it opens has been fixed.
177807-01-26  A bug in which ~(E) in patterns containing \ that are not inside ()
1779	  has been fixed.
1780
178106-12-29  --- Release ksh93s  ---
178206-12-29  A bug in which the value of IFS could be changed after a command
1783	  substitution has been fixed.
178406-12-22 +/dev/(tcp|udp|sctp)/HOST/SEVRICE now handles IPv6 addresses on
1785	  systems that provide getaddrinfo(3).
178606-12-19 +A -v option was added to read.  With this option the value of
1787	  the first variable name argument will become the default value
1788	  when read from a terminal device.
178906-11-20  A bug in which "${foo[@]:1}}" expands a null argument (instead of
1790	  no argument), when foo[0] is not empty has been fixed.
179106-11-16  The discipline functions have been modified to allow each subscript
1792	  to act independently.  Currently the discipline function will not
1793	  be called when called from a discipline function of the same variable.
179406-11-14  A bug which could cause a core dump if a file descriptor for
1795	  an internal file was closed from with a subshell has been fixed.
179606-10-30 +The redirections <# pattern, and <## pattern have been added.
1797	  Both seek forward to the beginning of the next line that contains
1798	  the pattern.  The <## form copies the skipped portion to standard
1799	  output.
180006-10-26 +On systems that support stream control transport, the virtual file
1801	  name /dev/sctp/host/port can now be used to establish connections.
180206-10-26 +The printf modifier # when used with d produces units in thousands
1803	  with a single letter suffix added.  The modifier # when used with
1804	  the i specification provides units of 1024 with a two letter suffix.
180506-10-24  The value of $! is now set to the process id of a job put
1806	  into the background with the bg command as required by POSIX.
180706-10-23  A bug in which the value of $! was affected by a background
1808	  job started from a subshell has been fixed.
180906-10-23  A bug in ${var:offset:len} in multibyte locales has been fixed.
181006-10-15 +The remaining math functions from C99 were added for any system
1811	  that supports them.
181206-10-13  The klockwork.com software detected a few coding errors that
1813	  have been fixed.
181406-10-12  A bug when skipping over `...` with ${x:=`...`} when x is set
1815	  has been fixed.
181606-10-11  A bug in process floating constants produced by the %a format
1817	  of printf has been fixed.
181806-10-06  A bug in which IFS was not being restored correctly in some
1819	  cases after a subshell has been fixed.
182006-10-06  A bug in which pipefail was not detecting some failures in
1821	  pipelines with 3 or more states has been fixed.
182206-10-03  A bug in the processing of >(...) with builtins which could
1823	  cause the builtin to hang has been fixed.
182406-10-03  A bug in the for loop optimizer which causes >(...) process
1825	  substitution to be ignored has been fixed.
182606-09-17 +The -a option was added to typeset for indexed arrays.  This
1827	  is only needed when using the ([subscript]=value ...) form.
182806-09-06 +The showme option was added.  Each simple command not beginning
1829	  with a redirection and not occurring with in the while, until, if,
1830	  select condition can be preceded by a semi-colon which will
1831	  be ignored when showme is off.  When showme is on, any command
1832	  preceded by a colon will be traced but not executed.
183306-08-16 +As a new feature, a leading ~(N) on a pattern has no effect
1834	  except when used for file expansion.  In this case if not
1835	  matches are found, the pattern is replaced by nothing rather
1836	  than itself.
183706-08-11  A bug in the expansion of ${.sh.match[i]:${#.shmatch[i]}} has
1838	  been fixed.
183906-08-10 +The read builtin options -n and -N have been modified to treat
1840          the size as characters rather than bytes unless storing into a
1841	  binary (typeset -B) variable.
184206-07-27 +When the here document operator << is followed directly by a #
1843	  rather than a -, the first line of the here-document determines
1844	  how much whitespace is removed for each line.
184506-07-26  A bug in the C-shell history (enabled with set -H) in which the
1846	  history event !$ was not processed has been fixed.
184706-07-21  A bug on some systems in which assigning PATH on a command line
1848	  would not take effect has been fixed.
184906-07-20  Add ksh93 and rksh93 as allowable names for ksh binaries.
185006-07-20  Removed the SHOPT_OO compilation option which was only partially
1851	  implemented.
185206-07-20  The ability to use egrep, grep, and fgrep expressions within
1853	  shell patterns has been documented.
185406-07-17  A bug with arithmetic command expressions for locales in which
1855	  the comma is a thousands separator has been fixed.
185606-07-13 +The default HISTSIZE was increased from 128 to 512.
185706-07-13  A multibyte problem with locales that use shift codes has been fixed.
185806-06-23  A number of bug fixes for command, file, and variable completion
1859	  have been mode.
186006-06-20 +Floating point division by zero now yields the constant Inf or -Inf
1861	  and floating functions with invalid arguments yield NaN.
186206-06-20 +The floating point constants Inf and NaN can be used in arithmetic
1863	  expressions.
186406-06-20 +The functions isinf(), isnan(), tanhl() have been added for
1865	  arithmetic expressions.
186606-06-13  Internal change to use ordering for variables instead of hashing
1867	  to speed up prefix matching.
186806-06-13  A window between fork/exec in which a signal could get lost
1869	  and cause a program to hang has been eliminated
187006-06-13  A bug in edit completion with quoted strings has been fixed.
187106-06-07  The restricted options can now be enabled by set as well as on
1872	  the command line.  Once set, it can not be disabled.
187306-06-04  Modified built-in binding so that for systems for which /bin
1874          and /usr/bin are the same, a builtin bound to /bin will get
1875	  selected when either /bin or /usr/bin is scanned.
187606-06-04 +Added literal-next character processing for emacs/gmacs mode.
1877	  This change is not compatible with earlier versions of ksh93
1878          and ksh88 when the stty lnext is control-v.  The sequence
1879	  escape-control-v will display the shell version.
188006-05-31 +Modified emacs and vi mode so that entering a TAB after a partial
1881	  TAB completion, generates a listing of possible completions.
1882	  After the second TAB, a number followed by a TAB will perform
1883	  the completion with the corresponding item.
188406-05-19 +Modified arithmetic so that conversions to strings default to
1885	  the maximum number of precision digits.
188606-05-16  Bug fixes for multibyte locales.
188706-05-10  The =~ operator was added to [[...]] and  [[ string ~= ERE ]]
1888	  is equivalent to [[ string == ~(E)ERE ]].
188906-04-25  A bug in the vi edit mode which could cause the shell to core dump
1890	  when switching from emacs mode.
189106-04-17  A bug in which using LANG or LC_ in assignment lists with builtins
1892	  did not restore the localed correctly has been fixed.
189306-04-04  A bug in which discipline functions could not be added to variables
1894	  whose names started with .sh has been fixed.
189506-03-28 +The -s option to typeset was added to modify -i to indicate short
1896	  integers.
189706-03-28  A bug in which variables assignment lists before functions
1898	  defined with function name were not passed on the functions
1899	  invoked by this function has been fixed.
190006-03-28  A bug in which name references defined within a function defined
1901	  with function  name could not be used with compound variables has
1902	  been fixed.
190306-03-27  A bug in which read <&p (print >&p) would cause the coprocess input
1904	  (output) pipe to close before reading from (after writing to)
1905          it has been fixed.
190606-02-28  A bug in which stopping a job created with the hist builtin command
1907	  would create a job that could not be restarted has been fixed.
1908
190906-01-24  --- Release ksh93r  ---
191006-01-24  A bug in which running commands with standard output closed would
1911	  not work as expected has been fixed.
191206-01-23  A bug in which print -u<n> could fail when file descriptor <n> was
1913	  open for writing has been fixed.
191406-01-19  The ?: arithmetic operator fixed to work when the operation after
1915	  the colon was an assignment.
191605-12-24  A bug which could lead to a core dump when elements of a compound
1917	  variable were array elements, i.e. foo=(bar=(1 2)), has been fixed.
191805-12-13  An arithmetic bug in which x+=y+=z was not working has been fixed.
191905-12-13  An arithmetic bug in which x||y was returning x when x was non-zero
1920	  rather than 1 has been fixed.
192105-12-07 +The aliases for integer and float have been changed to use attributes
1922	  -li and -lE to handle long long and long double types.
192305-12-07 +The histexpand (-H) option has been added which allows C-shell
1924	  style history expansions using the history character !.
192505-12-07 +The multiline option was added which changes that way the edit
1926	  modes handle lines longer than the window width.  Instead of
1927	  horizontal scrolling, multiple lines on the screen are used.
192805-12-05  The whence builtin now returns an absolute pathname when the
1929          command is found in the current directory.
193005-11-29  A bug which caused ksh -c '[[ ! ((' to core dump rather than
1931	  report a syntax error has been fixed.
193205-11-29  A bug when reading fixed length records into typeset -b variables
1933	  which caused a zero byte to terminate the value has been fixed.
193405-11-22 +The ability to seek to an offset within a file has been added
1935	  with the new I/O redirection operators, <#  and >#.  Currently,
1936	  these redirection operators must be followed by ((expr))
1937	  but in a future release, it should be able to used to seek forward
1938	  to the specified shell pattern.  In addition $(n<#) expands to the
1939	  current byte offset for file descriptor n.
194005-11-22 +The .sh.match array variable is now set after each [[ ... ]]
1941	  pattern match.  Previously it was only set for substring matches.
194205-10-17  A bug in which the library path variable could be prefixed
1943          with a directory when a .path file was not encountered in
1944	  the directory of the executable has been fixed.
194505-09-15  A for/while loop optimizer bug in which $OPTIND was not
1946	  correctly expanded has been fixed.
194705-09-05  A bug in which a history command that invoked a history
1948	  command could go into an infinite loop has been fixed.
194905-08-31 +In the case that IFS contains to adjacent new-lines so that
1950	  new-line is not treated as a space delimiter, only a single
1951	  new-line is deleted at the end of a command substitution.
195205-08-19 +When a tilde substitution expands to the / directory and is
1953	  followed by a /, it is replaced by the empty string.
195405-08-16  A bug in which n<&m did not synchronize m has been fixed.
195505-08-16  A bug in which process substitution  ( <() and >() ) was not
1956	  working within for and while loops has been fixed.
195705-07-24  A bug in which the pattern ~(E)(foo|bar) was treated as a syntax
1958	  error has been fixed.
195905-07-24  A bug in completion with <n>=, where n was the one of the
1960	  previous selection choices has been fixed.
196105-07-21  A bug with multibyte input when no edit mode was specified which
1962	  caused the input line to shift left/right has been fixed.
196305-06-24  A race condition which could cause the exit status to get lost
1964	  on some fast systems has been fixed.
196505-06-21  A bug in which nested patterns of the form {m,n}(pat) would cause
1966	  syntax errors has been fixed.
196705-06-21  A bug in the macro expander has been fixed which could cause a
1968          syntax error for an expansion of the form ${x-$(...)} when
1969	  x is set and the command substitution contained certain strings.
197005-06-08 +On systems for which echo does not do System V style \ expansions,
1971	  the -e option was added to enable these expansion.
197205-06-08  A bug in which ${var op pattern} to not work when inside an
1973	  arithmetic expression has been fixed.
197405-05-23 +An extension to shell patterns that allows matching of nested
1975	  groups while skipping over quoted strings has been added.
197605-05-18  A bug in which the line number for errors was not correct for
1977          functions loaded from FPATH has been fixed.
197805-04-18  A bug in which the exit status $? is not set when a trap triggered
1979	  by the [[...]] command is executed has been fixed.
198005-04-08 +Redirection operators can be directly preceded with {varname}
1981	  with no intervening space, where varname is a variable name which
1982	  allows the shell to select a file descriptor > 10 and store it
1983	  into varname.
198405-04-08 +SHOPT_CMDLIB_BLTIN=1 now includes <cmdlist.h> generated table.
198505-04-07 +[[ -o ?option ]] is true if "option" is a supported option.
198605-04-05  A bug in handling file completion with spaces in the names
1987          has been fixed.
198805-03-25 +The SIGWINCH signal is caught by default to keeps the LINES and
1989	  COLUMNS variables in sync with the actual window size.
199005-03-25 +Building ksh with SHOPT_REMOTE=1 causes ksh to set --rc if stdin is
1991	  a socket (presumably part of a remote shell invocation.)
199205-03-25 +Building ksh with SHOPT_SYSRC=1 causes interactive ksh to source
1993	  /etc/ksh.kshrc (if it exists) before sourcing the $ENV file.
199405-03-25 +{first..last[..incr][%fmt]} sequences added to brace expansions
1995	  when braceexpand is enabled.
199605-03-03  A bug where a SIGCHLD interrupt could cause a fifo open to fail has
1997	  been fixed.
199805-02-25  A bug in which a builtin command run in the background could
1999	  keep a file descriptor open which could cause a foreground
2000	  process to hang has been fixed.
200105-02-24  A bug where builtin library commands (e.g., date and TZ) failed to
2002	  detect environment variable changes has been fixed.
200305-02-22 +The read builtin and word splitting are now consistent with respect
2004	  to IFS -- both treat IFS as field delimiters.
200505-02-22 +The read builtin no longer strips off trailing delimiters that
2006	  are not space characters when there are fewer variables than fields.
200705-02-17  A builtin bug on systems where dlsym(libcmd) returns link-time
2008	  bindings has been fixed.
200905-02-12  A bug in which the lib_init() function for .paths BUILTIN_LIB
2010	  libraries was not called has been fixed.
201105-02-06  A bug on some systems in which moving the write end of a co-process
2012	  to a numbered file descriptor could cause it to close has been fixed.
201305-02-06  A bug in the vi-edit mode in which the character under the cursor
2014	  was not deleted in some cases with the d% directive has been fixed.
201505-02-06  A bug where external builtin stdout/stderr redirection corrupted
2016          stdout has been fixed.
201705-02-04  A bug where times formatting assumed CLK_TCK==60 has been fixed.
2018
201905-01-11  --- Release ksh93q  ---
202005-01-11  A bug in the integral divide by zero check has been fixed.
202105-01-11 +The -l option has been added to read /etc/profile and
2022	  $HOME/.profile, if they exist, before the first command.
202305-01-11  An argument parsing bug that caused `kill -s x -- n' to fail has
2024	  been fixed.
202505-01-11 +The .paths file, introduced in ksh93m, which can appear in
2026	  any directory in PATH, now allows a line of the form 'BUILTIN_LIB=.'
2027	  When a command is searched for this directory, and the full path
2028	  matches the path of the built-in version of the command (listed
2029	  by the 'builtin' command) then the built-in version of the command
2030	  is used.  When ksh is built with SHOPT_CMDLIB_DIR=1 then all libcmd
2031	  functions become builtins with the '/opt/ast/bin/' directory prefix.
203205-01-10  A bug in which a nameref to a compound name caused a core dump has
2033	  been fixed.
203405-01-09  A bug in which some SIGCHLD interrupts (from child processes exiting)
2035	  caused a fatal print/echo error diagnostic has been fixed.
203604-12-24  A bug in which some SIGCHLD interrupts (from child processes exiting)
2037          corrupted the internal process/job list, sometimes causing the shell
2038	  to hang, has been fixed.
203904-12-01  A bug in which typeset -Fn truncated less than n digits for large
2040	  numbers has been fixed.
204104-11-25  A bug in which standard error could be closed after a redirection
2042	  to /dev/stderr has been fixed.
204304-11-17  A bug in which an expansion of the form ${array[@]:3} could expand
2044          to ${array[0]} when ${array[3]} was not set has been fixed.
204504-10-22 +The -E or -orc command line option reads ${ENV-$HOME/.kshrc} file.
204604-10-22 +`-o foo' equivalent to `+o nofoo', `-o nobar' equivalent to `+o bar'.
2047          `--foo' equivalent to `-o foo', `--nofoo' equivalent to `+o foo'
204804-10-05 +The .paths file, introduced in ksh93m, which can appear in
2049	  any directory in PATH, now allows a line of the form
2050	  'BUILTIN_LIB=libname'.  When a command is searched for this directory,
2051	  the shared library named by libname will first be searched for a
2052	  built-in version of the command.
205304-09-03  <<< here documents now handle quotes in the word token correctly.
205404-08-08 +The maximum size for read -n and and read -N was increased from
2055	  4095 to 32M.
205604-08-04 +printf %q was modified so that if an no operand was supplied, no
2057	  no output would be generated rather than a quoted empty string.
205804-08-01 +The -n and -N options of the read builtin has been modified
2059	  when reading variables with the binary attribute so that the
2060	  data is stored directly rather than through assignment.
206104-08-01 +The shcomp command has been modified to process alias commands
2062	  under some conditions.
206304-07-31 +The .sh.match variable added in ksh93l, now works like other
2064	  indexed arrays.
206504-07-08  A loop optimizer bug which occurs when typeset is used in
2066	  a for or while loop inside a function has been fixed.
206704-06-24 +The number of subexpressions in a pattern was increased to 64
2068	  from the current number of 20.
206904-06-17 +The -t option to read was modified to allow seconds to be
2070	  specified as any arithmetic expression rather than just
2071	  an integral number of seconds, for example even -t 'sin(.5)'
2072	  is now valid.
207304-06-16  Two small memory leak problems were fixed.
207404-06-15  A bug in ${var/pattern/"string"} which occurred when string
2075	  contained pattern matching characters has been fixed.
207604-05-08  printf $'%d\n' produced an erroneous error message and has
2077	  been fixed.
207804-05-24  A bug in which an associative array without any elements could
2079	  cause a core dump when a script with an associative array with
2080	  the same name was declared in a script invoked by name has
2081	  been fixed.
208204-05-11  A bug in which an exec statement could close the script that
2083	  is being processed in a script that is run by name causing
2084	  a failure has been fixed.
208504-04-28 +If the first character of assignment to an integer variable was 0,
2086          the variable had been treated as unsigned.  This behavior was
2087          undocumented and has been removed.
208804-04-05  A bug in which the positioning of standard input could be incorrect
2089	  after reading from standard input from a subshell has been fixed.
209004-03-30  A bug in the for loop optimizer which in rare cases could cause
2091	  memory corruption has been fixed.
209204-03-29 +The preset alias source='command .' has been added.
209304-03-29  A bug introduced in ksh93p on some systems in which invoked by
2094	  name with #! on the first line would not get the signals handling
2095	  initialized correctly has been fixed.
209604-03-29  A bug introduced in ksh93p in which a HUP signal received by
2097	  a shell that is a session group leader was not passed down to
2098	  its children has been fixed.
2099
210004-02-28  --- Release ksh93p  ---
210104-02-28 +The ability to apply an append discipline to any variable has
2102	  been added.
210304-02-14  A bug in which the exportall option (set -a) would cause incorrect
2104	  results for arrays has been fixed.
210504-02-02  A bug in which an exported array would pass more than
2106	  the first element to a script invoked by name has been fixed.
210704-02-02  A bug on some systems in which name=value pairs preceding a script
2108	  invoked by name was not getting passed to the script has been fixed.
210904-01-20  A bug in which an unset discipline function could cause a core
2110	  dump on some systems has been fixed.
211104-01-12  A bug in which a continue or break called outside a loop from
2112	  inside a function defined with name() syntax could affect
2113	  the invoking function has been fixed.
211404-01-08  If a command name begins with ~, only filename completion will be
2115	  attempted rather than pathname completion using the builtin editors.
211604-01-08  A bug in the vi edit mode in which the wrong repeat count on
2117	  multiple word replacements with the . directive has been fixed.
211804-01-06  Backspace characters are now handled correctly in prompt strings.
211904-01-06 +The getopts builtin has been modified to accept numerical
2120	  arguments of size long long on systems that support this.
212104-01-06  A bug in which unsetting all elements of an associative array
2122	  would cause it to be treated as an indexed array has been fixed.
212303-12-15  A bug in which a quoted string ending with an unescaped $ would
2124	  delete the ending $ in certain cases has been fixed.
212503-12-05  A bug in which the shell could hang when set -x tracing a command
2126	  when an invalid multibyte character is encountered has been fixed.
212703-12-05  On some systems, if the KEYBD trap is set, then commands that use
2128	  the meta key were not processed until return was hit.  This
2129	  has been fixed.
213003-12-05  A problem which occurred when the login shell was not a group
2131	  leader that could cause it to fail has been fixed.
213203-12-05  A problem in which a shell could core dump after receiving a signal
2133	  that should cause it to terminate while it was in the process
2134	  of acquiring more space has been fixed.
213503-12-05 +If ENV is not specified, the shell will default to $HOME/.kshrc
2136	  for interactive shells.
213703-11-21  A bug introduced in ksh93o in which the DEBUG trap could get
2138	  disabled after it triggered has been fixed.
213903-11-04  A bug in which using arithmetic prefix operators ++ or -- on a
2140	  non-lvalue could cause a core dump has been fixed.
214103-11-04  A bug in which leading zeros were stripped from variable
2142	  expansions within arithmetic computation to avoid being treated
2143	  as octal constants when they should not have, has been fixed.
214403-10-08  A bug introduced in ksh93o in which a large here document inside
2145	  a function definition could get corrupted has been fixed.
214603-09-22  A bug in which the .get discipline function was not being
2147	  called when a string variable was implicitly referenced from
2148	  within a numerical expression has been fixed.
214903-09-22  A bug in which a script without a leading #! could get executed
2150	  by /bin/sh rather than the current shell on some systems has
2151	  been fixed.
215203-09-12 +To improve conformance with ksh88, leading zeros will be ignored
2153	  when getting the numerical value of a string variable so that
2154	  they will not be treated as octal constants.
215503-09-03 +The builtin kill command now processes obsolete invocations
2156	  such as kill -1 -pid.
215703-09-02  The restriction on modifying FPATH in a restricted shell (sh -r)
2158	  has been documented.
215903-09-02 +The restricted shell (sh -r) has been modified to disallow
2160	  executing command -p.
216103-08-07  A bug in which the KEYBD trap was not being invoked when
2162	  characters with the 8th bit set has been fixed.
216303-08-02  A parser bug introduced in ksh93o which caused the character
2164	  after () in a Posix function definition to be skipped
2165	  when reading from standard input has been fixed.
216603-08-01  A bug in which "${foo#pattern}(x)" treated (x) as if it were
2167	  part of the pattern has been fixed.
216803-08-01 +The command -x option has been modified so that any trailing
2169	  arguments that do expand to a single word will be included
2170	  on each invocation, so that commands like command -x mv * dir
2171	  work as expected.
2172
217303-07-20  --- Release ksh93o+  ---
217403-07-20  A bug in which could cause memory corruption when a posix
2175	  function invoked another one has been fixed.
217603-07-15  A bug in which a file descriptor>2 could be closed before
2177	  executing a script has been fixed.
217803-07-15  A parsing error for <() and >() process substitutions inside
2179	  command substitution has been fixed.
218003-07-15  A parsing error for patterns of the form {...}(...) when
2181	  used inside ${...} has been fixed.
218203-07-15  An error in which expanding an indexed array inside a compound
2183	  variable could cause a core dump has been fixed.
218403-07-15  A bug in which on rare occasions a job completion interrupt
2185	  could cause to core dump has been fixed.
218603-06-26  A bug in which process substitution embedded within command
2187	  substitution would generate a syntax error has been fixed.
218803-96-23  A bug in which ${@:offset:len} could core dump when there
2189	  were no arguments has been fixed.
219003-96-23  A bug in which ${X[@]:offset:len} could core dump when X
2191	  was unset has been fixed.
219203-06-22 +The -x option was added to the command builtin.  If this
2193	  option is on, and the number of arguments would exceed ARG_MAX,
2194	  the command will be invoked multiple times with a subset of
2195	  the arguments.  For example, with alias grep='command -x grep,
2196	  any number of arguments can be specified.
219703-06-14  A bug in which could cause a core dump on some systems with
2198	  vi and emacs editors with the MULTIBYTE option has been fixed.
219903-06-06  A bug in which the shell could core dump when a script was
2200	  run from its directory, and the script name a symlink to a file
2201	  beginning with .., has been fixed.
220203-06-05  A bug in which the shell could core dump when a child process
2203	  that it is unaware of terminates while it is calling malloc()
2204	  has been fixed.
220503-06-02 +An option named globstar (set -G) has been added.  When enabled,
2206	  during pathname expansion, any component that consists only of ** is
2207	  matches all files and any number of directory levels.
220803-05-30  A bug in which the PATH search could give incorrect results when
2209	  run from directory foo and PATH contained .:foo:xxx has been fixed.
221003-05-29 +Some changes were made to the code that displays the prompt in edit
2211	  mode to better handle escape sequences in the prompt.
221203-05-27  I added = to the list of characters that mark the beginning of
2213	  a word for edit completion so that filenames in assignments
2214	  can be completed.
221503-05-20  A bug in which read -N could hang on some systems when reading
2216	  from a terminal or a pipe has been fixed.
221703-05-19  A bug in which the output of uname from a command substitution
2218	  would go to the standard output of the invoking command when
2219	  uname was invoked with a non-standard option has been fixed.
222003-05-19  A job control bug which would cause the shell to exit because
2221	  it hadn't take back the terminal has been fixed.  The bug
2222	  could occur when running a function that contained a pipeline
2223	  whose last element was a function.
222403-05-19  A job control timing bug introduced in ksh93o on some systems
2225	  which could cause a pipeline to hang if the first component
2226	  completed quickly has been fixed.
222703-05-13 +The read builtin has been modified so that the builtin editors
2228	  will not overwrite output from a previous incomplete line.
222903-05-13  A bug in which the name of an identifier could have the string
2230	  .sh. prefixed to it after expanding a variable whose name begins
2231	  with .sh. has been fixed.
223203-05-13  A bug in the expansion of $var for compound variables in which
2233	  some elements would not be output when the name was a prefix
2234	  of another name in the compound variable has been fixed.
223503-05-08  The last item in the ksh93o release on 03-01-02 has been
2236	  altered slightly to preserve the leading 0's when the
2237	  preceding character is a digit.  Thus, with typeset -LZ3 x=10,
2238	  $(( 1$x)) will be 1010 whereas $(( $x) will be 10.
223903-04-25  A bug in which if x is a name reference, then nameref y=x.foo
2240	  did not follow x has been fixed.
2241
224203-03-18  --- Release ksh93o  ---
224303-03-18 +A -N unary operator was added to test and [[...]] which returns
2244	  true if the file exists and the file has been modified since it
2245	  was last read.
224603-03-18 +The TIMEFORMAT variable was added to control the format for
2247	  the time compound command.  The formatting description is
2248	  described in the man page.
224903-03-06 +A -N n option was added to read which causes exactly n bytes
2250	  to be read unlike -n n which causes at most n bytes to be read.
225103-03-03 +Three new shell variables were added.  The variable .sh.file
2252	  stores the full pathname of the file that the current command
2253	  was found in.  The variable .sh.fun names the current function
2254	  that is running.  The variable .sh.subshell contains the depth
2255	  of the current subshell or command substitution.
225603-03-03 +When the DEBUG trap is executed, the current command line after
2257	  expansions is placed in the variable .sh.command.  The trap
2258	  is also now triggered before each iteration of a for, select,
2259	  and case command and before each assignment and redirection.
226003-02-28 +Function definitions are no longer stored in the history file so
2261	  that set -o nolog no longer has any meaning.
226203-02-28 +All function definitions can be displayed with typeset -f not
2263	  just those stored in the history file.  In addition, typeset +f
2264	  displays the function name followed by a comment containing the
2265	  line number and the path name for the file that defined this function.
226603-02-28  A bug in which the value of $LINENO was not correct when executing
2267	  command contained inside mult-line command substitutions has been
2268	  fixed.
226903-02-19 +Since some existing ksh88 scripts use the undocumented and
2270	  unintended ability to insert a : in front of the % and # parameter
2271	  expansion operators, ksh93 was modified to accept :% as equivalent
2272	  to % and :# as equivalent to # with ${name op word}.
227303-02-14  A bug which could cause a core dump when reading from standard
2274	  error when standard error was a pty has been fixed.
227503-02-14 +The shell arithmetic was modified to use long double on systems
2276	  that provide this data type.
227703-02-09  A bug in which a function located in the first directory in FPATH
2278	  would not be found when the last component of PATH was . and the
2279	  current directory was one of the directories in PATH has been fixed.
228003-02-07 +The trap and kill builtin commands now accept a leading SIG prefix
2281	  on the signal names as documented.
228203-02-05  A bug in the expansion of ${var/$pattern}, when pattern contained
2283	  \[ has been fixed.
228403-02-05  A bug in which .sh.match[n], n>0, was not being set for substring
2285	  matches with % and %% has been fixed.
228603-01-15  A bug in which getopts did not work for numerical arguments specified
2287	  as n#var in the getopts string has been fixed.
228803-01-09  A bug in which using ${.sh.match} multiple times could lead to
2289	  a memory exception has been fixed.
229003-01-06  A bug in the expansion of ${var/pattern/$string} in the case that
2291	  $string contains \digit has been fixed.
229203-01-02 +A -P option was added for systems such as Solaris 8 that support
2293	  profile shell.
229403-01-02  For backward compatibility with ksh88, arithmetic expansion
2295	  with ((...)) and let has been modified so that if x is a zero-filled
2296	  variable, $x will not be treated as an octal constant.
2297
229802-12-05  --- Release ksh93n+  ---
229902-11-30  A bug that can show up in evaluating arithmetic statements that
2300	  are in an autoloaded function when the function is autoload from
2301	  another function has been fixed.
230202-11-30  An optimization bug in which an expansion of the form ${!name.@},
2303	  which occurred inside a for or a while loop, when name is a name
2304	  reference, has been fixed.
230502-11-18  A bug in which modifying array variables in a subshell could leave
2306	  side effects in the parent shell environment has been fixed.
230702-11-18  A memory leak when unsetting an associative array has been fixed.
230802-11-14 +The code to display compound objects was rewritten to make
2309	  it easier for runtime extensions to reuse this code.
231002-11-14 +A change was made to allow runtime builtins to be notified when
2311	  a signal is received so that cleanup can be performed.
231202-10-31 +User applications can now trap the ALRM signal.  Previously,
2313	  the ALRM signal was used internally and could not be used
2314	  by applications.
231502-10-31  A bug in which signals received while reading from a coprocess
2316	  for which traps were set was not handled correctly has been fixed.
231702-10-31  A bug in which a file opened with exec inside a subshell could
2318	  be closed before the subshell completed has been fixed.
231902-10-21  A bug in which setting PATH or FPATH inside a function might not
2320	  take effect has been fixed.
232102-10-21  A bug which could cause a core dump when a local SECONDS variable
2322	  is defined in a function has been fixed.
232302-10-15  A bug in which the associate array name operator ${!array[@]}
2324	  could return the same name multiple times has been fixed.
232502-10-15  A bug in which the zero'th element of an associative array was
2326	  not getting set when an assignment was made without a subscript
2327	  specified has been fixed.
2328
232902-09-30  --- Release ksh93n  ---
233002-09-30 +The maximum indexed array size was increased to 16Megs.
233102-09-30  A bug which could cause a core dump when changing attributes
2332	  of associative array has been fixed.
233302-09-30  A bug in which exporting an array variable would not export the
2334	  0-th element has been fixed.
233502-09-30  A bug in which an array assignment of the form a=($a ...) would unset
2336	  'a' before the right hand side was evaluated has been fixed.
233702-09-27  A bug in which the error message for ${var?message} when var was
2338	  null or unset did not contain the variable name var has been fixed.
233902-09-27  A bug in which closing file descriptors 0 through 2 could
2340	  cause a subsequent here document to fail has been fixed.
234102-09-14  A bug in whence which occurs when the specified name contained
2342	  a / has been fixed.
234302-09-14  A bug in the parser for strings of the form name$((expr))=value
2344	  has been fixed.
234502-09-14  A for loop optimization bug in which the number of elements in
2346	  an array was treated as an invariant has been fixed.
234702-09-09  A bug in which redirection or closing of a file descriptor between
2348	  3 and 9 could cause a subsequent here document to fail has been
2349	  fixed.
235002-09-09  A bug in which a background job was not removed from the job list
2351	  when a subshell completed has been fixed, for example (prog&).
235202-09-03  A bug in which an assignment of the form name=(integer x=3)
2353	  could be interpreted as an array assignment rather than a
2354	  compound variable assignment has been fixed.
235502-08-19  A command completion bug which occurred on file systems that
2356	  are case insensitive has been fixed.
235702-08-19  A bug which could lead to an exception on some systems (for
2358	  example FREEBSD) which occurred when setting PATH has been fixed.
235902-08-11  A bug in arithmetic rounding in which a value input as a decimal
2360	  string would output as a rounded version of the string has
2361	  been fixed.
236202-08-11  A bug in which the last character could be deleted from shell
2363	  traces and from whence when called from a multibyte locale
2364	  has been fixed.
236502-08-01  A bug which could cause a core dump to occur when a shell script
2366	  is executed while a coprocess is running that has closed the
2367	  output pipe has been fixed.
236802-08-01  A bug in which command completion in multibyte mode could
2369	  corrupt memory for long command lines has been fixed.
2370
237102-06-17  --- Release ksh93n-  ---
237202-06-17  A bug in which user defined macros could cause a core dump in
2373	  with MULTIBYTE mode has been fixed.
237402-06-17  A bug in which printf format specifiers of the form %2$s were causing
2375	  a core dump has been fixed.
237602-06-17  A bug in which setting stty to noecho mode did not prevent the
2377	  echoing of characters by ksh when emacs or viraw mode
2378	  was enabled has been fixed.
237902-06-17  A bug in which background job completion could cause the sleep
2380	  builtin to terminate prematurely has been fixed.
238102-06-17  A bug in which the shell could core dump if getopts was called
2382	  when the OPTIND variable contained a negative value has been fixed.
238302-06-10 +The edit mode prompt has been modified to handle escape sequences.
238402-06-10  A bug which occurred for interactive shells in which the builtin
2385	  cat command was used in command substitution on a file whose
2386	  size was larger than PIPE_BUF has been fixed.
238702-06-10  A bug in which the trap on ERR was not being processed when
2388	  set inside a function has been fixed.
238902-06-07  A bug in which function definitions could cause the history count
2390	  to be decremented by one (and even become negative) has been fixed.
239102-06-05  A bug in read in which share mode could be enabled has been fixed.
239202-05-28  A bug which could occur when the last command of a script was
2393	  a case statement and the action selected ended in ;& instead of ;;
2394	  has been fixed.
239502-05-23  A bug with unary + introduced in ksh93k has been fixed.
239602-05-07  A bug in substitutions of the form ${var/pattern/string} in which
2397	  a backslash was inserted in the replacement string when it contained
2398	  a special pattern character has been fixed.
239902-05-01  A bug in the emacs edit mode which occurred in versions compiled
2400	  for multibyte character sets which occurred when a repeated search
2401	  was requested after a long line had been returned for the previous
2402	  search has been fixed.
240302-04-02 +vi and emacs edit modes were modified so that tab completion is
2404	  disabled when invoked from the read built-in.
2405
240602-03-26  --- Release ksh93m+  ---
240702-03-26  A bug in which \ was not handled correctly when used in file
2408	  expansion has been fixed.
240902-02-18  A bug in which lines beginning with a # were deleted from here
2410	  documents when the here-document delimiter was followed by
2411	  a comment has been fixed.
241202-12-06  An optimization bug in which ${!x[@]) was treated as invariant in
2413	  a for loop has been fixed.
241402-02-06  A bug in which the ERR trap is not cleared for a script invoked
2415	  by name from within a function has been fixed.
241602-01-08  A bug in which a shell script executed from within a subshell
2417	  could cause this script to have an invalid pointer leading
2418	  to a memory fault has been fixed.
241902-01-07 +Added here documents of the form <<< word (as per zsh) which
2420	  is equivalent to << delim\nword\ndelim.
242102-01-07  A bug in which the first word of a compound assignment,
2422	  x=(word ...), was treated as a reserved word has been fixed.
242302-01-07  A bug in the handling of \ when noglob was enabled and a
2424	  substitution of the form ${word op pattern} occurred in the
2425	  same word has been fixed.
242602-01-07 +A compilation option, CMDLIB_BLTIN in the file OPTION, has
2427	  been added.  When this options is set, all commands implemented
2428	  in libcmd become shell builtin commands by default.
242902-01-07  A bug in which builtin foo, where foo is already a builtin
2430	  would result in the builtin foo getting removed has been fixed.
243102-01-07  A bug which the shell executed a command found in the current
2432	  directory when PATH have no valid directories has been fixed.
243301-11-28  The value of $? was not being set when called with exit.
243401-11-28  If the last command was of the form (...) and a trap on EXIT or
2435	  ERR was set, and the command inside () modified the trap, then
2436	  the original trap wasn't executed.
243701-11-26 +The value for 0 is now preceded by the base number when
2438	  the base was not 10.
243901-11-26 +The default has compilation mode has been changes so that
2440	  viraw mode will always be on.
2441
244201-10-31  --- Release ksh93m  ---
244301-10-31  A for loop optimizer bug for subshells contained withing for
2444	  loops has been fixed.
244501-10-16  typeset without arguments no longer outputs variable names
2446	  that do not have any attributes that are set.
244701-10-16  A bug introduced in ksh93l in which assignments specified with
2448	  the exec built-in were not being expanded properly has been
2449	  fixed.
245001-10-11  An optimization bug in which ${!x) was treated as invariant in
2451	  a for loop has been fixed.
245201-10-11  Unsigned integer variables in bases other than 10 are printed now
2453	  expand in that base with the base prefix.
245401-10-10  A number of typos in the self generating man pages for shell
2455	  built-ins have been fixed.
245601-10-04  The self generated man pages for hist and fc were not working
2457	  correctly and have been fixed.
245801-10-03  Yet another optimizer bug in which shell patterns were
2459	  treated as invariants has been fixed.
246001-09-27  Two bugs relating to multibyte history searches and to find
2461	  have been fixed.
246201-09-27  A bug introduced in ksh93k in which the PATH searching was
2463	  not restored after running a command with an assignment list
2464	  has been fixed.
246501-09-26  A bug in which a zero filled field was treated as octal when
2466	  converted to integer has been fixed.
246701-09-26  Yet another bug in the optimization of for loops related to
2468	  recursive functions with break or continue statements has been fixed.
246901-09-25 +The exponentiation operator ** was added to the shell arithmetic
2470	  evaluation.  It has higher precedence than * and is left
2471	  associative.
247201-09-25  The code was modified to use the ast multibyte macros
2473	  and functions for handing multibyte locales.
247401-09-25 +The expansion ${parameter:offset:length} now handles negative
2475	  offsets which cause offsets to be measured from the end.
247601-09-25  Some spelling errors in the documentation were corrected.
247701-09-24 +The /dev/tcp/host/port and /dev/udp/host/port now allow
2478	  the ports to be specified by service name.
247901-09-24 +The change staring with ksh93g in which the the appropriate
2480	  library path variable is prepended with a corresponding library
2481	  directory has been modified.  With the new method, only the
2482	  library path defined in the file named .paths in the directory
2483	  where the executable is found will be modified.  See the
2484	  man page for more details.
248501-09-23 +The .fpath file (see ksh93h) is no longer looked for in each
2486	  directory on the path to locate function directories.  The
2487	  file named .paths is used instead.
248801-09-23  A bug in which IFS was not being restored after being changed in
2489	  a subshell has been fixed.
249001-09-16 +With the vi and emacs edit modes, after a list of command
2491	  or functions is generated with = or M-= respectively,
2492	  any element from the list can be pasted on the command line
2493	  by preceding the = or M-= with a numeric parameter specifying
2494	  the position on the list.
249501-09-16  A bug in ksh93l caused command completion not to find aliases
2496	  and functions.  Command listing from the edit mode was presented
2497	  in reverse order.  This has been fixed.
249801-09-13  Another bug in the optimization of for loops related to subshells
2499	  when traps were set has been fixed.
250001-09-07  A change in ksh93l caused brace expansion to stop working
2501	  and this has been fixed.
250201-09-04  A bug introduced in ksh93k in which an arithmetic statement
2503	  within a function that used name references did not follow the
2504	  reference has been fixed.
250501-09-04  A bug introduced in ksh93l in which export -p did not prefix
2506	  each export with the word export has been fixed.
250701-08-29  A bug in multibyte input which occurred when a partial multibyte
2508	  character was received has been fixed.
250901-08-29  A bug introduced in ksh93l which could cause a core dump
2510	  when an assignment list containing PATH is specified inside
2511	  command substitution has been fixed.
251201-08-09  Another bug in the optimization of for loops in ksh93l caused
2513	  errors in recursive functions using local variables that
2514	  contained for loops has been fixed.
251501-07-27  A bug in which IFS would be unset after a command substitution
2516	  inside a here document has been fixed.
251701-07-26  To conform to the POSIX standard, if you invoked ksh name,
2518	  and name does not contain a /,  it will first try to run
2519	  one in the current directory whether it is executable or not
2520	  before doing a path search for an executable script.  Earlier
2521	  versions first checked for an executable script using the
2522	  PATH variable.
252301-07-23  A bug in which unset -f invoked in a subshell could unset a
2524	  function defined in the parent has been fixed.
252501-07-16  A bug in the optimization of for loops in ksh93l caused
2526	  name references to be treated as invariants has been fixed.
252701-07-09  A bug in which a discipline function applied to a local variable
2528	  could cause a shell exception has been fixed.  Discipline
2529	  functions can only be specified for global variables.
2530
253101-06-18  --- Release ksh93l  ---
253201-06-18  A bug in assigning integers larger than can be represented as
2533	  long integers to floating point variables has been fixed.
253401-06-18  A bug in the handling of unsigned integers (typeset -ui) has
2535	  been fixed.
253601-06-04  The evaluation of the PS1 prompt no longer effects the value
2537	  of the $? variable.
253801-06-01  A small memory leak from subshells has been fixed.
253901-05-22  A bug in which attributes for variables that did not have
2540	  values would be lost after a subshell has been fixed.
254101-05-22 +The %R format has been added to convert a shell pattern into
2542	  an extended regular expression.
254301-05-22 +The escape sequences \e, \cX, \C[.collating-element.], and
2544	  \x{hex} have been added to ASCII-C strings and to printf format
2545	  strings.
254601-05-20 +Patterns of the form {n}(pattern) and {m,n}(pattern) are now
2547	  recognized.  The first form matches exactly n of pattern whereas,
2548	  the second form matches from m to n instances of pattern.
254901-05-20 +The shell allows *-(pattern), +-(pattern),  ?-(pattern),
2550	  {m,n}-(pattern}, and @-(pattern) to cause the minimal
2551	  match of pattern to be selected whenever possible rather
2552	  than the maximal (greedy) match.
255301-05-20 +The character class [:word:] has been added to patterns.
2554	  The word class is the union of [:alnum:] and the character _.
255501-05-20 +Inside (...) pattern groups, the \ character is now treated
2556	  specially even when in an enclosing character class.  The
2557	  sequences, \w, \d, \s are equivalent to the character classes
2558	  word, digit, and space respectively.  The sequences \W, \D,
2559	  and \S are their complement sets.
256001-05-20 +The shell now recognizes pattern groups of the form
2561	  ~(options:pattern) where options or :pattern can be omitted.
2562	  Options use the letters + and - to enable and disable options
2563	  respectively.  The option letters g (greedy), i (ignore case)
2564	  are used to cause maximal matching and to cause case
2565	  insensitive matching respectively.  If :pattern is also
2566	  specified, these options are only in effect while this
2567	  pattern is being processed.  Otherwise, these options remain
2568	  in effect until the end of the pattern group that they are contained
2569	  in or until another ~(...) is encountered.  These pattern groups
2570	  are not counted with respect to group numbering.
257101-05-14  When edit completion, expansion, or listing occurs in the
2572	  middle of a quoted string, the leading quote is ignored when
2573	  performing the completion, expansion, or listing.
257401-05-14  A small memory leak from subshells has been fixed.
257501-05-10  A bug in which open files were not restored after a subshell
2576	  that had used exec to replace a file has been fixed.
257701-05-10 +Redirection to a null file name now generates an error message.
257801-05-09  The shell now rejects some invalid parameter substitutions that
2579	  were previously processed in undefined ways.
258001-05-09  A bug in which the output of select was not flushed before the
2581	  read when input did not come from the terminal has been fixed.
258201-05-08  A bug in which job ids would not be freed for interactive shells
2583	  when subshells ran built-ins in the background has been fixed.
258401-05-08 +The FPATH variable now requires an explicit . to cause the
2585	  current directory to be treated as a function directory.
258601-05-08  A bug in read -n when echo mode was disabled has been fixed.
258701-05-07  A bug in which function definitions could be listed as part
2588	  of the history has been fixed.
258901-04-30 +This release uses a new and often much faster pattern matcher than
2590	  earlier releases.
259101-04-30 +An optimizer now eliminates invariant parameter expansions from
2592	  for while and until loops.
259301-04-30 +The variable .sh.match is set after each pattern match (# % or /)
2594	  in a variable substitution.  The variable .sh.match is an
2595	  indexed array with element 0 being the complete match.
2596	  The array is only valid until the next subsequent pattern
2597	  match or until the value of the variable changes which ever
2598	  comes first.
259901-04-30 +A self generating man page has been added to shcomp.  Also,
2600	  shcomp now stops compiling when it finds an exit or exec
2601	  command and copies the remainder so that it can be used
2602	  for standard input.
260301-04-30 +The shcomp command was modified so that it can work in an
2604	  EBCIDIC environment and that binary scripts are portable
2605	  across environments.
260601-04-30  A bug in the handling of a trailing : in PATH has been fixed.
260701-04-30  A bug in which the builtin version of a command would get invoked
2608	  even though the full pathname for the command was specified
2609	  has been fixed.
261001-04-30  A bug in which read would loose the last character when
2611	  reading the last line of a file that did not contain a new-line
2612	  character has been fixed.
261301-04-23  A bug on some systems in which in vi mode the end of file
2614	  character and end of line character could be swapped has
2615	  been fixed.
261601-04-23  A bug on some systems in which invoking a shell script that
2617	  did not have execute permission could set the exit value to
2618	  127 rather than 126 has been fixed.
261901-04-20  A bug in which read -n from a pipe would block if fewer than
2620	  n characters was received has been fixed.
262101-04-09  A bug in which invalid patterns, for example, ) by itself,
2622	  was not treated as a string has been fixed so that if i=')',
2623	  then [[ $i == $i ]] is true.
262401-04-09 +The shell arithmetic now interprets C character constants.
262501-04-09  A bug in which a non-zero return from a function defined
2626	  with the function reserved word did not trigger the ERR
2627	  trap or exit with set -e has been fixed.
262801-04-02  A bug on some systems, in which characters above 127 were
2629	  not displayed correctly in vi or emacs edit mode has been fixed.
263001-04-02  A bug on some systems, introduced in the 'k' point release, in
2631	  which the erase character in viraw mode was moving the cursor
2632	  to the left without erasing the character has been fixed.
263301-04-02  On some systems the wcwith() function was returning a wrong
2634	  value for characters and caused characters to be displayed
2635	  incorrectly from the shell edit modes.  A work around for
2636	  this problem has been added.
263701-03-26  A bug in which valid scripts could produce syntax errors
2638	  when run with locales that considered characters such as "'"
2639	  to be space characters has been fixed.
264001-03-20  A bug in which an syntax error in an arithmetic expression
2641	  entered interactively could cause the shell to go into
2642	  an infinite loop outputting the error message has been fixed.
264301-03-10 +ksh93 accepts -l as a synonym for -L in test on systems for
2644	  which /bin/test -l tests for symbolic links.
264501-03-10  A bug in parsing scripts in which { and } are used in place of
2646	  in and esac in case statements embedded in compound commands
2647	  has been fixed.  Use of { and } for in and esac is obsolete.
264801-03-06  A bug in which an argument of the form foo=bar was not
2649	  being passed correctly to a traced function whose name
2650	  was foo has been fixed.
265101-03-02  Using $(trap -p name) did not print the name of the current
2652	  trap setting for trap name.
265301-02-26  Exported floating point variables gave incorrect results
2654	  when passing them to ksh88.  This has been fixed.
265501-02-25  A race condition in which a coprocess which completed too quickly
2656	  would not allow subsequent coprocesses to start has been fixed.
265701-02-25  The 'g' format specifier is now handled by printf.  It had
2658	  inadvertently been omitted.
265901-02-20  The + was not being displayed during an execution trace
2660	  with the += assignment operator.
266101-02-19  The error message which occurs when the interpreter name
2662	  defined on the #! line does not exist is more informative.
266301-02-19  A bug in which $0 would not be set correctly when a
2664	  script with #! was invoked by full pathname from the
2665	  directory of the script has been fixed.
266601-02-19  A shell script did not always pick up tty mode changes
2667	  made by external commands such as stty which could
2668	  effect the behavior of read.
266901-02-19  The -u, -g, and -k unary tests did not give the correct
2670	  results when used with negation and this has been fixed.
2671
267201-02-05  --- Release ksh93k+  ---
267301-02-05  The sequence \<newline> inside $'...' was not incrementing
2674	  the line count and this has been fixed.
267501-02-05 +Modified expansion of "${@-}" so that if no arguments are set
2676	  it results in null string rather than nothing.
267701-02-02  memory leak problem with local variables in functions fixed.
267801-01-25 +allow arithmetic expressions with float%int and treat them
2679	  as ((int)float)%int rather than as an error.
268001-01-19  read -n1 was not working and has been fixed.
268101-01-17 +ksh now handles the case in which a here document in command
2682	  substitution $() is terminated by the trailing ).  Previously,
2683	  a new-line was needed at the end of the delimiter word.
268401-01-02  A bug in which a KEYBD trap would cause a multi-line token
2685	  to be processed incorrectly has been fixed.
268600-12-10 +Arithmetic integer constants can now have L and U suffices.
268700-12-10  A bug in the processing of arithmetic expressions with compound
2688	  variables when the -n option is on has been fixed.
268900-12-08  A bug in M-f and M-b from emacs mode has been fixed.  This
2690	  bug only occurs when ksh93 is compiled without MULTIBYTE enabled.
269100-11-29  A bug in which jobs -p would yield 0 for background
2692	  jobs run in a script has been fixed.
269300-11-21  A bug in integer arrays in which the number of elements is
2694	  incorrect when the ++ operator is applied to a non-existing
2695	  element has been fixed.  For example, integer x; ((x[3]++)).
269600-11-20  A timing bug in which the shell could reset the terminal
2697	  group to the wrong value in the case that the a new process
2698	  changes the terminal group during startup has been fixed.
2699
270000-10-27  --- Release ksh93k  ---
270100-10-27  Using tab for completion now works only when applied
2702	  after a non-blank character at the end of the current line.
2703	  In other case a tab is inserted.
270400-10-27  A bug in the emacs edit mode for ^X^E has been fixed.
2705	  The ^X^E sequence is supposed to invoke the full editor
2706	  on the current command.
270700-10-18  A bug in which expansions of the form ${var//pattern/string}
2708	  did not work correctly when pattern was '/' or "/" has
2709	  been fixed.
271000-10-18 +The output format for indexed arrays in compound variables
2711	  has been modified so that it can be used as input.
271200-10-18  Assignments with name references (typeset -n) will now
2713	  implicitly unreference an existing name reference.
271400-10-17  A bug the += append operator when a single array element
2715	  is appended to a variable that is not an array has been fixed.
271600-10-16  A bug in which the SIGCONT signal was being sent to
2717	  each process will kill -0 or kill -n 0 has been fixed.
271800-10-12 +The arithmetic evaluation portion has been rewritten to
2719	  perform a number of optimizations.
272000-10-10  A bug in which name prefix matching ${!name.*} was not
2721	  checking name to see if it was a name reference has been fixed.
272200-09-26  A bug in the multibyte version in which the width of for
2723	  non-printing characters was not correct has been fixed.
272400-09-12 +Made changes to get multibyte editing work on UWIN for windows
272500-09-12  A bug in which multibyte characters would be displayed incorrectly
2726	  has been fixed.
272700-08-08  Removed build dependency on iswprint() and iswalph().
272800-07-20  In some cases the read builtin would read more than a single
2729	  line from a pipe on standard input and therefore leave the seek
2730	  position in the wrong location.
273100-07-05 +If the directory / is on the path, a / will not be inserted
2732	  between the directory and the file name during path searching
2733	  to avoid searching // for systems that treat this specially.
273400-06-26  A bug in which on rare occasions wait could return before all
2735	  jobs have completed has been fixed.
273600-06-21  A bug in which backspace did not work correctly during the
2737	  R replace directive in vi-mode has been fixed.
273800-06-12 +Added variable name completion/expansion/listing  to the set of
2739	  completions.  Variable name completions begin with $ or "$ followed
2740	  by a letter.
274100-05-09  --- Release ksh93j  ---
274200-05-09  Modified command substitution to avoid using /tmp files when
2743          run on read-only file systems.
274400-04-17 +Modified printf to handle '%..Xc' and '%..Xs' options where X
2745	  is not an alpha character.  Previous versions core dumped with this.
274600-04-10 +Changes to multibyte editing code were made to use standard
2747	  ISO C functions rather than methods devised before the standard.
274800-04-09  Add %H options to printf to output strings with <"'&\t> properly
2749	  converted for use in HTML and XML documents.
275000-04-07 +Modified getopts builtin to handle \f...\f in usage string
2751	  by invoking specified function.
275200-04-04  Added self generating man pages for bg, fc, fg, disown, jobs,
2753	  hist, let, ., and ulimit.
275400-03-30 +The append operator += has been added and can be used
2755	  for all assignments, strings, arrays, and compound variables.
275600-03-30 +Code was modified in several places to support automatic
2757	  generation of C locale dictionaries.
275800-03-28  A bug in which the set and trap commands invoked with --name
2759	  type arguments would terminate the invoking script  has
2760	  been fixed.
276100-03-27  A bug in which the library path variable was not updated
2762	  correctly on some systems as described in the 'g' point
2763	  release has been fixed.
276400-03-07  printf now returns a non-zero exit status when one of
2765          its arguments cannot be converted to the given type.
276600-03-05  The return value and error message for a command that
2767          was found on the path but was not executable was set
2768          incorrectly.
276900-03-05  A prototype for ioctl() was removed from the vi edit mode.
2770
277100-01-28  --- Release ksh93i  ---
277200-01-28 +Most of the built-in commands and ksh itself are now
2773          self documenting.  Running command --man will produce
2774          screen output.  Running command --html produces the
2775          man page in html format.
277600-01-28 +The getopts builtin can process command description
2777          strings to produce man pages.
277800-01-28  A bug in which a script could terminate when getopts
2779          encountered an error when invoked inside a function
2780          has been fixed.
278100-01-28  When a symbolic link was specified as the name of
2782          the script to invoke by name, the value of $0 was
2783          set to the real file name rather than the link name
2784          in some cases and this has been fixed.
278500-01-28  A bug in which the precision given as an argument
2786	  to printf was not working has been fixed.
2787
278899-03-31  --- Release ksh93h  ---
278999-03-31 +The PATH search algorithm has been modified to look
2790	  for a file named .fpath in each bin directory and if
2791	  found, to search for functions in this directory if
2792	  it cannot find the command in that directory.
279399-03-31 +When performing pathname expansion, the shell checks
2794	  to see whether each directory it reads is case sensitive
2795	  or not, and performs the matching accordingly.
279699-03-31 +The %T format for printing formatted date/time.
279799-03-31 +The emacs and vi modes now handle arrow keys when
2798          they use standard ANSI escape sequences.
279999-03-31 +The TAB key can be used for completion in emacs and viraw mode.
280099-03-31  A bug in setting .sh.editchar during the KEYBD trap
2801	  for the MULTIBYTE option was fixed in release ksh93h.
280299-03-31  A bug in shcomp for compilation of unary operators with [[...]]
2803	  has been fixed.
280499-03-31  A bug in which the value of $? was changed when executing
2805	  a keyboard trap has been fixed.
280699-03-31  The handling of SIGCHLD has been changed so that the
2807	  trap is not triggered while executing trap commands
2808	  to avoid recursive trap calls.
280999-03-31  A bug in which a local variable in a function declared readonly
2810	  would generated an error when the function went out of
2811	  scope has been fixed.
281299-03-31  A bug in which \<new_line> entered from the keyboard
2813	  with the KEYBD trap enabled has been fixed.
281499-03-31  The error message for a misplaced ((, for example print ((3),
2815	  was often garbled and has been fixed.
281699-03-31  A bug in the KEYBD trap in which escape sequences of the form
2817	  <ESC>[#~ were not being handled as a unit has been fixed.
281899-03-31  A bug in which ksh would consider expressions like [[ (a) ]]
2819	  as syntax errors has been fixed.
282099-03-31  A function defined as foo() without a function body
2821	  was not reported as a syntax error.
282299-03-31  A bug in which ksh could run out of file descriptors when
2823	  a stream was repeatedly opened with exec and read from
2824	  has been fixed.
2825
282698-04-30  --- Release ksh93g  ---
282798-04-30 +The pipefail option has been added.  With pipefail
2828	  enabled, a pipeline will not complete until all
2829	  commands are complete, and the return value will
2830	  be that of the last command to fail, or zero if
2831	  all complete successfully.
283298-04-30 +The name-value pair library uses the cdt library rather
2833	  than the hash library.  This change should be transparent
2834	  to applications.
283598-04-30 +On the U/WIN version for Window 95 and Windows NT,
2836          when a directory beginning with a letter followed by
2837          a colon is given to cd, it is assumed to be an absolute
2838          directory
283998-04-30 +When an executable is found on a given path,
2840	  the appropriate library path variable is prepended
2841	  with a corresponding library directory.
284298-04-30  A bug in which a name reference could be created to
2843	  itself and later cause the shell to get into an infinite
2844	  loop has been fixed.
284598-04-30  A bug in shcomp relating to compound variables was fixed.
284698-04-30  A bug introduced in ksh93e in which leading 0's in -Z
2847	  fields caused the value to be treated as octal for arithmetic
2848	  evaluation has been fixed.
284998-04-30  A bug when a name reference with a shorter name than
2850          the variable it references was the subject of a compound
2851	  assignment has been fixed.
285298-04-30  A bug which in which assignment to array variables in
2853	  a subshell could effect the parent shell has been
2854	  fixed.
285598-04-30  read name?prompt was putting a 0 byte at the end of the
2856	  prompt on standard error.
285798-04-30  A bug in [[ string1 > string2 ]] when ksh was run with -x
2858	  has been fixed.
285998-04-30  A bug in which the escape character was not processed
2860	  correctly inside {...} when brace expansion is enabled
2861	  has been fixed, for example {\$foo}.
286298-04-30  A bug in line continuation in here-documents has been
2863	  fixed.
286498-04-30  The default base when not specified with typeset -i is
2865	  10 in accordance with the documentation.  Previously,
2866	  the value was determined by the first assignment.
286798-04-30  A parsing bug in which a # preceded alphanumeric
2868	  characters inside a command substitution caused
2869	  a syntax error to be reported has been fixed.
287098-04-30  A bug in which a decimal constant represented as 10#ddd
2871	  where ddd was more than five digits generated a syntax
2872	  error has been fixed.
287398-04-30  A bug in here document expansion in which ${...} expansions
2874	  were split across buffer boundaries has been fixed.
287598-04-30 +The sh_fun() function now takes third argument which
2876	  is an argument list for the invoked discipline function
2877	  or built-in.
287898-04-30 +A callback function can be installed which will give
2879          notification of file duplications and file closes.
288098-04-30  When ksh is compiled on systems that do not use fork()
2881	  current option settings where not propagated to sub-shells.
2882
288397-06-30  --- Release ksh93f  ---
288497-06-30 +Hostnames in addition to host addresses can be given in
2885	  /dev/tcp/host/port virtual file names.
288697-06-30  File name completion and expansion now quotes special
2887	  characters in file names from both emacs and vi edit modes.
288897-06-30  An empty for list behave like a for list with null expansions.
2889	  It produces a warning message with sh -n.
289097-06-30 +The code has been modified to work with EBCDIC as well as ASCII.
289197-06-30  A bug which would cause the secondary prompt to be
2892	  displayed when a user entered a literal carriage
2893	  return has been fixed.
289497-06-30  A bug which caused ksh read -s name to core dump was
2895	  fixed.
289697-06-30  A bug with the expansion of \} and \] inside double
2897	  quoted strings that also contained variable expansions
2898	  has been fixed
289997-06-30  Changes in the ksh93e point release caused autoload
2900	  functions invoked from within command substitution
2901	  to fail.  This has been fixed.
290297-06-30  A bug in the processing of here-documents that could
2903	  prevent variable substitution to occur after $(...) command
2904	  substitution for long here documents has been fixed.
290597-06-30  A bug caused by a race condition that could cause SIGTERM
2906	  to be ignored by a child process has been fixed.
290797-06-30  A bug which prevented the startup of a coprocess immediately
2908	  after killing a running coprocess has been fixed.
290997-06-30  ulimit foobar, where foobar is not an arithmetic
2910	  expression, now gives an error message as it did with ksh88
2911	  instead of setting the file size limit to 0.
291297-06-30  A bug which could cause an interactive shell to terminate when
2913	  the last process of a pipeline was a POSIX function was fixed.
291497-06-30  A bug which could cause command substitution of a shell script
2915	  to core dump has been fixed.
291697-06-30  A security hole was fixed in suid_exec.
291797-06-30  Arithmetic functions such as pow() that take more than
2918	  one argument, did not work if arguments other than the
2919	  first contained parenthesized sub-expression.
292097-06-30  The error message from a script containing an incomplete
2921	  arithmetic expression has been corrected.
292297-06-30  A bug which caused a core dump on some machines when
2923	  the value of a name reference contained a positional
2924	  parameter and the name reference was not defined inside
2925	  a function has been fixed.
292697-06-30  Arithmetic expressions now correctly handle hexadecimal
2927	  constants.
292897-06-30  A bug in which integer variables could be expanded
2929	  with a leading 10# when declared with typeset -i
2930	  multiple times has been corrected.
293197-06-30  A bug in which IFS wasn't correctly restored when
2932	  set within command substitution has been fixed.
293397-06-30  The _ character is now considered as part of a word
2934	  with the M-f and M-b emacs directives as it was in ksh88.
293597-06-30  A bug in brace pattern expansions that caused expressions
2936          such as {foo\,bar,bam} to expand incorrectly have been fixed.
2937
2938
293996-07-31  --- Release ksh93e  ---
294096-07-31 +The math functions, atan2, hypot, fmod, and pow were added.
294196-07-31 +When a shared library is loaded, if the function lib_init()
2942	  is defined in the library, it is invoked the first time that
2943	  the library is loaded with builtin -f library.
294496-07-31  The k-shell information abstraction database option, KIA,
2945          has been revamped.
294696-07-31  Empty command substitutions of the form $() now work.
2947	  whence -v foo now gives the correct result after calling
2948	  builtin -d foo.
294996-07-31  A bug in right to left arithmetic assignment for which
2950	  the arithmetic expression (( y = x = 1.5 )) did not
2951	  yield 1 for y when x was declared typeset -i was fixed.
295296-07-31  printf has been fixed to handle format  containing \0
2953	  and/or \0145 correctly.  In addition, characters following
2954	  %b in the format string are no longer displayed when
2955	  the operand contains \c.
295696-07-31  A bug in printf that could cause the %E format to
2957	  produce unnormalized results has been fixed.
295896-07-31  A bug which causes some arithmetic expressions to be
2959	  incorrectly evaluated as integer expressions rather
2960	  that floating point has been fixed.
296196-07-31  Functions defined inside a subshell no longer remain
2962	  defined when the subshell completes.
296396-07-31  The error message from sh -c ';echo foo' has been
2964	  corrected.
296596-07-31  The format for umask -S has been changed to agree
2966	  with the specification in the POSIX standard.
296796-07-31  A bug that caused side effects in subscript evaluation
2968	  when tracing was enabled for subscripts using ++ or --
2969	  has been fixed.
297096-07-31  To conform to the Posix standard getopts has been changed
2971	  so that the option char is set to ? when it returns with
2972	  a non-zero exit status.
297396-07-31  The handling of \} inside ${name...} has been fixed so
2974	  that the \ quotes the }.
297596-07-31  A bug that caused the read builtin to resume execution
2976	  after processing a trap has been fixed.
297796-07-31  [[ -s file ]] has been fixed so that if file is open
2978	  by ksh, it is flushed first.
297996-07-31  In some cases attributes and sizes for non exported
2980	  variables weren't being reset before running a script.
298196-07-31  The value of TMOUT was affected by changes make to
2982	  it in a subshell.
298396-07-31  The jobs command did not reflect changes make by
2984	  sending the CONT signal to a command.
298596-07-31  The error message for ksh -o unknown was incorrect.
298696-07-31  Functions invoked as name=value name, did not use
2987	  values from the calling scope when evaluating value.
298896-07-31  A bug in which the shell would reexecute previously
2989	  executed code when a shell script or coprocess was
2990	  run in the background has been fixed.
299196-07-31  A bug in which an empty here-document would leave
2992	  a file descriptor open has been fixed.
299396-07-31  A bug in which $(set -A array ...) would leave a
2994	  side effect has been fixed.
299596-07-31  A discipline function for a global variable defined
2996	  within a function defined with the function keyword,
2997	  incorrectly created a local variable of the same name
2998	  and applied the discipline to it.
2999
300095-08-28  --- Release ksh93d  ---
300195-08-28  The \ character was not handled correctly in replacement
3002	  patterns with ${x/pattern/replace}.
300395-08-28  A bug with read in which the line did not end with
3004	  a new-line has been fixed.
300595-08-28  A bug in file name generation which sometimes
3006	  appended a . for filenames that ended in / has
3007	  been fixed.
300895-08-28 +If a process is waited for after a status has
3009	  been returned by a previous wait, wait now
3010	  returns 127.
301195-08-28  A bug with hist (fc) -e which prevented a command
3012	  to re-executed after it had been edited has been fixed.
301395-08-28  A bug which prevented quoting from removing the meaning
3014	  of unary test operators has been fixed.
301595-08-28  A bug with typeahead and KEYBOARD traps with the
3016          MULTIBYTE option set has been fixed.
301795-08-28 +Builtin functions can take a third argument which is
3018          a void*.
301995-08-28  The nv_scan() function can restrict the scope of a walk
3020          to the top scope.
3021
302295-04-31  --- Release ksh93c  ---
302395-04-31  The expansion of "$@" was incorrect when $1 was the null
3024	  string.
302595-04-31  A bug which could incorrectly report a syntax error in
3026	  a backquoted expression when a $ was preceded by \\
3027	  has been fixed.
302895-04-31  A bug which prevented the shell from exiting after
3029	  reporting an error when failing to open a script
3030	  has been fixed.
303195-04-31  A bug that could lead to memory corruption when a
3032	  large here document that required parameter or command
3033	  substitution was expanded has been fixed.
303495-04-31  A bug that could cause a core dump on some systems
3035	  after ksh detected an error when reading a function
3036	  has been fixed.
303795-04-31  A bug which could cause a coprocess to hang when
3038	  reading from a process that has terminated has been fixed.
303995-04-31  A bug which caused a script to terminate when set -e
3040	  was on and the first command of and && or || list
3041	  failed has been fixed.
304295-04-31  A bug with here documents inside $(...) when the delimiter
3043	  word is an identifier has been fixed.
304495-04-31  A bug which caused $0 to display the wrong value when
3045	  a script was invoked as an argument to the . command
3046	  and the eval command has been fixed.
304795-04-31  A bug that could cause the built-in sleep to hang
3048	  has been fixed.
304995-04-31  A bug introduces in 12/28/93b which caused the backslash
3050	  to be removed when it was followed by digit inside double
3051	  quotes in some instances has been fixed.
305295-04-31  A bug which could cause a core dump if ksh was invoked with
3053	  standard input closed has been fixed.
305495-04-31  A bug which could cause a core dump if typeset -A was
3055	  specified for an existing variable has been fixed.
305695-04-31  Variables that were unset but had attributes such as readonly
3057	  and export were not listed with readonly, export and typeset.
305895-04-31  Several problems with signals have been fixed.
305995-04-31  A bug which prevented ulimit -t from working has been fixed.
3060	  Also, a bug in which failed ulimits could cause a core dump
3061	  has also been fixed.
306295-04-31  A bug in expansion of the form ${name/#pattern/string} and
3063	  ${name/%pattern/string} has been fixed.
306495-04-31  A bug which caused read -r on a line that contained only
3065	  blanks to get a non-null value has been fixed.
306695-04-31  A bug introduced in the 'a' point release in which
3067	  ${x='\\'} expanded to \ when x was unset has been fixed.
306895-04-31  A bug which prevented a trap on EXIT from being executed
3069	  when the last command in a script was a function invocation
3070	  has been fixed.
307195-04-31  A bug which caused an interactive shell ignore input when
3072	  standard error was redirected to a file with exec,
3073	  and then restored with exec 2>&1 has been fixed.
307495-04-31  An interactive shell turns on monitor mode even when
3075	  standard error has been redirected to a file.
307695-04-31  A bug which could cause standard input to be incorrectly
3077	  positioned for the last command of a script has been fixed.
307895-04-31  A bug in the edit modes which allowed walking back in
3079	  the history file for more than HISTSIZE commands has
3080	  been fixed.
308195-04-31  A bug which could cause a core dump if variable TMPDIR was
3082	  changed between two command substitutions has been fixed.
308395-04-31. A bug which prevented a trap on EXIT from being cleared
3084	  has been fixed.
308595-04-31  A bug fixed for the v directive in vi MULTIBYTE has been
3086          fixed.
308795-04-31  Code to for IFS handling of multibyte characters has
3088          been added.
308995-04-31  The displaying of multibyte strings in export, readonly,
3090          typeset, and execution traces has been fixed.
309195-04-31  Variables inside functions are now statically scoped.
3092	  The previous behavior was never documented.
309395-04-31  Variables inside functions are now statically scoped.
3094          The previous behavior was never documented.
309595-04-31  A few changes have been made to the name-value library
3096          that affect built-ins that use disciplines.  The
3097          changes allow disciplines to be shared by variables
3098          and should make it possible to add new disciplines
3099          without recompilation.
310095-04-31 +The name-value library interface has undergone significant
3101          change for this revision.  See the new nval.3 man page.
3102
310394-12-31  --- Release ksh93b  ---
310494-12-31 +Variables inside functions are now statically scoped.
3105          The previous behavior was never documented.
310694-12-31 +If IFS contains two consecutive identical characters belonging
3107	  to the [:space:] class, then this character is treated as
3108	  a non-space delimiter so that each instance will delimit
3109	  a field.  For example, IFS=$'\t\t' will cause two consecutive
3110	  tabs to delimit a null field.
311194-12-31 +The getopts command has a -a name option that specifies a
3112	  name that will be used for usage messages.
311394-12-31  A bug which caused unset RANDOM to dump core has been
3114	  fixed.
311594-12-31  A bug which prevented return for terminating a profile
3116	  or ENV file has been fixed.
311794-12-31  A bug which prevented standard input from being
3118	  directed to /dev/null for background jobs when
3119	  monitor mode was turned off has been fixed.
312094-12-31  Statements of the form typeset -options var[expr]=value
3121	  did not perform substitutions on expr as expected.
312294-12-31  A bug which prevented the shell from sending a HUP
3123	  signal to some background jobs that were not disowned
3124	  has been fixed.
312594-12-31  A bug which allowed a script to trap signals that are
3126	  ignored at the time that the shell was invoked by exec
3127	  has been fixed.
312894-12-31  A bug which could cause a core dump when a discipline
3129	  function was unset within a discipline was fixed.
313094-12-31  The typeset builtin now accepts a first argument of
3131	 + or - for compatibility with ksh88.
313294-12-31  For compatibility with ksh88, the results of expansions
3133	  of command arguments will treat the extended character
3134	  match characters ()|& as ordinary characters.
313594-12-31  A bug which caused read to fail on a file that was
3136	  open for read/write with <> when the first operation
3137	  was print or printf has been fixed.
313894-12-31  When a job is suspended, it is put on the top of
3139	  the job list as required by the POSIX standard.
314094-12-31  The value of OPTARG when an option that required
3141	  an argument but didn't have one was incorrect in the
3142	  case the the option string began with a :.
314394-12-31  A bug which caused the terminal to get into a bad
3144	  state with some KEYBD traps in vi-mode has been fixed.
314594-12-31  A bug which caused an invalid trap to cause a script
3146	  to terminate, rather than just return an error, has
3147	  been fixed.
314894-12-31  Backreferencing sub-expressions in patterns and replacement
3149	  strings now works.
315094-12-31  A bug in chmod which caused the -R option to fail has
3151	  been fixed.
315294-12-31 +More signal names have been added for Solaris
3153
315494-06-30  --- Release ksh93a  ---
315594-06-30  An expansion bug which causes portions of a word after
3156	  a $((...)) expansion that contains a nested $var expansion
3157	  to be lost has been fixed.
315894-06-30  A bug that caused a core dump when a script that did not
3159	  have PWD set and did a cd inside command substitution
3160	  has been fixed.
316194-06-30  A bug which caused a core dump on some machines when
3162	  the LANG variable was assigned to has been fixed.
316394-06-30  A bug which incorrectly handled set disciplines that
3164	  performed arithmetic evaluation when the discipline
3165	  was called from the arithmetic evaluator has been fixed.
316694-06-30  A bug caused by an EXIT trap inside a function that
3167	  was executed in a subshell was fixed.
316894-06-30  If foo is a function, and not a program, then command foo
3169	  now reports that foo isn't found rather than invoking foo.
317094-06-30  The previous version incorrectly listed -A as an
3171	  invocation option.  The -A option is only for set.
317294-06-30  A bug was fixed which caused ksh to loop when execution trace
3173	  was enabled and the PS4 prompt required command substitution.
317494-06-30  A bug which could cause the job control switch character
3175	  to be disabled when a script that enabled monitor mode
3176	  terminated was fixed.
317794-06-30  A bug in the macro expansion global replacement operator //,
3178	  when the pattern began with a [ or +( has been fixed.
317994-06-30  A bug which prevented ~ expansion from occurring when
3180	  it was terminated with a colon inside an assignment
3181	  has been fixed.
318294-06-30  A bug in the dot command which prevented autoload functions
3183	  from working has been fixed.
318494-06-30  A bug which caused a variable to be unset if the
3185	  its value were expanded inside a set discipline has
3186	  been fixed.
318794-06-30  Whence -a now longer reports that a defined function
3188	  is undefined.
318994-06-30  A bug on some systems in which $0 would be incorrect
3190	  in scripts invoked by name has been fixed.
319194-06-30  Here documents with an empty body now work.
319294-06-30  A bug which disabled argument passing and resetting
3193	  of options for a script invoked by name inside a
3194	  function has been fixed.
319594-06-30  A bug in which an EXIT trap set the caller of a function
3196	  would be executed if a command called inside a function
3197	  was not found has been fixed.
319894-06-30  A bug which allowed a script to trap signals that are
3199	  ignored at the time that the shell was invoked has
3200	  been fixed.
320194-06-30  A bug which caused 2<&1- when applied to a shell built-in
3202	  to leave standard input closed has been fixed.
320394-06-30  A bug which caused the shell to incorrectly parse
3204	  $() command substitutions with nested case statements
3205	  has been fixed.
3206
3207
3208:::::::: pax ::::::::
3209
321012-05-25 file.c: #include <tm.h> for tmdate() prototype
321112-05-14 pax.c: use Format_t.match to eliminate explicit format references
321212-05-14 pax.c: add xz format -- requires local system standalone xz command
321312-05-07 tar.sh: fix file/option quoting, --show
321412-05-04 tar.sh: snarf update from Brian Russell
321512-04-20 pax.c: verify that --maxout > --blocksize (else it recurses on newio()!)
321612-04-17 pax.c,copy.c: fix multiple prompt for --write --yes
321712-04-17 misc.c: --yes accepts { 'y' 'Y' '1' }, { 'q' 'Q' '-' } => remaining no
321811-06-21 pax.c,copy.c,file.c: add --filter option mtime=<date-string>
321911-03-17 copy.c: fix bug that didn't list special files for --verbose
322011-02-11 pax-tnef.c: handle "" member names -- really?
322111-02-02 pax-pds.c: ident now requires at least one dir entry
322210-10-10 file.c: don't prune state.update dirs based on time -- doh
322310-10-04 pax.c,misc.c: fix --meter off-by-one bugs for long paths
322410-10-04 pax.c: add #updated files to --update --verbose summary
322510-10-04 pax.c: --meter implies --verbose summary
322610-09-01 pax.c: RE errors => exit(2)
322710-08-27 add -U, --different to update files with different <mtime,size,mode>
322810-08-22 format.c: archive update requires (ap->io->mode & O_RDWR)
322910-08-11 use conformance("standard",0) test
323010-08-09 fix extended header size key precedence/performance
323110-08-09 use { SEEK_DATA SEEK_HOLE } for -rw if available
323210-08-08 disable SOKTYPE
323310-06-21 align { --append --update } with posix
323410-06-14 ug+s only for -p [eo]
323510-06-14 atime in archive by default for formats that support it
323610-06-14 add state.resetacctime to separate -t from state.acctime
323710-06-12 fix --exact to list matched directory hierarchies
323810-06-01 sync with ast api 20100601
323910-01-22 pax.c: fix -rw to 1 char dir name that dropped '/' separator
324009-09-09 ax-tar.c: handle gnu tar octal overflow extensions for all octal fields
324108-12-31 pax.c,pax-vczip.c: add vczip compression format
324208-05-08 pax.tst: handle systems with privileged chmod +t / mkfifo
324308-05-01 pax-tar.c: handle sfsprintf() '\0'
324407-12-11 delta2patch.sh: drop pax -v, add pax --nosummary
324507-12-06 delta2patch.sh: add
324607-09-21 format.c: add sumprint() default scale arg
324707-05-01 pax-tar.c,options.c: fix pax extended header for >=2**32 size
324807-03-14 pax-tnef.c: swap op == 3 for all arch!
324906-10-31 delta.c,format.c: fix ar=>ar delta bug that skipped data twice
325006-10-11 add sfstropen()/sfstruse() error checks
325106-09-27 pax.tst: fix uid etc. tests to use --listformat -- duh
325206-09-12 delta.c: delta for any X_IPERM st_mode changes
325306-06-07 pax: add -U --delta.update to update only delta members
325405-12-14 pax: fix --filter to work for --read and expand command %(...)
325505-06-07 format.c: fix inter volume fill logic
325605-05-28 pax: improve "junk data after volume" checks
325705-05-22 pax: fix --append for the formats that can handle it
325805-05-18 pax-flash.c: add solaris flash embedded archive format read
325905-03-19 options.c: -l == --link (not --local) per posix
326005-02-08 misc.c: fix interaction between delta and --meter
326105-02-07 delta.c,pax.h: don't output delta when src==tar -- duh
326204-12-25 bio.c: fix (*putheader)() return value logic, especially for ENOSPACE
326304-12-08 listformat now handles high resolution time
326404-12-01 tv.h,tv.c,features/tv move to libast
326504-09-25 bio.c: fix ap->io->count for skipped data -- wow
3266	 pax-rpm.c: fix header padding logic
326704-09-01 bio.c: fix bread() seek logic
326804-08-11 pax.c,options.h,options.c: add -C,--chmod=mode to control header modes
326904-08-05 bio.c: fix bread() pointer arith 64 bit assumption (pax#15)
327004-08-01 delta.c: fix checksum 32-bit logic (pax#11) (testpax#01)
327104-07-19 delta.c,format.c,pax-tar.c: { O_RDONLY O_WRONLY O_RDWR } are values
327204-03-17 pax-tar.c: add tar_putepilogue to *all* tar variants
3273	 format.h: let pax-tar.c determine tar variant order
3274	 bio.c: fix a few printf format long long mismatches: %ld => %I*d
3275	 format.c: map ident buffer CC_ASCII => CC_NATIVE
327604-02-29 format.c: drop ap->format=0 for possible deltaverify()
3277	 format.c: handle CC_ASCII=>CC_NATIVE getprologue() header translation
3278	 options.h,options.c: add --forceconvert to force --from
327904-02-25 pax.c: regcomp REG_SHELL => REG_LEFT|REG_RIGHT
328004-02-24 pax.c: add --action
3281	 copy.c: fix file list peek premature '\n' => '\0' bug
3282	 pax.tst: add --action,--checksum,--filter,--install tests
328304-02-21 file.c: fix VPATH state.pwd corruption
328404-02-14 add -F --fsync to call fsync(2) for each copied file
328504-01-27 bio.c: fix bget() buffer size alignment/mismatch overflow
328604-01-24 pax-*.c: use paxlib.h interfaces
328704-01-03 pax-cab.c: move to paxlib/cab as standalone plugin
3288	 pax-calib.c: move to paxlib/calib as standalone plugin
328904-01-01 add --passphrase=passphrase, -E
329003-12-24 pax-zip.c: move to paxlib/zip as standalone plugin
329103-12-18 paxlib.h: add paxpart(), link with -lcodex for paxlib plugins
329203-12-05 pax-zip.c: fix EXT header logic
329303-12-01 rename OPT_delta_size to OPT_uncompressed: !=0 => compressed
3294	 list compression % in delta op field
329503-11-25 paxlib.h: add external format dll interface
329603-11-20 pax-calib.c: add file suffix heuristics
329703-11-19 pax-calib.c: convert ibm -INC [edit comment] to COPY [REPLACING]
3298         pax-calib.c: handle line size > 80
329903-11-11 pax-pds.c: add mvs pds listing
330003-11-06 regression tests finally pass after Format_t method switch
330103-10-31 Format_t converted to true method
330203-10-20 initial readonly ca-librarian support
330303-10-01 add pax delta format -- groundwork for vcdiff deltas
330403-09-23 pax.tst: change test file names for same ascii/ebcdic sort
3305	 pax.c: extended header values with length need no quoting
330603-09-11 default output format now ustar -- should eventually be pax
3307	 format rename: tar=>oldtar, ustar=>ustar|tar
3308	 add --testdate=date regression test hook
3309	 add --uid=id --gid=id
3310	 ascii vs. ebcdic cleanup
331103-09-10 private static cleanup
331203-09-09 xopen sync and { pax ustar } format fixes, <tv.h> interface
331303-06-21 format.c: add ccode conversion check to putheader()
331403-05-28 file.c: fix -vrw directory double list
3315	 update to new <ccode.h> interface
331603-03-05 pax.c: tgz => ustar:gzip, tbz => ustar:bzip
331703-02-28 pax.c: handle a few common -x aliases
331803-01-14 misc.c: fix meter sign overflow for sizeof(off_t)==sizeof(int)
331902-12-13 format.c: fix TNEF bug that did bget(n) for n>buffersize
332002-10-23 misc.c: fix meter buffer overflow
332102-10-20 pax: drop experimental OMF; use ardirlist() to list ar types
3322	 pax: add -t for x/open
332302-10-18 pax: add tar/ustar swap and inter-volume junk block checks
332402-09-09 format.c: handle all 11 octal digits in cpio format size
332502-09-05 file.c: fix chmod() loop at exists=0011 on case ignorant filesystems
332602-08-19 pax: cmd line patterns applied before -i or -s path edits
3327	 pax: add posix -c for --invert
332802-08-06 pax: change --meter to use * instead of non-portable inverse video
332902-07-17 pax: handle gnu tar largefile size extension
333002-06-26 pax: fix regsubexec() edited symlink text buffer clobber
333102-05-24 pax: update to use regsubcomp(),regsubexec()
333202-05-07 pax: use <ardir.h>,-lardir for library archives
333302-04-23 pax: add dos omf library read
333401-12-07 pax: fix --meter to retain paths containing " -- "
333501-12-06 pax: fix --meter to stop at 100% (don't tell coach)
333601-10-20 pax: describe the 4 operation modes in separate paragraphs
333701-10-18 pax: fix --meter for paths containing \f\n\r\v
333801-09-06 pax: add ms tnef (transport neutral encapsulation format) archive read
333901-08-11 pax: fix tar_checksum() w.r.t. CC_NATIVE!=CC_ASCII
334001-06-28 pax: fix --from --to bio logic that sometimes double converted
334101-04-24 pax: --from & --to now associated with archive instead of global state
334201-04-17 pax: --from conversion only done if no control chars in first 256
334301-04-01 pax: fix --intermediate to create missing dirs first
334401-02-27 pax: add lchmod() and lchown() for symlink() restoration
334501-02-08 pax.tst: add -L and -P to symlink edit test
334601-02-07 format.c: fix malloc off-by-one for vdb format read
334701-02-02 file.c: fix duplicate -s map in addlink()
334800-12-20 bio.c: include <sys/ioctl.h> for systems that miss _IOW() etc.
334900-10-31 format.c: handle rpm 4.0 and newer
335000-09-20 copy.c: always allocate state.tmp.lst!
335100-08-31 change paths in delta archive: -rf i -z - -s e -wf o -z - [almost]
335200-08-11 copy.c: drop memalign() call for _std_malloc==1 in libast
3353	 copy.c: save filter path from sfgetr() reset
335400-06-01 pax: fix mime format size by dropping last \r\n
335500-05-26 pax: astconf("CONFORMANCE",0,0)=="standard" inhibits some extensions
3356	 pax: check USTAR file and link name lengths
335700-04-01 pax.tst: export TZ=EST5EDT; new tests should be UCT
335800-03-11 pax: add encapsulated mime format read
3359	 pax: fix vdb block count
336000-02-14 pax: fix hard link read that didn't apply -s edit
3361	 pax: logical|physical filter options
336200-01-04 pax: fix rpm embedded archive hard seek
3363	 pax: --filter implies --nodescend
3364	 pax: add --meter
3365	 pax: handle ms PORTAR '\' => '/' path separator
336699-11-19 pax: try `ratz -c' if `gunzip' not found
336799-11-11 add --checksum, --install, --local, --preserve=s
336899-11-04 fix zip for archives with EXTLOC headers
3369	 don't generate //* file names
337099-10-31 pax: add tgz == tar:gzip, --filter=-
337199-08-11 bio: fix end of medium handling
337299-06-01 restore -T == --test
337399-05-28 pax: add rpm read
337499-05-21 pax: fix -rw umask(0) bug
337599-05-17 pax: fix chmod() delay for ug+s,+t
337699-05-11 nocom: long options
337799-05-09 pax: sfopen(sfstdin,0,"rt") for input file list
337899-05-01 pax: state.xdev => FTW_MOUNT!!
337999-04-01 pax: fix Integral_t for sizeof(long)==8
3380	 pax: fix ]] in optget usage
338199-03-17 pax: better st_mode preservation
338299-03-01 pax: fix dirprefix() prune to work in all cases
3383	 pax: add savepath() to handle >PATH_MAX paths
338499-02-06 pax: update to new optget()
338599-01-11 pax: add bzip2 compression support
338698-10-01 pax: fix -rw hard link bug
3387	 pax: fix -o preserve=* option.level inconsistencies
338898-08-11 cpio.sh: fix with getopts
3389	 pax: increase -rw default buffer size
3390	 pax: use REG_DELIMITED to parse -s
339198-04-01 fix tar delta bug that set st_size=0 before consuming delta head/tail
3392	 pax -<flag> '?' lists help info for flag
3393	 fix -rw bugs introduced by recent delta fixes
3394	 testpax: add regression tests
3395	 fileout: add EIO memalign fallback to track sgi bug
339698-03-19 fix tar delta epilogue check
3397	 fix delta pass checks
3398	 fix off_t vs. file size mismatches
339998-03-17 umask(0) only if -o preserve=* in effect
3400	 add File_t.ro to mark readonly files/paths
340198-02-14 add -o intermediate to copy output to intermediate before commit
340298-01-23 use %I#d scanf format to get off_t right
340398-01-11 -K == -o keepgoing
3404	 -x format on read accepts that format only (useful with -o keepgoing)
340597-12-07 add 4 NULs to work around gunzip bug that peeks beyond EOF
340697-11-11 use PROC_FD_PARENT to let procopen() close parent fd
340797-10-31 cab list works; anyone have LZX or QUANTUM decompress code?
340897-09-22 fix vdb format write
340997-08-11 fix omitted missdir() call
341097-07-17 -r attempts chmod u+w along with missdir and remove
3411	 -rl preserves existing links if possible
3412	 beginnings of cab file read
341397-05-09 fix putepilogue() with off_t boundary
341496-12-25 zip archive header magic fix
3415	 use MTIOCGETBLKINFO to determine default tape blocksize
3416	 -o eom=!command uses $(command read|write part [file]) for next file
3417	 -s ',.*,-,' cats to stdout
3418	 -x pax support for >2GB file size
341996-11-28 off64_t tweaks
3420	 drop -r -w -x order dependency
3421	 undo ccmaps() in bunread()
3422	 add explicit O_RDONLY checks (!= 0 on some systems)
342396-10-11 change to <ccode.h> from mem[ae]to[ae]()
342496-08-11 add -o to={ascii|ebcdic} -o from={ascii|ebcdic} from mvs
342596-02-29 enable -rw setfile() -- why was it disabled in the first place?
3426	 fix stdin file list peek bug that dropped leading files
342796-02-09 handle zip archives on input
342896-01-18 AT&T Research now
3429	 switch to <regex.h>
343095-11-24 don't check for compressed format if already uncompressing
343195-11-18 ignore empty file list lines
343295-10-31 fix and compensate for cpio header hard link size bug
343395-10-11 drop "blocking ignored in pass mode" message
3434	 aschk symlink data need not have trailing '\0'
343595-09-01 fix nocom \ handling
343695-08-11 builtin nocom for -o filter=nocomment
3437	 more delta tracing
3438	 vd02 delta algorithm
343995-07-17 fix -w output to stdout initialization bug
3440	 fix stdin file list peek bug that dropped trailing files
344195-05-09 don't check member count unless its really a trailer
3442	 sfkeyprintf lookup string arg is now the format conversion character
3443	 initialize output archive for -rw to stdout archive
3444	 misc.c had putc() and fgets()!
3445	 unused var cleanup
3446	 add return to listprintf()
3447	 fix delta pass missing dir fd bug
3448	 fix dirprefix for /
3449	 add bax.sh as an *example*
345095-04-01 with proto va_start() must come before any arg references
3451	 fix delta bug that failed to mark emitted or skipped members
3452	 allow -z for patch deltas
3453	 be sure to set ap->format before binit()
3454	 fix ordering bug that botched most deltas!
3455	 use file.name (after -s maps) rather than file.path in delta hash
3456	 fix bget() bug that skipped checksum
345795-03-19 first round with POSIX 1003.2 1995
3458	 handle file holes on input
3459	 delta header contains member index and trailer size
3460	 delta trailer contains member checksum
3461	 delta epilogue contains member count
346295-03-01 internal redesign using Archive_t handles instead of global state
3463	 -o ordered (-O) allows single pass through base
346495-02-14 make -u work with VPATH
3465	 -x composes gzip,compress,delta,delta88,ignore,patch with real formats
3466	 -x gzip:tar, -x gzip,tar, -x 'gzip tar' accepted
3467	 -x delta is equivalent to -z -
3468	 -o delta deleted
3469	 fix OPT_owner null dereference
3470	 fix archive pass bug that didn't update DELTA_create members
347195-01-19 detect compress and gzip on input
3472	 add -f -z grouping with -r -w to support -r -f -z -w -f -z
3473	 fix a few compress/delta ineraction bugs
3474	 add -t s[#]k[#] to skip all [#] and/or keep all [#] tape volumes
3475	 use new <align.h> ALIGN_ identifiers
347695-01-11 add s option to -s to stop on success
3477	 add delta 94 (vdelta)
3478	 add long option names
3479	 deprecate most flag options
3480	 DELTA_TEMP <64K avoids temp file
3481	 add -o delta=patch for patch archives
348294-12-25 add lib/pax/*.fmt args files for unknown formats
3483	 fix mknod() calls to use the right file type!
348494-11-11 fix ar out of phase warning
348594-08-11 add -Rh'header' and -Rt'trailer' for vdb write
3486	 -e now works for -rw
348793-08-11 add vdb `virtual database' r/w format
348893-06-11 fix bug that didn't output non-regular files
3489	 -w now uses FTW_POST to preserve dir modes
349093-04-01 handle PORTAR long member name table
349192-04-01 copy all 0 length files out regardless of read permission
349291-08-11 add check for garbage after end tar implementation bug
349390-10-01 add mips ar format out of date check
349490-08-11 header/trailer alignment now table driven
349590-07-20 fix binary output bug that set header size and time to 1
349690-06-01 fix misc delta compression bugs
349790-05-01 fix DELTA_create bug that did not check COMPRESS
349890-03-28 bump regular output block size to 8k
349990-02-11 delta changes held off by #if new_delta_format until new libdelta
3500	 base archive checksums incompatible with previous versions
350190-02-06 fix newio() bug that looped when write() returned 0
350290-01-25 add proposed posix 1003.1b archive/interchange format
3503	 tune buffering
3504	 change -R option for general record support
3505	 generalize delta id file name -- incompatible with old format
3506	 prepare for new libdelta and subsequent incompatibilities
350789-12-01 add self-delta support, delete -A option (one algorithm with versions)
350889-11-18 fix dir mode restoration bug
350989-11-11 fix delta update with older file
351089-10-31 add portarch and randarch readonly object formats
351189-10-11 allow -f with -rwz
351289-10-01 add -Bmaxblocks and -C to match latest tar/cpio extensions
351389-08-22 align read() buffers to IOALIGN
351489-07-27 add EFBIG & EDQUOT checks to newio()
351589-07-04 fix cpio binary header mtime and size swab bug
3516	 fix -rw bug that makes it work now!
3517	 redo file post processing restoration
351889-05-11 handle GNU-tar USTAR format botch
3519	 missing intermediate directories inherit mode of nearest ancestor
3520	 fix names on stdin bug that only did -P
3521	 incorporate lar changes from David Muir
3522	 expand -R arg syntax
3523	 handle ansi/ibm D,F,S,U,V formats on output
352489-03-28 fix bget() buffer boundary error for reads < buffersize
352589-03-01 ignore DELTA_PASS file set*() calls
352689-02-22 fix bread bug for 0 count and bget memcpy overlap
352789-01-18 fix copyout() rfd<0 delta bug that generated multiple entries
352889-01-11 fix dirsize!=0 bug; change ftwalk XDEV implementation
352988-12-11 fix symlink->nowhere bug
353088-11-22 add vmsbackup readonly format; fix lseek validity checks
353188-11-17 add -T040 to simulate tape device blocking on input
353288-11-11 add s5r4 asc and aschk formats
353388-11-07 hard links and deltas don't cross volumes
353488-11-01 add -n to read exact file list
353588-10-20 add bread(0,...) to skip, bget() and bput() io optimizations
353688-10-11 fix delta ops to use pattern args
353788-10-04 fix argc bug that botched -rw with file args
353888-10-01 for delta update, verify that untouched files match base archive
353988-09-30 fix allocate() bug: malloc() -> calloc()
354088-08-23 use libx/memsum() for checksum calculations
354188-08-20 add `![command]' to end of medium replies
354288-08-18 table of contents output to stdout
354388-08-08 update for libx/ftwalk() and libx/strls()
354488-07-28 streamline ftwalk() interface
354588-07-21 finish up -a and -u tar compatibility
354688-07-17 add cpio.sh and tar.sh interface scripts
354788-07-15 convert to pax
3548
3549:::::::: html ::::::::
3550
355112-02-29 mm2html: fix so stack bug that popped one too many
355212-01-11 mm2html: fix \*(Rf to use <SUP>...</SUP>
355312-01-01 htmlrefs: add <SCRIPT src=...> to include list
355411-12-30 mm2html: add .xx faq
355511-09-11 mm2html: add .H n "title" link="href"
355611-08-06 mm2html: use optget() style for .SH and .TP
355711-04-18 htmlrefs: don't symlink .html for --copy (doh)
355810-09-07 use += to append to compond values
355910-06-01 sync with ast api 20100601
356010-05-28 mm2*.sh: use --???MAN=nx for man section titles
356110-04-11 mm2html.sh: headings now internal anchors by default
356210-01-31 mm2html.sh: handle bsd mandoc
356310-01-25 mm2html.sh: handle optget --nroff { .H[01234] .OP }
356410-01-15 mm2html.sh: handle <name>(<number><chars>) references
356509-09-17 mm2bb.sh: .sn now uses expand(1) instead of cat(1)
356609-07-01 mm2html.sh: --frame=foo for man generates side content frame
356709-07-01 mm2html.sh: add redirection hackery to insert html.labels
356809-06-30 mm2html.sh: increase heading level for -o html.labels
356909-05-08 mm2twiki.sh: add for mm => twiki markups
357007-12-11 mm2bb.sh: fix bb list and fill logic, add long name \n[CC...]
357107-12-11 mm2html.sh: add long name \n[CC...]
357207-08-11 mm2bb.sh: --texish for tex style bb markups
357307-04-20 mm2bb.sh: add for mm => bb markups
357407-02-09 mm2html.sh: expand \*(.. rather than escape to \\(*..
357506-10-31 mm2html: fix tager=_top omission bug
357606-10-11 add sfstruse() error checks
357706-05-03 htmlrefs.c: add COPY to avoid e.g. cgi symlinks
357805-10-15 mm2html.sh: add BP name=value parameters
357905-10-10 mm2html.sh: add .CE, .BP *.@(gif|png) ... => <IMG...>
358005-02-22 htmlrefs.c: rel=internal ignored if --external
358105-02-14 mm2html.sh: add .xx linkframe="" for no target=_top
358205-02-01 mm2html.sh: IFS may be unset!
358305-01-11 mm2html.sh: add --top
358404-12-22 mm2html.sh: fix .xx link unverified rm
358504-08-01 htmlrefs.c: symlink only if different mtime
358604-06-18 htmlrefs.c: add -S,--symlink to symlink() rather than copy
358704-04-26 troff2html: handle .ta
358804-04-04 mm2html: .xx link|text separated by tab for table entry urls
358904-02-29 mm2html: .TS box => void lines
359003-08-11 mm2html: handle man .TH args>2
359103-03-25 mm2html: table border size '' => 0
359203-02-06 troff2html.c: fmtquote() FMT_ALWAYS update
359302-10-24 mm2html: viewgraph link target is _top too
359402-10-15 mm2html: ident footer is now a TABLE instead of a DIV
359502-08-30 mm2html: .AL with no args is equivalent to .NL
359602-08-26 mm2html: fix .VL mark indent logic
359702-08-19 mm2html: ignore .fp
359802-06-09 mm2html: expand mailto address pattern match
359902-05-31 mm2html: check .vG arg count before shift
3600	 mm2html: \e => &#0092;
360102-03-17 mm2html: add .SG no-op
3602	 mm2html: check .EX figure# label args
3603	 mm2html: add .so/.sn dir search to .BP
360402-03-15 mm2html: add LC_NUMERIC=C for floating point constants
360502-02-14 mm2html: shorten indentation
360602-01-16 mm2html: handle .so and .xx in getline
3607	 mm2html: .sn and .so look in dir of including file
360801-10-20 htmlrefs: fix <!--INTERNAL--> filter delete detection, GLOB_AUGMENTED
360901-05-09 mm2html: ignore a few more requests
361001-05-04 mm2html: more tbl adjustments from Bruce Lilly
361101-05-02 mm2html: tweak tbl column spacing, handle .TH [N]
361201-05-01 mm2html: tbl fixes
361301-04-27 mm2html: fix .SH,.SH indentation; ignore { .nh .hc .hy }
361401-03-22 mm2html,troff2html: ignore { .hw .lw }
361501-03-01 troff2html: fix bug that treated \*(]? as \*]?
361601-02-28 troff2html: add \n(YR and fix macros for y2k -- oops
361701-01-31 htmlrefs: fix nul char bug in <!--INTERNAL--> filter
361801-01-01 mm2html: fix incorrect \h'... #local refs
3619	 mm2html: append <!--LABELS-->...<!--/LABELS--> for second pass
3620	 mm2html: add .xx [no]index to inhibit or restart index labels
3621	 mm2html: add .xx noFOO, .xx [no]index
3622	 mm2html: .xx begin|end before <BODY> gets copied to <HEAD>
3623	 mm2html: identification trailer aligned right
3624	 htmlrefs: <!--INTERNAL--> in index.html <HEAD> skips file/dir
362500-12-14 mm2html: fix tbl colspan
362600-12-12 mm2html: ignore bgcolor for table with no box
362700-12-07 download: .tar.gz => .tgz
3628	 htmlrefs: add --delete
362900-12-05 mm2html: add .PM
3630	 mm2html: <id@id.id...> => mailto:
363100-11-27 mm2html: --frame is now 1 level instead of 2; no *-body and *-head
3632	 mm2html: add .IS ... .IE indentation
3633	 mm2html: .LR foo (1) generates man link
3634	 htmlrefs: add https support
363500-10-31 htmlrefs: remove if internal filter leaves <= 1 line
363600-05-25 mm2html: add viewgraph outline and navigation
363700-05-11 mm2html: add .vG viewgraph macros
363800-03-04 htmlrefs: add <LINK rel=dynamic>
363900-02-14 htmlrefs: add .htaccess and <LINK> checks
3640	 mm2html: add .xx ref=...
3641	 mm2html: use "..." tag attribute quote instead of '...'
3642	 mm2html: .BL => <UL> square circle disc
364300-02-03 mm2html: fix -o nohtml.ident
364400-01-20 mm2html: fix -o quoted arg parse
3645	 htmlrefs: add --perlwarn for embedded perl constructs
364699-08-11 mm2html,troff2html: add .xx begin=x end=x
3647	 mm2html: handle simple .TS ... .TE; room for improvement
3648	 mm2html: fix <TABLE><TR>...</TR></TABLE> nesting
3649	 mm2html: add SEE ALSO hot links
3650	 mm2html: hot link man name not (section)
365199-05-17 download,html2db,mm2html: long options
365299-05-13 html2rtf: long options
365399-04-01 fix .xx link
3654	 long options, macro search bug fix
365599-01-01 html2rtf: fix </LI> with no <LI> core dump
365698-04-01 add company corporation location meta.* organization
365797-05-09 info tollbar=path for junk before </BODY>
365897-05-01 \h'0...' for hyperlinks
365997-04-01 first release
3660
3661:::::::: proto ::::::::
3662
366312-02-20 proto.c: bump version to match astlicense() { since start source } change
366412-02-14 protp.tst: update for libpp/ppproto.c fix
366512-01-01 proto.c: add epl to the license type list
366611-03-04 sear.sh: add { sear32.ico sear64.ico }, $(dirname -r lib/$COMMAND/...)
366711-02-02 Makefile: don't update ../INIT/proto.c if no change or if cpp hack failed
366810-10-10 sear.sh: retain .exe suffix in sear -- its dos on the other side!
366910-09-10 sear.sh: add --args=args
367010-08-22 sear.sh: ratz+sear now requires -ladvapi32
367110-01-20 changes.sh: avoid nmake variable expansions in sh!
367209-03-02 Makefile: eliminate master src paths from ../INIT/proto.c
367309-01-15 sear.sh: update for msvcrt.dll link
367408-11-15 sear.sh: add manifest logic
367506-12-04 proto.c: add utime() prototype
367606-06-28 proto.tst: add more externalize tests
367706-05-09 proto.c: add --externalize, -x
367806-05-09 proto.tst: add -x tests
367905-12-25 ratz.c: fix sear CreateDirectory(tmp) permissions
368005-09-16 proto.c: add <stdio.h> for standalone rename() prototype
368105-07-31 proto.c: finally trust __STDC__ headers
368205-05-11 since.sh: add
368304-10-24 sear.sh: note in docs that ratz options apply to sear .exe's
368404-10-22 proto.tst: add array arg prototype tests
368504-10-01 proto.c: add CPL docs
368604-09-24 sear.sh: add cc -c to avoid nativepp "ratz.c" message
368704-05-20 proto.tst: add `int fun __P((int));' test
368804-03-19 proto.c: add { .cpp .hpp }, fix standalone -c parse
368904-02-29 proto.tst: add -f -p option tests
369004-01-14 proto.c: add suffix-comment table
369104-02-11 proto.c: default comment style set to match file suffix
369203-06-21 proto.tst: add T_INVALID ? splice bug test
369302-07-31 sear.sh: make sure output files has a suffix
369402-03-12 proto.c: add type=free
369502-01-07 proto.tst: add TEST 05 -- no fix yet
369601-12-12 sear.sh: fix rc ICON path \ escapes
369701-10-31 sear.sh: add sear.ico
369801-10-16 sear.sh: _SEA_* => _SEAR_*
369901-10-05 sear.sh: rename from sea.sh
370001-09-11 sea.sh: add
370101-06-26 proto.tst: add another buffer boundary test (large of course)
370201-04-01 proto: preserve file mode for -r
370301-02-06 proto.tst: add (finally)
370499-11-19 add --license, --shell, --copy, --verbose
370599-08-11 long options
3706
3707:::::::: bzip ::::::::
3708
370902-02-14 bzip2.c: fix uwin core dump
371002-01-24 bzip2.c: use _PACKAGE_ast touch(3) instead of <utime.h>
3711	 bzip2.c: fix strstr() loop
371201-01-01 bzip2.c: include bzlib.h first
371399-01-01 package for ast
3714
3715:::::::: tests ::::::::
3716
371712-02-02 add timeout to { testlib terror.h }
371811-10-20 add TESTLIB.mk, common { testlib terror.h }, and test.aso
371911-09-26 vmalloc: sync with kpv
372010-05-28 date.dat,datey2k.dat: update for ast move to %Q? %K
372110-04-05 opt.tst: add head --nroff .TH fix tests
372210-04-02 opt.tst: add head --version bug fix test
372309-12-17 opt.tst: update for solaris short/long mix
372409-11-13 vmalloc/trandom.c: fix test logic
372509-07-22 ip6.rt: add trailing :0 tests
372609-04-27 sfio/tpool.c: update to match libast/sfio/sfpool.c patch
372709-02-22 date.dat: add iso duration tests
372809-02-02 sfio/tprintf.c: fix sfaprints() test
372908-12-30 date.dat: add TM_WORK tests
373008-12-19 date.dat,datey2k.dat: update for %_K
373108-06-24 date.dat: update for tmxfmt() %z fix
373208-05-22 testdate.sh: add date.dat supplement test case generator
373308-05-20 strtof*.rt: reorganize strtof tests for easy(ier) change
373408-02-11 date.dat: add more ISO 8601:2000 tests
373508-01-18 strn*.tst: consolidate into str*.tst
373608-10-15 strn*tof.(c|tst): handle +/- nan|inf|0
373708-10-15 strn*toi.(c|tst): handle bitsof(long) -- {32 64 }
373807-05-21 date*.*: update for ISO 8601:2000 %F == %Y-%m-%d
373907-04-11 sfio/tprintf.c: update for { inf INF nan NAN }
374006-09-14 datey2k.dat: yield to the gentlemen from congress
374106-08-25 opt.tst: update for leading 0 numeric option arg strip
374205-04-30 sfio: tgetr: add sfmaxr() tests
374305-04-20 cdt: snarf cdt tests from kpv
374405-01-04 date.c: add ``FMT time format answer''
374504-10-31 date.dat: add { hours days weeks months } ago tests
374604-10-27 opt.tst: TESTs 9? for astsa (stanadalone ast)
374704-09-14 date.dat: add %| and %& tests
374804-09-08 opt.tst: add :!value: omitted optional arg value TEST 47
374904-04-15 date.dat: add specific and ordinal day tests
375004-04-01 vmalloc: snarf vmalloc tests from kpv
375104-02-29 sfio/tscanf.c: add %! test
3752	 opt.tst: add html escape test
375304-02-04 sfio/texcept.c: add sfraise(0,a,b) test
375404-01-14 sfio/tmmap2read.c: fix mmap() override for linux/bsd
375503-10-12 strtoi.tst: add strton[ll] suffix multiplier tests
375603-09-23 opt.tst: more optstr() tests
375703-09-11 opt.tst: add n:=v tests
375803-09-05 opt.tst: [f:l*?] test 43 update
375903-08-11 date.dat: add arithmetic tests
376003-05-25 opt.tst: add optstr() ???* internal option tests
376103-05-11 strtoi.tst: add malformation tests
376203-05-06 opt.tst: add getopt_long() compatibility tests
376303-04-22 date.dat: add last, this, next tests
376403-03-21 date.dat,datey2k.dat: add %Q/recent/distant/
3765	 opt.tst: add trailing '*' option and option args tests
376603-02-13 base64.c: add base64encode()/base64decode() tests
376702-10-04 strtof.tst: add simple cases
376802-09-15 sfio/tscanf.c: add NaNS test
376902-09-05 opt.tst: add .fp 5 CW for *roff tests
377002-08-21 strelapsed.tst,strelapsed.c: add
377102-07-27 sfio/tpoll.c: fix for rw pipes
377202-06-26 opt.tst: fix debug locale message numbers
377302-05-16 date.dat: add '60+n min/sec ago' tests for n min/sec after the hour
3774	 data.dat,datey2k.dat: update for %u addition to tmfmt()
377502-03-14 opt.tst: update \f...\f --keys tests
377602-02-02 sfio/(tclose|ttpopenrw|ttell).c: add alarm to handle hung coproc
377702-01-27 sfio/terror.h: handle non-idempotent <varargs.h>
377802-01-12 date.dat,date2k.dat: fix EST/EDT %z tests
377901-12-18 date.dat,datey2k.dat: update for %z change from SHH to SHHMM
3780	 date.dat: add YYYY/MM/DD tests
378101-11-24 opt.tst: update --?+SECTION tests
378201-10-31 opt.tst: add --?+SECTION tests
378301-10-30 date*.dat: fix cron tests where both mday and wday are specified
378401-10-18 strtof.tst: adjust for sfprintf()/printf() rounding
378501-10-18 sfio/twchar.c: add wchar_t tests
378601-10-11 opt.tst: add example and literal tests, \&. nroff tests
378701-10-10 opt.tst: sync with optget() i18n fixes
378801-08-11 test.sf*: need $(LDFLAGS) for -L* library link paths!
378901-03-26 test.strtoi,test.strtof: add
379001-02-14 sfio: add tmpread
379101-01-31 sfio: uniform test exit codes
379201-01-01 opt.tst: add enumerated option argument values
379300-12-11 date.dat: add a few more crontab(1) forms
379400-10-31 date.dat: add date(1) and touch(1) forms
3795	 sfio: kpv updates to handle mac os X
379600-10-17 sfio/thole.c: move large buffer from stack to global
379700-10-03 testy2k.dat: `Feb 29 01:02' => `Feb 29  2000'
379800-04-01 Makefile: add ../../lib/libast to .SOURCE for features/sfio
379900-03-07 opt.tst: add printf +1 bug fix test
380000-02-14 opt.tst: fix for "..." attribute quote
3801	 datey2k.dat: oops: %l fails for old (2000-02-29) NOW
380200-01-10 opt.tst: fix USAGE_LICENSE
380399-10-22 date: test all % formats
380499-08-11 sfio: fix 3 tests for uwin
3805	 sfio: tscanf for netbsd
380699-03-25 :TEST: don't forget about foo.c for foo.tst
3807	 sfio/testsfio: fix option parse for `-x *,*' and cc.* and *.cc
380899-01-23 moved library tests from std to here
3809	 added optget() tests
3810
3811:::::::: 3d ::::::::
3812
381312-06-25 change strcpy() within buffer to strcopy()
381412-06-22 sys.tab,utimensat3d.c: add utimensat()
381512-05-25 sys.tab: handle missing getdents64 on linux+gcc-4.4
381612-05-25 syscall3d.c: tweak _exit() logic (really?) to dumped core on recent solaris
381711-12-01 fix fcntl 3rd arg int vs void*
381810-06-01 sync with ast api 20100601
381910-04-10 mkdir3d.c: fix mkdir() intermediate dir logic
382010-01-19 3d.h: increase some path buffer sizes -- these need to be dynamic!
382109-05-15 dll_3d.h: handle dllopen => dlopen
382208-12-04 fs.c: change open(/dev/fd/NN,...) try open(2) first, then dup(2)
382308-06-20 ast_3d.h,ast.c: add libast/misc/setenviron.c
382407-03-26 Makefile: drop -L* from IFFEREFS -- handled by .IFFE.REF.
382507-03-21 lib_3d.h,error.c: handle error_info => *_error_data_
382606-12-04 3d.h: strmode() bsd conflict tweak
382706-11-23 finally get linux to pass regression tests
382806-11-21 fchdir3d: let chdir do the work if fd matches cached path
382906-09-28 3d.sh: used getconf LIBPATH|LIBPREFIX|LIBSUFFIX -- how novel
383006-09-26 3d.h,dir3d.c,dll3d.c: fix strtou*l*l maps for __int64 vs. long long
383106-09-18 strmatch.c,touch.c: add private obsolete api copies
383206-08-27 mkdir3d.c: foloow mkdir -p mode rules for missing intermediates
383305-02-01 3d.sh: IFS may be unset and { ash bsh } don't on startup -- wow
383405-01-01 sys.tab,utimets3d.c: add utimets() intercept
383504-12-15 pathreal.c: "..." should fail if no lower view -- doh
383604-10-01 features/syslib: _exit test now uses SIGKILL (openbsd abort() hangs)
383704-07-26 3d.sh: update runtime docs
3838	 3d.1: drop in deference to the 3d.sh runtime docs
383904-07-20 3d.h: undef _BLD_DEBUG to avoid raw libast symbols
384004-07-19 fs.c,lib.c,open3d.c,vcs_3d.h: { O_RDONLY O_WRONLY O_RDWR } are values
384104-07-19 dir3d.c: rewinddir643d() must call seekdir643d() (not seekdir64())
384204-07-01 3d.tst: TMP => TWD to match regress(1)
384304-06-16 3d.tst: coordinate $TMP with regress(1)
384404-06-14 lib.c: fix fs3d() 2d return value
384504-06-11 3d.tst: fix test and error counts
384604-05-04 open3d.c: create missing lower level dirs for O_CREAT ... file paths
384703-08-15 mount3d.c: change 3d intercept test to handle NiL || ""
384803-06-11 ast.c: add _map_malloc checks for _ast_malloc => malloc
384903-06-05 pathreal.c: fix ancient multiple relative|.. symlink bug
385003-06-04 3d.sh: change `shift $OPTIND-1' to `set x "@"; shift $OPTIND'
385103-03-28 dir3d.c,rmdir3d.c,syscall3d.c: add D_FILENO and D_TYPE ifdefs
385203-03-25 dup3d.c: fix bug that cleared Dir_t pointer just after allocation
385303-03-07 ftruncate3d.c,lseek3d.c,truncate3d.c: check _typ_off64_t
385402-10-18 features/syscall.sh: handle pseudo files in cc -E line syncs
385502-07-17 syscall3d.c: clean up user level intercept code
385602-06-25 open3d.c: fix bug that created 0 mode file with only O_RDWR
385702-06-14 ast_3d.h,cs.c: move fmttime() macro override to cs.c
385802-06-06 dir3d.c: fix rewinddir() bug that did not decrement intercepted count
385902-04-01 Makefile,cs.c,cs_3d.h,ast_3d.h: _WIN32 tweaks
386001-11-26 pathreal.c: empty path is an error
386101-11-16 ftruncate3d.c,truncate3d.c: use lseek3d indirection via sysfunc()
386201-10-31 fchdir3d: add along with state.file[].dir to cache open dir paths
3863	 dir3d.c: add recursive call intercepts
3864	 error.c: add recursive call intercepts
3865	 pathreal.c: add buffer size check
3866	 features/syscall.sh: add bsd syscall __RENAME() checks
3867	 syscall3d.c: check _lib_syscall before using it!
386801-10-30 features/syscall.sh,syscall3d.c: handle -ldl calls back into 3d
386901-09-20 3d.sh: drop extra } in USAGE that emitted -} for --?
387001-07-17 Makefile: don't link 3d dll against ast dll
387101-02-19 close3d: dup reserved fd's higher
387201-02-14 add :VARIANT: to build dll's for CC.DLL.VARIANTS
387301-01-01 dir_3d.h: real readdir must be struct dirent, not dirent64
387400-12-14 3d.sh: fix -c
387500-10-31 ast.c add pathtemp.c
387600-10-19 init.c: initialize _3d_2d
387700-07-17 fix fchown to call MSG_fchown (not MSG_fchown); fixes vim dump!
387800-02-14 3d command long options (finally)
387999-01-01 --- release 4.0 ---
388099-04-01 dll: sfsprintf => _3d_sfsprintf
3881	 check for __*_nc (osf.alpha)
388299-02-14 pathreal: copy to state.path.name if not already there
3883	 rewinddir3d: just call seekdir(p,0); fixes `top' core dump
388499-01-11 lseek3d,syscall3d: add sysfunc() for off_t!=long
388599-01-01 --- release 3.0 ---
388698-02-14 3d.sh: fix _RLD32_LIST => _RLDN32_LIST typo
3887	 pathreal: fix (P_LSTAT|P_READLINK) under pwd bug that did phys on .
3888	 features/syscall.sh: tighten up version __call header grep
3889	 unlink: trap remove() too
3890	 features/syscall.sh: favor strong (_ prefix) name for some arch's
389198-02-06 syscall3d: handle longjmp with cp->active
389298-01-23 features/syscall.sh: check for _xstat vs __xstat
389398-01-01 add readdir64 rewinddir64 seekdir64 telldir64
389497-10-11 fix lefty's virtual dir touch bug -- recursive doubling on stbuf
389597-07-17 CS_INTERFACE=2
389697-04-01 features/syscall.sh: fix __exit() test for new sgi
389796-12-25 handle stat64() implementations on top of _xstat()
3898	 3d.tst must be run under 3d!
3899	 _SCO_STAT_VER tweaks
3900	 sgi _RLD_NEXT_PATHNAME fix for -32 -n32 -64 differentiation
3901	 _*xstat() hacks around proto in *stat3d.c
3902	 add constant casts for long shift counts
3903	 fix pathnext() to report version instance level in state.path.level
390496-11-28 fix rename() to do physical stat on subject path!
390596-02-29 handle syscall loops caused by botched libs like solaris libsocket.so
3906	 generalize name service interface to handle ifs+vcs
3907	 catch acl,facl even if not on local sys
3908	 fix features/syscall.sh bug that set $stdc incorrectly
3909	 use alloca() in execve() if possible
3910	 add 3d.tst and test makefile action
3911	 fix a few important virtual dir / create / append bugs
3912	 fix null dereference in open3d() for state.in_2d
391396-02-14 add NFS acl,facl
391496-02-08 fix 2d bug in link,rename,symlink that generated empty arg 1
391596-01-30 fix features/syscall.sh for compilers that ignore prototypes
391696-01-22 P_TOP only takes effect for files in virtual dir!
391795-11-24 optimize exec $shell to eval in 3d.sh
391895-11-11 don't fs3d_copy opaqued files
391995-10-11 fs3d_mkdir virtual dir fix
3920	 fix 2d virtual dir test in pathreal()
3921	 solaris _rename() != weak rename()
3922	 solaris exit() doesn't call _exit()
3923	 all static data in state
3924	 test state.in_2d in link3d()
3925	 fix opaque.sh that was broken sometime after 91
3926	 linux LD_BIND_NOW not needed with ld.so-1.7.9
392795-07-17 handle irix-5.3 struct stat64 and off64_t
3928	 dlsym(__exit) before dlsym(_exit)
392995-05-09 fix pathcanon() bug that incremented state.path.level too far on ...
3930	 percolate inode metadata changes to the top level too (no more EROFS)
3931	 add P_TOP to truncate() too!
3932	 feature/syscall.sh does not generate #include, up to *3d.c
3933	 spawnveg.c must come after spawnve.c in ast.c
3934	 cspoll.c must come after cs*.c in cs.c
3935	 fix 3d to work like $SHELL if no shared 3d lib found
3936	 fix chdir .. symlink bug that set state.pwd to physical path
3937	 add %n.n.nd to bvprintf
3938	 ignore a few more non-initialization setcwd() errors
393995-01-19 fix undefined var ref for _VER_ hack calls in features/syscall.sh
394095-01-11 access W_OK succeeds if on lower view
394194-12-01 add /#fs/NAME/load to load shared lib fs
3942	 add user system call trap() stack
3943	 VPATH=*::* or VPATH=*:-:* to separate disjoint views
3944	 change trap() to intercept()
394594-07-17 add /#fs/safe
394694-06-01 fix symlink() and link() bug that didn't instantiate virtual dir
3947	 fix [f]statvfs() infinite loop for att hybrids
394894-05-11 merge with the real vcs
3949	 add char*_3d_2d: if _3d_2d!=0&&getenv(_3d_2d)==0 then 2d
3950	 trailing slash in pathreal() interpreted as slash dot (off/w test=010)
395193-05-28 add /#option/limit=n to limit view depth
395293-04-01 --- release 2.0 ---
395393-03-11 change /dev/3d/* to /#*
3954	 remove anno and rpl specific hooks
3955	 add name,monitor,active fs mounts
395692-04-01 --- release 1.1 ---
395792-02-11 change retained mounts to /dev/3d/dev
395892-01-11 add $SHELL and /bin/sh exec() checks to force 3d sh
3959	 fix checklink() to concatenate relative links with original prefix
396091-11-11 --- release 1.0 ---
3961	 add feature/syscall.sh to handle att s5r4, hp snake, sun 4.1
3962	 change umask() 3d state toggle to mount(-,/dev/3d/option/{2d,3d})
3963	 fix creat() virtual dir bug for umteenth time
3964	 link() and rename() now migrate to top instead of EROFS
3965
3966:::::::: coshell ::::::::
3967
396810-06-01 sync with ast api 20100601
396908-04-08 event.c: use dbmlib.iffe
397007-10-23 main.c: avoid UOUT CO_SERIALIZE cswrite hangs via O_NONBLOCK
397107-09-25 handle CO_SERIALIZE
397206-10-11 add sfstropen()/sfstruse() error checks
397306-09-19 command.c,cotest.c: sysconf() => astconf()
397406-08-15 shell.c: unset CO_ENV_SHELL
397506-08-11 main.c: handle CO_ENV_MSGFD msgfd != 3
397606-08-11 COSHELL.mk: handle connect=*
397706-08-04 shell.c: handle CO_APPEND for job out|err
397806-06-21 event.c: add --older, --newer, REQ_all
397906-06-18 event.c: add event name pattern match/glob
398006-06-11 event.c,COSHELL.mk: add
398103-03-04 add state.remote=CS_REMOTE_SHELL
398201-12-12 resolve SETSHELL local vs. global conflict -- its both
3983	 ignore attr now really ignores host -- duh
398401-12-11 add global maxidle=0 to ignore idle
3985	 split readonly and user settable values in `g' command output
398600-12-14 shell is per host attribute
398700-02-01 --- release 2.2 ---
398899-06-24 cosh: change exit to return
398999-06-24 --- release 2.1 ---
399097-12-07 update for CS_SVC_SUFFIX
399196-12-25 add constant casts for long shift counts
399296-05-09 coinit(CO_SERVER)
399396-02-29 use <hashkey.h>
399496-01-31 AT&T Research
399596-01-31 --- release 2.0 ---
399695-07-17 add perhost job limit
3997	 all specific misc attr expr to override idle
399895-05-09 convert init script to hostinfo
3999	 fix indirect bug that forgot to poll the command stream!
400095-04-01 change streval() to strexpr()
400195-01-01 don't bias out home host with cpu>1
4002	 add shell=path to set remote shell path
4003	 add debug=level to set debug level as an attribute
4004	 add identify=1 to identify remote command output
4005	 identify="format with %s"
4006	 attributes may be set on the command line
4007	 add COINIT to cosh so .coshrc can check for new coshell
4008	 add state.grace to g output
400994-11-11 csstat() lazy evaluation in expressions
401094-07-17 --- release 1.1 ---
401194-06-11 add disable=secs to disable hosts of jobs killed by SIGKILL
4012	 handle shell quoted space in -r strings
401394-04-01 add per host access=(expression) to control access
4014	 add per host bypass=(expression) to bypass min idle
4015	 add uid, gid, day (monday:1,sunday:7), hour, min to expressions
4016	 add periodic check for share/lib/cs/access for access control
4017	 add grace=n for busy job grace running time
4018	 add scale=n (default == # cpu) load average scale
4019	 add migrate="command" to override default SIGSTOP for hogs
4020	 add profile="command" to override default ". .profile"
402194-03-11 fix pseudo-float and elapsed-time constant operand conversions
4022	 add static minidle to disambiguate from dynamic idle
4023	 fix remote shellopen to work for csh users (there's still some left?)
402494-03-01 fix maxload to be pseudo-float
402593-10-11 add CO_OPT_ACK coexec() ack
4026	 add maxload,percpu,perserver,peruser job limits
402793-03-11 reschedule jobs queued on hung shells
402892-11-11 minor fixes to handle `coshell -' on pipeline
402992-09-26 /dev/tcp/* supported as alternative to /dev/fdp/*
403092-04-01 --- release 1.0 ---
403192-02-29 fix COATTRIBUTES quote bug, handle aaa==bbb@ccc in expressions
403292-02-11 add `noattr' to delete misc attributes
403391-10-11 add COTEMP temp file base to job environment
403491-08-11 jobs queued for shell open now in job table
403591-07-17 add heterogenous pool support
4036	 add % weight for additional cpus
4037	 fix (type@xxx) expression evaluation
403891-03-11 fix handling of down hosts
403991-02-11 add string comparisons to attribute evaluation
4040	 update for new message interface
404191-01-31 add -?
404290-12-11 if . has idle=0 then local bias entry is ignored
404390-11-11 local host not reported down if status missing
404490-10-11 . $ENV after .profile in $COINIT
4045	 add -l <expr> to list hosts matching <expr>
4046	 change CO_{attr,close,open} msgs to CO_server
4047	 add load and up readonly attributes
404890-10-01 libx/cs -> libcs
404990-08-11 check auto=0 file attribute
4050	 fix bug that dropped multiple SHELL job status messages
4051	 arbitrary attributes and C-style attribute expressions supported
4052	 ks <job> and kc <job> added to stop and continue jobs
4053	 signals sent to remote shells use signal name rather than number
4054	 add shell/job label attribute
405590-07-17 add auto=[01] attribute for automatic scheduling pool
4056	 tune scheduling
4057	 add server protocol check (narrows unix-domain socket panic window)
4058	 catch SIGHUP to reconnect connect stream path
405990-07-11 bad rank shells dropped from pool
4060	 more rank tuning
406190-06-01 --- release 0.0 ---
4062
4063:::::::: cpp ::::::::
4064
406509-01-06 cpp.tst: add macro definition overwrite test
406609-01-05 cpp.tst: add another multiple include guard test
406708-10-31 cpp.tst: add #x and pp:nomultiple tests
406806-05-09 cpp.tst: add pp:externalize tests
4069	 cpp.tst: add compatibility ul numeric qualifier tests
407006-01-11 cpp.tst: update pp:passthrough tests
407105-12-16 cpp.tst: add imake pp:passthrough comment splice test
407205-04-11 cpp.tst: add '"a" #s' catliteral + stringize
407304-10-01 cpp.tst: adjust for hidden line patch
407404-08-11 cpp.tst: adjust for ppproto.c patch
407503-12-12 cpp.tst: add empty macro actual tests
407603-11-25 cpp.tst: add -D-d test
407703-11-12 cpp.tst: add #if expression tests
407803-06-21 cpp.tst: add T_INVALID ? splice bug test
407903-05-19 cpp.tst: add stray SKIPMACRO test
408003-05-18 cpp.tst: add SYS_FUNCTION ungetchr() bug fix test
408103-04-30 cpp.tst: add pp:mapinclude tests
408202-11-07 cpp.c: exit() => return for lame linters
408302-10-10 cpp.tst: add does not end with `newline' tests
408402-05-24 cpp.tst: add TEST 15 pragma space canonicalization tests
408502-03-15 cpp.tst: add TEST 14 for libpp/ppproto.c memory fault fix
408601-10-20 cpp.tst: add pp:splicespace "..." tests
408701-06-01 cpp.tst: add -M* dependency generation tests
408801-02-14 cpp.tst: pp:pragmaexpand pp:catliteral # operator interactions
408901-02-05 cpp.tst: add (finally)
409096-01-31 --- release 2.0 ---
409192-04-01 update for new libpp
409292-04-01 --- release 1.1 ---
409390-10-11 update cpp.1
409488-06-08 update makefile to install Makeinstall.mk ALTPP.LINK links
409588-02-29 redo PP_INITDIR initialization
409687-10-11 update man page
409787-09-18 add ppop(PP_DONE) call
409887-04-24 recode for updated library interface
409987-04-03 add -D-Ttest to enable debugging test code
410087-04-02 add -I-Rfile for PP_READ
4101	 move #include "ppdefault.h" to ppargs.c using PP_READ
4102	 add -D-I[id] to name line sync directive ("line" if id omitted)
410387-03-31 change -Nfilename to -D-Ffilename
410487-03-30 add -D-Llanguage for PP_LANGUAGE,language
4105	 add -D-H for PP_NOHOSTED
4106	 add -I-H for PP_HOSTED
410787-03-24 --- release 1.0 ---
4108
4109:::::::: cs ::::::::
4110
411110-06-01 sync with ast api 20100601
411206-10-11 add sfstropen()/sfstruse() error checks
411306-06-11 cs.c: switch to csclient()
411402-10-02 tst.c: tmform() => fmttime()
411501-01-01 vcs_src/*: drop old notices, fix signal handler prototype
411600-05-09 mbb: add (message bulletin board service)
411799-09-22 cs: update for CS_MNT_TAIL
411899-05-18 cs,css: long options
411998-05-01 css: add
412097-05-09 imount: add
412196-12-25 cs: fix -i eof logic
412296-02-29 nam protocol change
4123	 add vcs+ifs beta
4124	 drop getdomainname() call
4125	 vcs: use ast equivalents for strstr ftruncate realpath
412695-12-08 add -r raw interactive mode
412795-07-17 add /trust=user when server not in PATH
412895-04-01 start this file
4129	 fix cat server read bug CS_LINE -> CS_EXACT
4130
4131:::::::: mam ::::::::
4132
413310-06-01 sync with ast api 20100601
413404-02-29 self-document
4135
4136:::::::: msgcc ::::::::
4137
413810-10-20 msgcc.sh: add raw type (like str) for ksh -D style strings
413910-06-01 sync with ast api 20100601
414006-11-15 msgcc.sh: date -f x => date +x for ast-base portability
414106-10-11 add sfstruse() error checks
414202-03-11 msgcc: fix merge replacement threshhold logic
4143	 msggen: convert { \a \b \f \n \r \v } back to C escapes
4144	 msgcpp: set pp:modern
414502-02-14 msggen: add -f to list printf format signatures
414601-10-10 msgcc: allow some email forms to pass
414701-06-10 msgcpp: add proper escapes to OMIT pattern
414801-05-29 msgcc: add similar unused message replacement, -M-similar
414901-04-22 msgcc,msggen,msgget: use mcindex()
415001-01-31 ignore ls generation errors
415100-04-20 first release
4152
4153:::::::: nmake ::::::::
4154
415512-06-20 O_cloexec|F_dupfd_cloexec edit
415612-05-22 bind.c,dump.c,make.c,mam.c,rule.c: fix --mam=static 3d vs VPATH diffs
415712-05-14 make.c: .IGNORE disables non-file "must"
415812-05-04 option.c: add 'set --global...set --noglobal' scoping for :OP: makefiles
415912-05-03 Makerules.mk: don't use ``grep -q'' until sun/oracle gets on board
416012-04-20 option.c,load.c,Makerules.mk: add Op option .mo reread prereqs
416112-03-22 Makerules.mk: .BIND.-l% in STDLIB dir with only CC.SUFFIX.ARCHIVE => -lfoo
416212-03-22 bind.c: add .BIND.-l% --debug=3 trace
416312-03-22 expand.c: SORT_qualified '!' and SORT_first '>' no longer mutually exclusive
416412-02-29 Makerules.mk: fix ``lhs :MAKE: rhs'' logic for lhs and rhs makefile
416512-02-29 option.c: fix regress option doc typo
416612-02-20 Makerules.mk: update for astlicense() { since start source }
416712-02-14 Makerules.mk: ignore MAKE_OPTIONS for --mam
416812-02-14 Makerules.mk: add LICENSEFILEDEFAULT
416912-02-14 Makerules.mk: add PWD edit ala MAKEPATH to PAXFLAGS
417012-02-07 metarule.c: fix read string past terminator bug
417112-02-02 Makerules.mk: add [[ a || b ]] to the $SHELL -n compatibility test
417212-01-30 Makerules.mk: fix .INSTALL* to better handle 'text file busy'
417312-01-26 SCCS.mk: add to rule install list
417412-01-21 --- release 5.7 ---
417512-01-21 internal tmfmt() must use user format on special times too
417612-01-09 Makerules.mk: fix .MAMEDIT. to elide -[DI]-*
417711-12-13 option.c: fix off by 1 undermalloc
417811-12-13 Makerules.mk: fix MAKE_OPTIONS to peoperly handle --*=* options
417911-11-01 Makerules.mk: omit .TARGETs from manifest
418011-10-28 command.c: expand .EXPORT values at export time -- doh
418111-10-10 Makerules.mk: parameter (PROTO) (PROTOFLAGS) -- doh
418211-09-11 parse.c: fix ``local ( A B ... ) 1'' that did not declare B
418311-09-09 Makerules.mk: check $PACKAGE_foo and then $FOO_HOME
418411-09-07 debug-package.mk: add
418511-08-31 mam.c,option.c: add state.mam.hold, set mam=[no]hold
418611-08-30 object.c: drop OLD_header_t.version union for old cc
418711-08-28 Makerules.mk: add $(ARHYPHEN) for ancient sun4-vintage ar(1)
418811-08-25 Makerules.mk: change obsolete name=value option timeout to 20121221
418911-08-11 Makerules.mk: fix :READONLY: typo
419011-05-09 Makerules.mk: add .SOURCE.h : $(INSTALLROOT)/include
419111-05-09 fix .LIST.PACKAGE.LICENSE to include .'d def files
419211-03-03 rules.win32.mk: add %.rc -DRCWOW=...
419311-03-02 Makerules.mk: fix :LIBRARY: --plugin=foo --static to generate the plugin!
419411-02-11 add '### .*archaic.* ###' test for %.sh install to diable sh -n check
419511-02-02 --- release 5.6 ---
419611-02-02 command.c: fix .AFTER prereq bug that executed target twice
419711-02-02 Makerules.mk: add :LIBRARY: --static --private
419811-02-02 Makerules.mk: fix mam %.req to check for $INSTALLROOT/lib/lib/%
419911-01-21 expand.c: fix active() non-terminating loop for joint targets
420011-01-21 Makerules.mk: add "::" (.OPTIONS.$(<)) : .PARAMETER
420111-01-18 Makerules.mk: handle sh patterns on rhs of :MAKE:
420211-01-11 Makerules.mk: handle .INSTALL.COMMON - - -
420311-01-04 rules-win32.mk: add 32/64 conditionals for c++ mangle compatibility
420410-11-12 Makerules.mk: add .MAM.STATE.VARS. for FOO=BAR => -DFOO=BAR in mamake!
420510-11-12 command.c: fix .AFTER .FORCE .REPEAT infinite loop -- wow
420610-11-10 object.c: fix old_header.version puns for strict-aliasing
420710-10-20 Makerules.mk: fix .SHARED.LIST. to honor top level .MULTIPLE
420810-10-20 msgcat.mk: ksh -D strings => raw string
420910-08-24 bind.c: glob_diropen() gs->name absolute path
421010-08-23 bind.c: drop GLOB_NOCHECK so *.notthere => empty
421110-08-15 mam.c: fix joint target make-done imbalance
421210-07-17 option.c: expand external.old for execve() -- doh
421310-06-21 Makerules.mk: use CC.SUFFIX.DEBUG instead of .pdb
421410-06-21 Makerules.mk: add "idxxx ... id=id :LIBRARY: ..." to preserve _BLD_id==1
421510-06-17 Makerules.mk,Scanrules.mk: finally a general solution to -I- vs prefix-include?
421610-06-01 ast api 20100601
421710-06-01 Makerules.mk: :PACKAGE: --latest --api=YYYYMMDD|latest FOO:YYYYMMDD
421810-05-25 pkg-X11.mk: add CC.STDLIB.BASE checks for PACKAGE_X11_LIB
421910-04-15 command.c: update to latest cowait() api
422010-03-11 object.c: fix rare 0 complink compile bug
422110-03-11 option.c: handle delayed option quoting if needed
422210-03-10 expand.c: add '-' to order prereq token char set
422310-03-09 read.c: fix ancient makefile cpp comment check that missed /**...
422410-03-04 Makerules.sh: LC_ALL=C for %:%.sh $SHELL -n to avoid 1.2 arith syntax errors
422510-02-24 rule.c: add .GETOPTS and b_getopts() builtin for optget()
422610-02-14 Makerules.mk: add .INSTALL.COMMON. directory arg
422710-02-14 bind.c: add bind_p "- ..." and "... ..." virtual logic
422810-02-14 debug.mk: set --nonativepp -- doh
422910-02-14 make.c,metarule.c: change metget() prereqs arg to active frame
423010-02-14 expand.c,make.c,metarule.c: .IMPLICIT metarules not applied to implicit prereqs
423110-02-02 Makerules.mk: fix LICENSEINFO search to check $(.PACKAGE.)-foo.lic
423210-01-19 Makerules.mk: fix .RECURSE to handle install or .INSTALL
423310-01-01 --- release 5.4 ---
423410-01-01 parse.c: ['"] following # always ignored
423509-12-09 Makerules.mk: .EXPORT => .SCRIPT, internal.exported => internal.script
423609-12-09 Makerules.mk: .EXPORT now adds vars to coshell coexport(3) list
423709-12-04 Makerules.mk: rename PACKAGE_OPTIMIZE=foo to PACKAGE_OPTIONS=optimize-foo
423809-11-13 Makerules.mk: fix .req logic for virtual -lfoo
423909-10-28 command.c: disable *** error status message for .FAILURE targets
424009-10-27 parse.c,make.c: a - b : .JOINT => b:.DONTCARE (b optionally generated)
424109-10-27 Makerules.mk: install .pdb if it exists in .lib dir
424209-10-09 --- release 5.4 ---
424309-10-07 bind.c: makerule(path) == makerule(base) && !alias && terminal => drop path
424409-10-06 Makerules.mk: add '-' prefix to ARFLAGS for posix portability
424509-10-05 Makerules.mk: consult REQUIRE libs for CC.DLL targets
424609-09-28 Makerules.mk: retract: if -lfoo binds to CC.STDLIB dir then bind to -lfoo
4247	 (it makes a difference for some cc!)
424809-09-22 Makerules.mk: CC='' or --cctype=- or --cctype=0 => no C probe
424909-09-22 Makerules.mk: if -lfoo binds to CC.STDLIB dir then bind to -lfoo
425009-09-22 main.c: missing default makefile diagnostic is warning if --errorid
425109-09-09 Makerules.mk: fix CC.AR.ARFLAGS logic
425209-09-01 Makerules.mk: handle { libfoo.a foolib.a foo.a } prereqs
425309-08-20 Makerules.mk: add :LIBRARY: name=soname and CC.SHARED.NAME logic
425409-08-20 Makerules.mk: add :PACKAGE: --soname[=-n], -n to drop n suffixes in soname
425509-07-31 Makerules.mk: add CC.AR.ARFLAGS
425609-05-05 scan.c: reject implicit prereq names containing space
425709-03-24 Makerules.mk: --option[=value] compatibility with option[=value] until 2011
425809-03-02 Makerules.mk: use $(-recurse:/:/ /G:N=[0-9]*:O=N) for recursion limit
425909-02-02 Makerules.mk: reset :PACKAGE: pkg:noinstall for each pkg
426009-01-09 Makerules.mk: fix .TGZ to handle large manifests
426109-01-09 Makerules.mk: :: foo.man[=N] installs in man/manN/foo.N (default 1)
426209-01-06 bind.c: fix 2d .SOURCE* cross product virtual+dir bug
426308-12-08 Makerules.mk: -lfoo/bar => bar plugin for foo
426408-12-08 expand.c: handle -lfoo/bar prereqs
426508-11-11 Makerules.mk: add %.pl => % for perl scripts
426608-11-11 rules-win32.mk: rc requires native path to .rc file
426708-11-04 bind.c: handle non-3d VPATH for absolute dirs in .SOURCE*
426808-10-24 Makerules.mk: fix install --link=* to handle directories
426908-10-24 command.c: work around another gcc code generation bug -- ouch
427008-10-16 Makerules.mk: fix :NOOPTIMIZE: to cooperate with :NOPROTECT:
427108-09-24 Makerules.mk: add --recurse=only
427208-09-10 Makerules.mk: add :NOPROTECT:, fix CC.DIALECT=VERSION shared lib bind
427308-08-08 state.c: do not use low res virtual st.st_mtime
427408-08-08 Makerules.mk: always include explicit :: files in manifest
427508-06-06 Makerules.mk: drop -G from _BLD_DEBUG trigger -- doh
427608-05-22 Makerules.mk: $(CC.ARFLAGS) also needs $(CCLDFLAGS)
427708-05-20 tests/test.def: add SET local -- nfs can't keep up
427808-04-28 make.c: fix .ACCEPT to propagate state event time
427908-04-28 option.c: split --regress into --regress={message|sync}
428008-04-28 tests: --regress for all tests, --regress=sync for timing only
428108-04-01 Scanrules.mk: .SCAN.c <nosuffix> => nosuffix : .TERMINAL
428208-03-27 Scanrules.mk: add --ignorecase option to .INCLUDE.SUFFIX.
428308-03-27 scan.c: fix buffer boundary slide bug
428408-02-29 --- release 5.3 ---
428508-02-29 option.c,variable.c: $(-+name) => option value
428608-02-29 expand.c: add :H=O: to reverse token list
428708-02-09 Makerules.mk: fix .SHARED.LIST. to allow multiple explicit lib prereqs
428808-02-02 Makerules.mk: add LDRUNPATH init from $(CC.RUNPATH)
428907-12-15 Scanrules.mk: add "set stdio HEADER" to .SCAN.iffe
429007-11-26 Makerules.mk: handle a.req => -lfoo -lbar, and -la does not exists
429107-10-22 Makerules.mk: initialize (CC.SHARED.LIBS.target) to match .SHARED.LIST.LIBS.
429207-10-18 parse.c: handle .assoc.*%* : .INSERT to insert into assoc list
429307-09-11 Makerules.mk: fix --force-shared docs to match semantics
429407-09-07 scan.c: tweak ANY logic (leading ANY still does not play nice)
429507-09-07 pkg-cobol.mk: handle ``ID. COPY ...''
429607-08-28 bind.c: handle assoc foo=>bar alias
429707-07-31 rule.c,object.c: handle include - f, f missing in .mo, then exists
429807-06-28 Makerules.mk: fix .SHARED.LIST.EXCLUDE. plugin bug (sortlib/vcodex)
429907-06-25 rules-win32.mk: let $(CPP) do the %.rc=>%.res preprocessing
430007-06-21 Makerules.mk: .IGNORE shared only if ! "$(CC.SUFFIX.DYNAMIC)"
430107-06-21 Makerules.mk: flush dir cache after each :MAKE: recursion
430207-06-21 option.c: handle set --option=';foo;sa;...'
430307-06-21 expand.c: handle --recurse=*implicit* and clean up order_*() apis
430407-06-21 expand.c: + ... intermediate makefile dirs in :W: (-Q0x40000000)
430507-06-20 Makerules.mk: add --recurse=leaf to terminate leaf recursion
430607-06-20 Makerules.mk: handle "lhs :ALL:"
430707-06-15 expand.c: add :W: . alias check
430807-06-11 variable.c: foo:bar==1 equiv to bar==; foo : bar=1
430907-06-06 bind.c: fix ancient internal.openfile bug -- wow
431007-06-06 Makerules.mk: add .SHARED.LIST.EXCLUDE. to exclude self
431107-06-06 rule.c: add self to IGNORECHANGE(), only check primary joint
431207-06-01 rules-win32.mk: PACKAGE_LOCAL=
431307-05-25 Makerules.mk: retry package sans version if version fails
431407-05-21 misc.c: invalidate openfile if _WINIX && st_nlink>1
431507-05-09 Makerules.mk: fix %.req logic
431607-04-20 rules-win32.mk: fix PROTOINSTALL sed <ast_*.h> => <ast/ast_*.h>
431707-04-18 Makerules.mk: add :REQUIRE:
431807-03-26 make.h: add state.expall to detect and disable $(...) recursion
431907-03-26 Makerules.mk: fix .IFFE.REF. to handle -l* reqs
432007-03-23 ppcc.sh: handle -G <number>
432107-03-11 Makerules.mk: add --shared as an alternative to CCFLAGS+=$(CC.DLL)
432207-02-23 Makerules.mk: add :PACKAGE: foo:private for +lfoo but not in *.req
432307-02-14 expand.c: tweak :P=D: alias check (-Q0x10000000)
432407-01-11 --- release 5.2 ---
432507-01-09 expand.c: add :P=D: alias check (-Q0x10000000)
432607-01-01 Makerules.mk: add --local-static with dynamic targets now default
432707-01-01 Makerules.mk: cmd+dll installs dll before command compile/link
432806-12-24 expand.c: handle $("":T=ZW) (equivalent to $("":T=R))
432906-12-24 misc.c: fix :F=T: to handle sec[.nsec]
433006-12-22 Makerules.mk: add CC.STDLIB.BASE to differentiate 32 vs 64 arch
433106-12-22 pkg-X11.mk: use CC.STDLIB.BASE
433206-12-15 Makerules.mk: set up PACKAGE rules to search CC.STDLIB -- doh
433306-12-14 rules-win32.mk: add (RC) (RCFLAGS) to %.rc => %.res
433406-12-12 bind.c: handle win32 dir vs. dir.exe => not aliased
433506-12-07 expand.c: add $("<table>":L...) for { FILES RULES VARIABLES }
433606-12-07 expand.c: add :VX: to still expand value
433706-12-07 Makerules.mk: use $("<VARIABLES>":L=CC.+([[:upper:].])) in .MAM.INIT
433806-11-23 Makerules.mk: fix .BIND.-l% for -g only bootstrap
433906-11-15 Makerules.mk: fix :: vs :LIBRARY: ordering bug for .o prereqs
434006-11-11 Makerules.mk: fix :PACKAGE: vs lib64
434106-10-31 Makerules.mk: add $(PROTOINSTALL) to :INSTALLPROTO:, rules-win32.mk
434206-09-28 Makerules.mk: add $(IFFEREFS)
434306-09-15 Makerules.mk: fix .SHARED.DEF.* scope prereq logic
434406-09-01 Makefile: no -O for command.c on darwin (probably gcc 4.0's fault)
434506-08-15 command.c: handle no action but .AFTER|.BEFORE prereqs
434606-08-11 Makerules.mk: .PACKAGE.INIT now checks lib64 for HOSTTYPE==*64
434706-08-11 command.c: pass $(COSHELL) to coopen()
434806-08-07 command.c,parse.c: add 'query - blocked' for blocked jobs
434906-08-02 command.c: cokill(state.coshell,0,0) to kill event jobs
435006-07-31 metarule.c: handle dynamic metarule rhs
435106-07-27 command.c: clear job->cojobs to prevent concurrent use
435206-07-17 Makerules.mk: cc-...~... => cc-...,...
435306-06-21 expand.c: add :Z[=C]: for closure and cycle detection
435406-06-11 command.c: update to use copending() cojobs() cozombie()
435506-05-09 command.c: pass CO_ENV_OPTIONS to coopen()
435606-03-29 Makerules.mk: fix +l* explicit binding override
435706-03-08 Makerules.mk: fix :JOINT: rhs double eval
435806-02-08 pkg-cobol-cobc.mk: drop -g from COBOLFLAGS
435906-01-31 Makerules.mk: fix :PACKAGE: P:static to honor .PACKAGE.P.library
436006-01-25 Makerules.mk: { -ldl -lm } dynamic unless explicitly overridden
436106-01-21 --- release 5.1 ---
4362	 Makerules.mk: fix list.package.binary INSTALLROOT edit
4363	 command.c: add gcc 4.*.* ppc code generation bug workaround
4364	 read.c: handle /dev/* mtime==0
4365	 version.c: fix { VROOT VOFFSET } initialization
436606-01-08 pkg-cobol-*.mk: handle --debug-symbols
436705-12-25 Makerules.mk: fix :LIBRARY: plugin bind for exe/dll
436805-11-22 variable.c: restore $(+...)==$(-...) until 2009
436905-11-07 Makerules.mk: fix :YYPREFIX: to handle YY in new prefix
437005-11-04 Makerules.mk: PACKAGE_p_LIB => PACKAGE_p_INCLUDE
437105-11-03 expand.c: add :H=P: directory prefix sort
437205-11-01 pkg-cobol-*.mk: add :VARARGS:
437305-10-14 pkg-cobol*.mk: add COBOL.PLUGIN.LIBRARIES for mfcobc plugins
437405-10-12 Makerules.mk: handle "foo :LIBRARY: -lfoo" to gen dll from lib
4375	 tests/cc.def: add test version of pkg-cobol.mk
437605-10-11 Makerules.mk: :PACKAGE: foo:bar => .PACKAGE.foo.option.bar:=1
4377 	 pkg-cobol-mfcobc.mk: add special char extern demangle
4378 	 pkg-cobol-mfcobc.mk: :PACKAGE: cobol:always => .COBOL.INIT
437905-09-15 Makerules.mk: quote .PROBE.SPECIAL return to disable time arith
438005-08-11 rule.c,state.c,tests/attribute.tst: fix .RETAIN
438105-08-08 Makerules.mk: add :A!=.TERMINAL: to .BUILT. -- doh
4382	 tests/recurse.tst: add test for .BUILT. vs .TERMINAL
438305-07-17 Makerules.mk: move cobol specifics to pkg-cobol.mk
4384	 Makerules.mk: add CCSPECIALIZE $(CC.OPTIMIZE) override
4385	 Makerules.mk: add include - + pkg-default.mk
4386	 Makerules.mk: add $(-mam) test for .MAM.INIT in .mo
4387	 Makerules.mk: --mam=static set noreadstate reread strictview
4388	 Makerules.mk: handle package named by root dir: :PACKAGE: /a/b/name
4389	 pkg-cobol.mk: generic cobol package setup
4390	 pkg-cobol-cobc.mk: open source cobol package setup
4391	 pkg-cobol-mfcobc.mk: microfocus cobol package setup
4392	 options.h: OPT_reread is boolean, not numeric
4393	 rule.c: add .FREEZE state.freeze
4394	 tests/recurse.tst: add
439505-05-25 Makerules.mk: use $(CC.INCLUDE.LOCAL) instead of -I- CC.DIALECT
439605-05-18 Makerules.mk: fix --static-link typo
4397	 Makerules.mk: disable .MAMACTION "setv FOO ${FOO}"
4398	 Makerules.mk: add (CC.SHARED.LIBS.*) to capture -l* bind changes
439905-05-11 Makerules.mk: fix --nolib-type to work for referenced libs too
440005-05-05 Scanrules.mk: handle cobol COPY "book" optional quotes
440105-05-01 Makerules.mk: drop -D* from COBOLFLAGS
4402	 Makerules.mk: :PACKAGE: :dynamic => :notype
440305-04-26 Makerules.mk: add COBOLDIALECT
440405-04-20 Makerules.mk: add :P=A: to .LIST.PACKAGE.BINARY VROOT logic
4405	 Makerules.mk: fix PACKAGE_%_LIB logic to handle /usr/%/lib64 etc.
4406	 version.c: fix OLDMAKE to search $(PATH) for { gmake make }
440705-04-15 option.c: fix regress state.start for hi res clock lo res filesystem
4408	 state.c: failed statevar action must set statevar time to 0
4409	 Makerules.mk: change manifest edit op :P=F: => :P=F:T=FR:
441005-04-14 Makerules.mk: drop /usr/common from LCLDIRS, /home from OPTDIRS
441105-04-11 command.c: set internal.openfd FD_CLOEX before coopen()
441205-04-08 parse.c: revisit space indentation [syntax:10]
4413         object.c: pre-2005-03-01 corruption repair drops 0 prereq list items
441405-04-03 variable.c: fix += vs space inconsistencies [assign:09]
4415	 Makerules.mk: restore $(PACKAGE_LOCAL) -- used in user makefiles
441605-03-31 Makerules.mk: add --lib-type
4417	 object.c: move bound object prereq name to COMP_NSEC
4418	 parse.c: fix assertion/assignment intercept $(%) to be operator name
441905-03-19 Makerules.mk: %.sh chmod only if not already writeable&executable
4420	 Makerules.mk: mam ${-debug-symbols...} defaults to ${CCFLAGS.FORCE}
4421	 make.c: fix optional joint metarule prereq state check
4422	 metarule.c: fix closure ordering bug (metarule:23)
4423	 object.c: don't mark (P_joint|P_target) garbage
4424	 object.c: fix makefile prereq subsecond truncation time check
4425	 object.c: fix makefile .SOURCE.mk prereq change bug (diagnostics:14)
4426	 parse.c: .SPECIAL not interpreted as metarule -- doh
4427	 state.c: triggered state var time now synced after action completes
442805-03-17 state.c: fix statefile() to return non-null for --nowritestate
4429	 state.c: demote "file timestamp subsecond truncation" to --warn
4430	 Makerules.mk: fix .SHARED.LIST. to honor --all-static
4431	 Makerules.mk: _PACKAGE_foo=0 => ignore :PACKAGE: foo
443205-03-11 state.c: handle linux subsecond truncation after state lock inode flush
4433	 expand.c: handle */foo?* : lib/libfoo in :W=O:
443405-03-09 Scanrules.mk: cobol accepts "\T \D COPY ..." !
4435	 rule.c: clarify prereq list change explanations
443605-03-08 Makefile: generate nmake.1 from --nroff + make.1.body + make.1.tail
443705-03-01 object.c: fix compcheck() bug that missed some prereq->complink
4438         object.c: repair pre-2005-03-01 compcheck() corruption in load()
4439	 Makerules.mk: fix .LIST.PACKAGE.EDIT. , delimiter clash
4440	 Makerules.mk: fix binary .LIST.PACKAGE.EDIT. to retain arch/HOSTTYPE
4441	 Makerules.mk: fix plugin static :LIBRARY: dll install bug
4442	 Makerules.mk: --static-link => _BLD_STATIC_LINK==1
444305-02-28 object.c: reset errno for "object file io" EOF messages
444405-02-22 make.c: fix joint metarule time comparison
444505-02-14 object.c: object option strings must be utf8
444605-02-11 Makerules.mk: check :MAKE: recursion on .
444705-02-08 Makerules.mk: shared lib link now uses ./*.req too
444805-02-06 Makerules.mk: .FIND. lib/package checks $(PACKAGEROOT) first
444905-02-04 Makerules.mk: drop .LIBRARY.CLEANUP. old plugin cleanup
445005-01-01 --- release 5.0 ---
4451	 high resolution time stamps
445204-12-25 Makerules.mk: handle cc-,a=b
4453	 Makerules.mk: check for -I. after -I-
4454	 Makerules.mk: add MVFLAGS=-f for install actions
4455	 Makerules.mk: relax .PACKAGE.INIT. PACKAGE_%_INCLUDE search
4456	 Makerules.mk: fix list.manifest recursion
4457	 Makerules.mk: add experimental --recurse=combine
4458	 Scanrules.mk: assert .LCL.INCLUDE before .PREFIX.INCLUDE :T=G: bind
4459	 msgcat.mk: fix _PACKAGE_ID
4460	 bind.c: disable bindalias() for unbound files -- doh
4461	 misc.c: fix { %C %S } core dump (after a warning!)
4462	 parse.c: drop CON_scan for over all rules; $(...) does it
4463	 parse.c: drop { .ASSERT .ASSIGN } lists, add { .ASSERT. .ASSIGN. }
4464	 state.c: ignore file timestamp subsecond truncation -- willya fix ext3
446504-12-08 Scanrules.mk: add .SCAN.iffe for `include previous-iffe-output'
4466	 Scanrules.mk: fix $(prefixinclude:?...) => $(-prefix-include:+...)
4467	 Makerules.mk: no -g CC.LIB.TYPE (in ar name) if CC.OPTIMIZE also set
4468	 rule.c: don't propagate .DONTCARE .IGNORE to bound rule
4469	 parse.c: association pattern ending in % is appended
4470	 expand.c: fix :P=A: 3d logic to retain pwd prefix -- doh
4471	 expand.c: fix makefile scan to ignore lib*.[hH]
4472	 bind.c: fix bug that missed bind dir for x given explicit d/x (edit#18)
4473	 misc.c,option.c: *,*=* is a target/prereq, not a (scoped) var assignment
447404-12-01 object.c,state.c: tmsleep() on statefile time for 1 sec granularity
447504-11-25 expand.c: handle :T=<op>=<ops>: for all <op>
4476	 command.c: maintain error state for cancelled actions
4477	 command.c: add .AFTER .FAILURE to capture action errors
4478	 Makerules.mk: LEX = $(FLEX) if flex exists
4479	 Makerules.mk: add :YYPREFIX: fallback to previously generated
448004-10-22 Makerules.mk: check for package-pwd in LICENSEFILES
4481	 Makerules.mk: mam ${(debug|strip)...} => ${-(debug|strip)-symbols...}
4482	 Makerules.mk: add $(LICENSECLASS)
4483	 Makerules.mk: add $(package.license.class) pattern for .LIST.PACKAGE.*
4484	 Makerules.mk: add $(.SELECT.EDIT.) for omitting .RECURSE subdirs
4485	 expand.c: fix recursive order logic
448604-10-01 metarule.c: metaget assumes % target for ... : % .NULL (-Q0x08000000)
4487	 scan.c: add \T token match for (\D|\V)
4488	 Makerules.mk: :PACKAGE: --option checked first, "set" by default
4489	 Scanrules.mk: .SCAN.cob COPY has "\T" lead-in instead of " \D"
449004-09-28 expand.c: fix operator separator parse (edit#17)
4491	 option.c: fix $(-c) option flag lookup (option#14)
449204-09-24 option.c: optcheck() after each option table change
449304-09-21 add --option prereq scope with getopt() style "--" terminator
4494	 expand.c: :P=A: now acts like :P=L!:
4495	 Makerules.mk: fix $(-static) => $(-static-link)
4496	 Makerules.mk: /bin/cat.exe => "%.exe : % .NULL"
449704-09-09 expand.c: add :T=QO: (isoption()) and :T=QR: (!!getrule())
4498	 object.c: finally stomp the complist() panic via compcheck()
4499	 object.c: fix loadstring() to detect early EOF
4500	 option.c: add isoption(), --name[[-+&|^]=value]
4501	 option.c: fix set option table format to handle future extensions
4502	 Makerules.mk: drop PACKAGE_LOCAL definition -- not used anywhere
4503	 Makerules.mk: add rules options, syn with options.c
4504	 Makerules.mk: this version incompatible with make < 2004-09-09
450504-09-01 Makerules.mk: add .LIST.PACKAGE.RUNTIME
4506	 Makerules.mk: fix recursive .LIST.PACKAGE.EDIT.
4507	 make.h,options.h,option.c,command.c: add --serialize, state.serialize
4508	 expand.c: sync :W: 2d and 3d logic
4509	 option.c: add --option values subarg for optget(3) value list
4510	 read.c: fix MAKERULES vs. explicit rules statement logic
4511	 variable.c: change $(+) to $(--[name]), add $(-?[name])
451204-08-31 debug.mk: fix -D-d vs -dD logic
451304-08-11 expand.c: :W=O: scans INIT files too -- duh
4514	 expand.c: fix :P=H: sufix checks
4515	 expand.c: handle :P!=S:
4516	 command.c: fix .JOBDONE rule arg (internal#05)
4517	 command.c: fix --targetcontext directory commit logic
4518	 metarule.c: add --targetprefix=prefix to handle source base clashes
4519	 parse.c: fix local ( a ... ) $(%) (statement#10)
4520	 Makerules.mk: fix :PACKAGE_INSTALL: to use .ACCEPT (e.g. for proto)
4521	 Makerules.mk: fix .MAMEDIT. initialization for 2d vs. 3d
4522	 Makerules.mk: YACCFIX now applies proto to y.tab.h
4523	 Makerules.mk: ignore VERSION==- for default output file names
4524	 Makerules.mk: fix :DLL: to work -- wow
4525	 Makerules.mk: fix synthesized rule names to avoid .. canonicalization
4526	 Makerules.mk: fix :PACKAGE: to handle `foo=bar' rhs
4527	 Makerules.mk: add .LIST.PACKAGE.LICENSE
4528	 Makerules.mk: add separateinclude=1 to override CC.DIALECT=-I-
4529	 Makerules.mk: handle --targetprefix
453004-08-10 rules-win32.mk: add :PACKAGE: { atl crt mfc } support -- puke
453104-07-27 msgcat.mk: move :: related files to msg specific action
453204-07-22 tests/*.tst: more test additions
453304-07-17 archive.c: --regress enables ranlib for all archive types
4534	 bind.c: fix binding guess for unbuilt targets
4535	 bind.c: fix overzealous dir HASH prune for 2d views
4536	 bind.c: allow D_source&P_target to inherit lower view (assert#29)
4537	 expand.c: add :T=B..: unbind pre-op
4538	 main.c: move the .INIT trap after candidate state variable freeze
4539	 main.c,read.c: update MAKECONVERT to handle 'file1:file2 action ...'
4540	 make.c: let joint prereq share sibling frame for binding (assert#34)
4541	 make.c: fix require_p loop detection
4542	 object.c: add objectfile() to unify with statefile()
4543	 object.c: fix lower view state var time propagation
4544	 object.c: -nbf file inhibits frozen var check
4545	 object.c: use complink() skip logic in comprule() -- wow
4546	 option.c: --writestate and --writestate can specifiy dir only
4547	 rule.c: add .GLOBAL and internal.global
4548	 state.c: drop leads/lags warning for --regress
4549	 Makerules.mk: handle multiple :LINK: lhs
4550	 Makerules.mk: fix .DO.INSTALL.DIR view logic with .DO.TOP.LEVEL
4551	 Scanrules.mk: add ".ATTRIBUTE.%.h : .SCAN.c" for .PARAMETER files
4552	 Scanrules.mk: .SCAN.sh: add $'...' quotes
455304-06-30 parse.c: pass blank lines at all input levels to preserve numbering
4554	 parse.c: no space indent warning for blank lines
4555	 parse.c,syntax-08: handle quote after expansion in expression
455604-06-28 make.c: preserve joint metarule prereq list order
4557	 diagnostics.tst: add
455804-06-21 Makerules.mk: make options env ignored if MAKE_OPTIONS set
4559	 make.h: add state.import with increment/decrement semantics
4560	 options.h,options.c,variable.c,object.c: add import state option
4561	 parse.c: fix here action parse to honor quotes and nesting
4562	 parse.c: retain blank/hidden action lines for line number consistency
4563	 trap.c: fix functional vs. obsolete virtual interrupt logic
4564	 assert.tst,automatics.tst,interrupts.tst,syntax.tst: add
456504-06-20 dump.c: drop dumprule() trailing ' ' by adding "state" status
4566	 expand.c: skip tst=='F' for :T=XG:
4567	 make.c: maketop() rule rename disabled (what did that do?)
4568	 misc.c: handle %o in printext() -- oops
4569	 misc.c: %t %T calls tmdate() if not a number
4570	 parse.c: D_scope prereqs do not set P_target
4571	 Makerules.mk: if ! "$(CC.DIALECT:N=-I-)" then no -I- -- duh
457204-06-19 implicit.tst: add
457304-06-18 rule.c: add nametype() to unify is*() name type macros
457404-06-17 options.h: add -q, --regress to massage output for testing
4575	 misc.c: add numtime() for mam/regress/trace numeric times
4576	 prereqs.tst: add
457704-06-12 assignment.tst: add
457804-06-11 Makerules.mk: fix per-target +l vs. -l
4579	 nmake.tst: split into attributes.tst edit.tst options.tst
4580	 options.c: recode to pass options.tst
458104-06-10 nmake.tst: initialize in 2d with no VPATH
458204-06-08 Makerules.mk: drop :PACKAGE: nolibrary => -l%:.VIRTUAL
458304-06-06 rule.c: fix associate() .SCAN match
458404-06-04 Makerules.mk: add :PACKAGE: foo:notype bar:type=-p --type=-g
4585	 Makerules.mk: fix .REQUIRE.* to handle libfoo.a etc.
4586	 scan.c: add 'O' option to inhibit scan override warning
4587	 parse.c: debug=7 for active statements, debug=8 for skipped
458804-05-31 Makerules.mk: fix :PACKAGE: version logic
4589	 Makerules.mk: add .FLAGSINIT, called in .MAKEINIT
4590	 Makerules.mk,Scanrules.mk: strip to generic cobol
4591	 expand.h,expand.c: add ^ edit op sep
459204-05-20 Makerules.mk: fix .OFFICIAL to not diff dirs
459304-05-19 parse.c: make the read builtin interruptable
459404-05-18 rule.c: move b_*() builtins here, add b_syscall()
459504-05-11 mam.c: add "bind ..." to match the mam doc
4596	 make.c: add "meta ..." to match the mam doc
4597	 Scanrules.mk: tweak cobol sql scan
4598	 scan.c: fix ancient dup pattern prefix bug
459904-05-06 Makerules.mk: fix CCLD CCLDFLAGS semantics
460004-04-15 expand.c: fix :V: operand check
4601	 expand.c: check var alternation only before first delimiter
4602	 expand.c: add :P=F: to recursively expand dir hierarchies
4603	 expand.c: fix ancient $(...) non-tokenizing edit op bug
4604	 parse.c: fix dup scope prereq value append
4605	 bind.c: check for consistent ../* bound directory rebind
4606	 Makerules.mk: fix :PACKAGE: :noinclude:nolib:noroot
4607	 Makerules.mk: add :P=F: to .MANIFEST.
4608	 Makerules.mk: add :INIT:
4609	 Makerules.mk: drop obsolete MAKESKIP var definition
4610	 Makerules.mk: proto notice generation disabled unless LICENSE=="*=*"
4611	 Makerules.mk: package/PACKAGE.(lic|pkg) on PKGDIRS inhibits "not found"
4612	 Makerules.mk: "test" action checks for gnu "check"
4613	 Makerules.mk: fix recurse action target selection
4614	 Scanrules.mk: fix .INCLUDE.cob to search lower and upper case suffixes
4615	 rules-win32.mk: add SYSDIR
461604-04-14 Makerules.mk,Scanrules.mk: add COBOLIPF,COBOLSQL
461704-04-12 Makefile: add STDCHMOD (for osf.alpha cmd :LIBRARY:)
461804-04-04 bind.c: don't alias 2d directories -- duh
461904-04-01 Makerules.mk: .BIND.+l% checks .REQUIRE.-l% for disable
462004-03-31 expand.c: add :VB: for VAL_BRACE { ... }
4621	 Makerules.mk: fix .SHARED.LIST. again
4622	 Makerules.mk: add :PACKAGE: noCC.* CC.*=value probe overrides
462304-03-30 Makerules.mk: omit -L*/local/* if in CC.STDLIB (00-03-17 repeal)
462404-03-25 pkg-X11.mk: drop openbsd.i386 -lc_r workaround
4625	 Makerules.mk: fix .SHARED.BIND. CC.SUFFIX.STATIC -l* expansion bug
462604-03-17 expand.c: check { :: :LIBRARY: } lhs
4627	 option.c: fixed bug that looped on `-' or `+' arg -- wow
4628	 Makerules.mk: atom arg disables foo => .FOO checks for subsequent args
4629	 Makerules.mk: fix .LIST.PACKAGE.BINARY :P=A: misplacement
4630	 Makerules.mk: fix inappropriate .BIND.-l% CC.SUFFIX.ARCHIVE .IGNORE
4631	 Makerules.mk: fix .SHARED.REF.* to bind before return
4632	 Makerules.mk: :NOTHING: now does `exit 0' -- almost nothing
4633	 Makerules.mk: I not appended to ARFLAGS if .def :LIBRARY: rhs
4634	 pkg-X11.mk: handle /usr/include/X11R* /usr/lib/X11R*, deprecate contrib
463504-02-29 state.c: fix `another make running' message to handle <=0 elapsed time
4636	 Makerules.mk: CC.LD.RUNPATH used only if LDRUNPATH set (. to kick in)
4637	 Makerules.mk: mam ${MAKE} => ${NMAKE}, ${MAKEFLAGS} => ${NMAKEFLAGS}
4638	 Makerules.mk: localize plugin DLLDIR and CC.SHARED.REGISTRY
4639	 Makerules.mk: do not install plugin CC.SUFFIX.SHARED libs
4640	 Makerules.mk: fix CC.SUFFIX.SHARED CC.SUFFIX.ARCHIVE clash
4641	 variable.c: mam $(-): $MAKEFLAGS => ${NMAKEFLAGS}
4642	 nmake.tst: 001 now ebcdic immune
464304-02-14 scan.c: add class identifier match action 'C'
4644	 expand.c: add :P=E: for PATH independent executable name
4645	 expand.c: static mam :P=A: expands ``.'' for pwd
4646	 expand.c: :N=pat: now uses regcomp() instead of strmatch()
4647	 expand.c: :T=F: lstat() (as always) :T>F: pathstat()
4648	 read.c: extend new vs. old makefile type check
4649	 parse.c: add <<'end' ... end for literal actions
4650	 Makerules.mk: let proto -c '' determine .LIST.PACKAGE.* comment style
4651	 Makerules.mk: add $(CC.EXPORT.DYNAMIC) to default cobol LDFLAGS
4652	 Makerules.mk: add $(CC.SHARED.LD) to differentiate -r and $(CC.SHARED)
4653         option.c: add --writeobject[=file] --writestate[=file]
465404-02-11 Makerules.mk: .LIST.PACKAGE.* generates top view relative paths
4655	 Makerules.mk: add $(CC.AR) for ar
4656	 option.c: fix optget() usage bug that treated --nofoo as --foo
465704-02-02 Makerules.mk: :LIBRARY: plugin static still installs req
4658	 Makerules.mk: fix :PACKAGE: foo:nolibrary
4659	 Scanrules.mk: ignore C++ include <foo> (no suffix)
4660	 object.c: retain reference .IGNORE in state
4661	 option.c: non-0 exit for invalid command line options
4662	 parse.c: don't check D_scope for D_dynamic
4663	 rule.c: add external.order for .ORDER, :W=[OPR]:, :PACKAGE: X:order
4664	 scan.c: null map means ignore; handle |A.IGNORE|
466504-01-30 Makerules.mk: add .LIBRARY.CLEANUP.* to clean up after plugin renam
4666	 Makerules.mk: :PACKAGE_INIT: lhs for pre-installed $(BINDIR) files
466704-01-28 Makerules.mk: add ``lib version plugin=id :LIBRARY: ...''
4668	 expand.c: :W=[OPR]: now favors make if its in the mix
466904-01-22 Makerules.mk: add .PREQUIRE check to ensure up to date *.req
467004-01-20 expand.c: :T=F: includes triggered time==0 targets
467104-01-01 --- release 4.4 ---
467203-12-31 Makerules.mk: $(LDRUNPATH) overrides defaults for CC.LD.RUNPATH
467303-12-19 expand.c: add `foolib:foo:libfoo' to :W=[OPR]:
467403-11-25 Makerules.mk: CC=c++ not found => search for any existing c++ compiler
467503-11-19 Scanrules.mk: default cobol include suffix is .CPY (or .cpy)
467603-09-29 Makerules.mk: fix $(PACKAGES) logic inversion typo (:VARIANT: bug)
467703-09-22 Makerules.mk: don;t clobber $(CATALOG).msg
467803-09-19 Makerules.mk: fix %.sh USAGE_LICENSE quoting
4679	 expand.c: fix :T=E: quoting
468003-09-16 archive.c: inhibit `member newer than archive' for ranlib time skew
468103-08-27 Makerules.mk: honor explicit :MAKE: rhs order
468203-08-11 make.c: change -T0x00300000 to -Q0x00300000 as documented
468303-07-17 archive.c: add arupdate()
4684	 state.c: don't skew sync archives (avoids possible ranlib interference)
468503-06-21 parse.c: fix expr() quote recursion bug
4686	 Makerules.mk: fix .DLL.INSTALL logic
4687	 object.c: add initcode() to initialize the ccode maps early enough
4688	 main.c: add initcode() startup call
468903-06-11 Makerules.mk: reinstate install .a on .dll+.lib systems
4690	 rules-win32.mk: inhibit libast.a install since cc does implicit ast.lib
4691	 Makerules.mk: drop DIALECT==CLOSURE check for new -l* binding
4692	 Makerules.mk: add --mam ${mam_cc_FLAGS} to handle user CCFLAGS override
4693	 Makerules.mk: fix :DLL: to honor CCFLAGS
4694	 Makerules.mk: add -D_BLD_DEBUG to mam CCFLAGS
469503-06-10 debug.mk: add libpp(3) -D-d to %.i rules
469603-06-09 main.c: wait for jobs to finish before making .DONE
4697	 expand.c: change `V edit op value' error to be a warning
4698	 Makerules.mk: fall back to flex if lex not found
469903-06-06 expand.c: add :VFU: to expand unbound internal var names
4700	 Makerules.mk: use .SHARED.LIST. to generate -l* +l* list
470103-06-02 ppcc.sh: -o C++ implies -o PPLD for link time instantiation
470203-05-21 Makerules.mk: fix %.sh=>% :T=E: echo quote bug
470303-05-19 Makerules.mk: runtime check for flex -[oP] and bison -[op]
4704	 Makerules.mk: add strip=1 ala debug=1
470503-05-11 rule.c: fix MAKEPATH=$PWD:$PWD loop
470603-05-09 command.c: add "init TARGET CURTIME" dynamic mam
4707	 command.c: add CURTIME to mam "code TARGET STATETIME CURTIME ..."
470803-05-07 Makerules.mk: add COBOL COBOLFLAGS COBOLMAIN COBOLLIBRARIES .SUFFIX.cob
4709	 Scanrules.mk: add .SCAN.cob, `*( MAIN )*' for main source
4710	 scan.c: add \D (0 or more digits), \V (0 or more variable chars)
471103-04-27 Makerules.mk: don't build dlls in subdir for CC.SUFFIX.SHARED==".x"
471203-04-22 rules-win32.mk: drop :PACKAGE: Xm override -- handled by uwin
471303-04-15 mam.c: output P_ignore attribute
4714	 Makerules.mk: fix the mam .DO.INSTALL to compare before mv to .old!!
471503-04-05 expand.c: add :W=P: for ordered recursive prereqs
4716	 Makerules.mk: add recurse=prereqs
4717	 pkg-X11.mk: add openbsd.* -lc_r pthread workaround
4718	 Makerules.mk: add .PACKAGE.$(P).found:=1 if package lib or header found
4719	 Makerules.mk: optional :PACKAGE: rhs must now be marked :dontcare
4720	 Makerules.mk: pure recursion makefiles make .RECURSE first by default
4721	 Makerules.mk: .NORECURSE inhibits default .RECURSE first
4722	 Makerules.mk: fix .DO.INSTALL directory prereq omission
4723	 Makerules.mk: add .BELIEVE for initialization, e.g., after mamake
4724	 bind.c: fix rebind alias bug
4725	 misc.c: limit `mtime after the epoch' warnings to { S_ISREG S_ISDIR }
472603-03-28 Makerules.mk: eliminate CC.STDINCLUDE before -I- too
472703-03-27 Makerules.mk: add :PACKAGE: *:attributes:*
4728	 pkg-X11.mk: fix CC.REQUIRE.Xm
4729	 rules-win32.mk: add :PACKAGE: Xm:attributes:static
473003-03-21 command.c,object.c: always emit target name for --mam=dynamic
473103-03-19 expand.c: add :W=R: for true :MAKE: recursion order
4732	 state.c: add test 0x00040000 to set failed event to staterule event
4733	 nmake.tst: add first regression tests since 1984 -- yes, I'm ashamed
4734	 Makerules.mk: change :W=O: to :W=R:
4735	 Makerules.mk: use CC.LD.RUNPATH for LDRUNPATH and non-std dirs
4736	 Makerules.mk: drop MAKEDIRS .RECURSE.OFFSET. -- not needed with :W=R:
473703-03-15 Makerules.mk: fix debug=1 to delete $(CC.OPTIMIZE) from CCFLAGS
4738	 expand.c: fix SORT_* comparison function selection
473903-03-11 expand.c: add ~ edit op sep
4740	 expand.c: limit edit op [~!<>=] sep to one occurrence
4741	 expand.c: add :H=[FINUV]: alternative to edit sep overload
4742	 expand.c: add :L~: to use version comparison
4743	 Makerules.mk: use :H=[FINUV]: and :L~:
4744	 Makerules.mk: add pkgconfig(1) .pc file support in :PACKAGE:
4745	 Makerules.mk: fix %.sh=>% :T=E: misquote (ancient!)
474603-03-03 Makerules.mk: .MAM.INIT handles debug=1 for CC.DEBUG vs. CC.OPTIMIZE
4747	 Makerules.mk: add 'test : .DONTCARE .ONOBJECT'
4748	 Makerules.mk: another prefixinclude fix -- my head hurts
4749	 Makerules.mk: pass recursive $(=) by value ( $(=:V) )
4750	 misc.c: fix :F=[LUV]: translation
475103-02-28 Makerules.mk: YACCFIX workaround for bison yytoken addition
4752	 Makerules.mk: include $(LDLIBRARIES) in %.req
4753	 Makerules.mk: fix .BIND.-l% comparison on CC.PREFIX.SHARED
4754	 debug.mk: handle .o scope prereqs
4755	 variable.c: fix $(!) internal.val conflict
475603-02-24 option.c: drop --mismatch alias for --corrupt
475703-02-12 Makerules.mk: handle multiple lhs for :INSTALLDIR:
475803-02-06 pkg-freetype.mk: add
475903-01-31 Makerules.mk: mark .PACKAGE.LIBRARIES. hints .DONTCARE
4760	 Makerules.mk: :PACKAGE: add to .PACKAGE. first, then include pkg-*.mk
476103-01-23 Makerules.mk: more prefixinclude tweaks
476203-01-11 Makerules.mk: CATALOG default is $(.CATALOG.NAME.)
476303-01-10 Makerules.mk: parameterize all silent => $(SILENT)
476402-12-21 --- release 4.3 ---
476502-12-18 Makerules.mk: :NOOPTIMIZE: "..."'d operator arg shenanigans
476602-12-16 Makerules.mk: disable .ARCOPY for linked targets
476702-12-06 Makerules.mk: sync CC.MAKE.OPTIONS,nativepp,prefixinclude logic
476802-12-04 Makerules.mk: fix contorted .so editing for - and  n.n.n versions
4769	 Makerules.mk: parameterize CC/cc suffixes in { .SUFFIX.c .SUFFIX.C }
4770	 Makerules.mk: use { .SUFFIX.c .SUFFIX.C } in :cc: list generation
4771	 Makerules.mk: parameterize fortran suffixes in { .SUFFIX.f .SUFFIX.r }
4772	 Makerules.mk: %.f is now equivalent to %.F
4773	 Scanrules.mk: use { .SUFFIX.c .SUFFIX.C .SUFFIX.f .SUFFIX.r }
4774	 Scanrules.mk: change .SCAN.F to .SCAN.fql -- who cares?
477502-12-03 rule.c: don't .UNBIND M_bind rules (questionable=0x02000000)
477602-12-02 Makerules.mk: prefixinclude=0 if CC.DIALECT has -I-
4777	 make.c: add mutually dependent requirement loop check (for -l loops)
477802-11-28 main.c: don't close error_info.fd in startup
477902-11-21 Makerules.mk: dll version "-" bug that removed the installed dll!
478002-11-20 Makerules.mk: fix :cc: to handle all C source suffixes
478102-11-12 Makerules.mk: handle CC.LD.ORIGIN and CC.LD.STRIP
478202-10-31 main.c: change exit()=>return for pedantic lint
478302-10-28 bind.c: add GLOB_NOTDIR optimization to gl_dirnext
478402-10-25 eliminate a few uninitialized variable references
478502-10-20 Makerules.mk: add :NOTHING: (:ALL: or ...)
478602-10-16 Makerules.mk: fix :MAKE: for rhs files
478702-10-02 state.c: (-Q0x01000000) $(>) use min(r->time,state(r)->time)
4788	 misc.c: tmform() => fmttime(); %K default time format
478902-09-22 Makerules.mk: drop ${mam_cc_STATIC} for +l binding
4790	 expand.c: fix mam $(FOO|BAR) => ${mam_cc_FOO-${mam_cc_BAR}} conversion
479102-09-11 make.probe,probe.win32: move to INIT src to share with mamprobe
4792	 Makerules.mk: add a few more mam_cc_* refs (mamprobe mostly complete)
4793	 Makerules.mk: don't install .a only on .dll+.lib systems
4794	 Makerules.mk: add :PACKAGE: :ignore=dir:, PACKAGE_IGNORE
4795	 Makerules.mk: .PACKAGE.INIT. always initializes .PACKAGE.GLOBAL.
4796	 Makerules.mk: add STDCMP to MAM install action
479702-09-07 Makerules.mk: disable lib REQUIRE closure if from CC.REQUIRE.*
479802-09-05 Makerules.mk: drop .NO.STATIC foo.a => foo-static.a rename
479902-09-01 Makerules.mk: add RMRECURSEFLAGS=-r
4800	 Makerules.mk: assume mkdir -p (handled by INIT install)
480102-08-30 make.c: modified .JOINT siblings now trigger action
480202-08-06 make.h: { setbit shquote } macro rename to appease netbsd -- barf
480302-07-17 make.c,parse.c: allow keepgoing to be set by .QUERY
480402-06-11 Makerules.mk: :F=%(...)S: => :F=%(...)s:
4805	 misc.c: %S %C obsolete warning
4806	 variable.c: fix $(!) that improperly skipped !rule.scan && PREREQS.scan
480702-06-07 state.c: stat() after close() instead of fstat() before for cygwin
480802-06-06 Makerules.mk: fix $(output) to handle -$(VERSION) already in $(PWD)
480902-05-28 probe.win32: updates for { mingw }
481002-05-24 probe.win32: updates for { digital-mars borland lcc }
481102-05-20 expand.c: update to use regsubcomp(),regsubexec()
481202-05-09 expand.c: fix cross() so / X foo generates /foo, not //foo
481302-05-07 archive.c: use <ardir.h>,-lardir for library archives
481402-05-06 probe.win32: add more win32 compilers
481502-04-15 Makerules.mk: fix .DO.INSTALL ln-s to use proper source path
481602-03-29 Makerules.mk: CC.SUFFIX.SHARED==".lib" => CC.SUFFIX.DYNAMIC==".dll"
4817	 make.probe: cygwin CC.PREFIX.SHARED=lib CC.SUFFIX.SHARED=.dll.a
481802-03-27 Makerules.mk: fix .BIND.-l% and .REQUIRE.-l% recursion checks
481902-03-23 Makerules.mk: ensure that _BLD_<variant> is valid identifier
4820	 Makerules.mk: add .LIST.INSTALLED for existing files only
4821	 Makerules.mk: add $(LICENSEFILE) to .FILES.
482202-03-14 variable.c: add label to --mam "setv"
482302-02-14 makerules: add and use CMPFLAGS
4824	 makerules: add win32 ar I flag only when installing .a
4825	 makerules: iffe { CC CCFLAGS LDFLAGS } => { IFFECC ... }
4826	 scan.c,variable.c: .SCAN.IGNORE must ignore state prereqs too
4827	 main.c: fix final message sequence for .ERROR intercept
4828	 state.c,variable.c: fix $(?x) when state(x) exists but rule(x) doesn't
4829	 makerules: add .SHARED.UNIQ. to .COMMAND.o (required by sgi.mips3)
483002-02-02 makerules: mark :VARIANT: target .SPECIAL
4831	 makerules: use STDED & STDEDFLAGS to differentiate from ED=vi
4832	 makerules: drop ED & EDFLAGS
4833	 Makeinstall.mk: add STD* probe with possible execrate(1)
4834	 makerules: inhibit lib/lib closure for CC.DIALECT==CLOSURE
4835	 probe.win32: add CC.DIALECT CLOSURE to inhibit .lib closure
4836	 option.c: -S => -S0
4837	 makerules: fixed .SHARED.UNIQ. to ignore .MULTIPLE -- duh
483802-02-01 makerules: fix .IFFE.REF. for \r\n systems -- barf
483902-01-22 makerules: ARFLAGS += I for CC.DLL on win32.*
484002-01-15 makerules: fix $(CC.PREFIX.DYNAMIC) logic in .BIND.-l%
4841	 makerules: mark $(CC.SUFFIX.DYNAMIC) .SCAN.IGNORE
484202-01-11 makerules: fix $(CC.SUFFIX.LD) prereqs for :LIBRARY: dlls
4843	 make.probe: add .ign to cygwin CC.SUFFIX.LD
484402-01-10 makerules: add proto -e arg to lhs of :INSTALLPROTO:
4845	 probe.win32: add .ign to CC.SUFFIX.LD
484602-01-08 makerules: initialize HOSTCC to $(CC)
484702-01-07 makerules: fix .LIBRARY.STATIC.* binding
484802-01-04 makerules: .REQUIRE.-l% includes pkg-%.mk of lib+prereqs before bind
484901-12-26 makerules: .REQUIRE.-l% includes pkg-%.mk if it exists
485001-12-24 pkg-X11.mk: add CC.REQUIRE.Xaw3d
485101-12-20 makerules: fix .RECURSE.INIT to use only first match of $(MAKEFILES)
485201-12-19 makerules: foo :VARIANT: ... implies _BLD_foo==implies _BLD_foo==1
485301-12-18 makerules: sync .SOURCE.a between .BIND* and .PACKAGE* (again!)
485401-12-15 command.c: fix bug that discarded a running job twice
485501-11-30 command.c: exit 128 silently marks job error but continues
485601-11-25 command.c: add .JOBDONE(target status user sys) .FUNCTION
485701-10-31 makerules: adjust .SOURCE.mk to ensure user specified dir order
4858	 makerules: search MAKERULESPATH for ppcc rather than just MAKELIB
4859	 makerules: delay CC.SHARED.REGISTRY expansion
4860	 bind.c: add debug=14 directory search order trace
4861	 make.probe: fix CC.SHARED.REGISTRY probe typo
486201-10-30 makerules: _BLD_foo==1 only for foo :LIBRARY: source
486301-10-20 makerules: fix --mam bug that didn't parameterize HOSTCC
4864	 makerules: fix .PACKAGE.INIT. and .BIND.-l% to use the same search!
4865	 bind.c: foiled alias still allows bind questionable=0x40
4866	 expand.c: allow all edit op delimiter combinations (e.g., !>, <>)
4867	 make.probe: fix CC.DLL probe for gcc __ia64
486801-10-18 misc.c: clear SFFMT_LONG for %[cCsS] to avoid wide char conversions
486901-10-17 misc.c: add %a %A format, fix unknown format core dump
487001-10-15 makerules: fix .SELECT. bug that improperly dropped .ARCHIVE
487101-10-11 make.probe: fix CC.WARN probe for C++
487201-10-10 Makerules.mk,make.probe: add { SHELLMAGIC CC.SHELLMAGIC }
487301-10-05 make.c: add -Q0x00800000 to disable r->status=FAILED when errors!=0 !!
487401-10-02 makerules: :YYPREFIX: invert case for macro prefix
487501-09-28 makerules: fix .RWD. and .OWD. usage
487601-09-24 fix $(.GETCONF x) builtin
487701-09-19 make.probe: add cygwin dll build probes
4878	 probe.win32: sync with make.probe
4879	 makerules: include debug.mk by default
4880	 makerules: .dll+.lib rule now passes .dll suffix to $(CC.LD)
4881	 make.probe,makerules: add CC.PREFIX.(ARCHIVE|DYNAMIC|SHARED)
4882	 make.probe,makerules: change CC.SYMPREFIX to CC.PREFIX.SYMBOL
4883	 makerules: fix .RECURSE and .ONOBJECT to hit sub :MAKE: levels
488401-09-17 makerules: fix PACKAGE_OPTIMIZE logic
488501-09-11 expand.c: use pathnative() for native fs representation
4886	 openar(): must open with "b" mode
4887	 state.c: open state with "b" mode
488801-09-08 makerules: add *.a prereqs to dll link
488901-09-04 makerules: +l* bind conditioned on .LIBRARY.LIST. for dll builds
489001-08-11 makerules: reference $(CC.DLL.LIBRARIES) last and in link args only
4891	 makerules: +l* in req list now checks .PACKAGE.*.library for -l*
4892	 parse.c: fix `\\\r\n' to act like `\\\n'
4893	 make.h: add FSWINDOWS to include { _WIN32 _UWIN __CYGWIN__ }
489401-07-17 makerules: fix :LIBRARY: to honor LDLIBRARIES
489501-06-21 misc.c: fix strtoll and strtoull macro rename
489601-06-10 makerules: add CC.NATIVE for native objects
489701-06-07 command.c: fix job deadlock bug that improperly broke the loop
489801-05-31 makerules: add option rhs to :DLL:
4899	 makerules: :PACKAGE: add :(optimize|space|time) for PACKAGE_OPTIMIZE
4900	 makerules: add CC.HOSTTYPE != CC.EXECTYPE for IFFEFLAGS
4901	 make.probe: add CC.EXECTYPE
4902	 make.probe: fix { ld nm size strip } search
4903	 make.probe: adjust probe_shared order for linux.arm gcc
4904	 option.c: add --cross to not run generated executables
490501-05-30 make.probe: add CC.NATIVE
490601-05-28 make.probe: add CC.STRIP and CC.STRIP.FLAGS
4907	 makerules: add PACKAGESTRIP check for .LIST.PACKAGE.BINARY
490801-05-26 expand.c: add :T=Y: for mime type
490901-05-09 --- release 4.2 ---
4910	 make.h: isdynamic,isglob,isstatevar: functions to factor out strmatch()
4911	 expand.c: add T=XQ[S[AV]|V[I]] to factor out strmatch() in base rules
4912	 rule.c: speed up associate() by factoring out attributes
491301-05-01 expand.c: order() now handles :PACKAGE: foo:command
491401-04-26 makerules: null out cctype and .CC.PROBE. for --base
4915	 makerules: fix .REQ. bug that missed :LIBRARY: targets
491601-04-25 makerules: add variants=pattern to select cc- variants
4917	 makerules: add .VARIANTS alias for .CC-
4918	 option.c: fix bug that omitted readonly option values in .mo
491901-04-24 makerules: :DLL: sets VARIANT=DLL
492001-04-18 object.c: fix CC_NATIVE!=CC_ASCII buffer overflow
4921	 make.probe,makerules: mvs.390 adjustments for CC.LIB.DLL=symbol
492201-04-01 scan.c: fix * scan match bug that gave up too soon
492301-03-08 printext: handle %*C
492401-02-26 makerules: CC.SUFFIX.STATIC get .ARCHIVE attribute
4925	 makerules: add .NO.ARPROFILE to defer to dll prereqs for dll target
4926	 pkg-X11.mk: check libXmu.sa for openwin
492701-02-14 make.probe,makerules: add CC.DLL.LIBRARIES, CC.DLL.ALTERNATES
4928	 make.probe: linux needs CC.DLL.LIBRARIES=-lc for binary compatibility
4929	 probe.win32: change to CC.STATIC=-Bstatic, dynamic is now the default
4930	 makerules: drop .SCAN.IGNORE for .DO.INSTALL.DIR
4931	 makerules: fix .SHARED.BIND. to pull in dynamic refs
4932	 makerules: change .OFFICIAL diff style to -u
4933	 mam: add `bind -lX [dontcare]' to simplify library binding
4934	 command.c: fix job deadlock bug that used archive before it built
493501-02-07 Scanrules.mk: add .cxx for C++
493601-02-02 makerules: bias package search to viewpath and make installroot
4937	 makerules: *.req can be down the view
493801-01-01 --- release 4.1 ---
4939	 expand: fix :D: to preserve leading / -- how long has this been wrong?
4940	 makerules: fix .PACKAGE.INIT. for dir == /
4941	 makerules: $(PACKAGE_PATH) is list of default package root dirs
4942	 makerules: add recurse=list to list recursion order and exit
4943	 makerules: _BLD_DLL==1 when building dll's
4944	 makerules: link dll with static -l*
4945	 makerules: check =l% bound dir in .REQUIRE.-l% PACKAGE_%_LIB
4946	 expand: eliminate loops from :W=O:
4947	 parse: add exit [code]
4948	 bind: eliminate dups for 2d glob
494900-12-25 makerules: add header arg to :YYPREFIX:
4950	 makerules: add :T=AF: for .ARCOPY
4951	 probe.win32: add cc path *and* args to first line to avoid hash clash
495200-12-18 ppcc: check for old bash
495300-12-15 makerules: handle uwin $(CC.DLL) => -D_BLD_DLL change
495400-12-14 main: initialize version with fmtident()
495500-12-12 makerules: bias :PACKAGE: search for $(INSTALLROOT)
4956	 make: use stat() instead of access() for better NFS behavior
495700-12-11 makerules: _BLD_DLL only for _DLL lib members
495800-12-03 debug.mk: add %.inc for -H include nesting
495900-10-31 option: --corrupt={accept|error|ignore}, --mismatch => --corrupt
4960	 makerules: req file must be seen at of before the lib
4961	 makerules: fix AWK and NAWK default definitions
4962	 makerules: physical=1 => 2d iff in 3d
4963	 pkg-tcl.mk: add CC.DLL, don't clobber TCLROOT
4964	 makerules: define _PACKAGE_foo in .PACKAGE.INIT.
4965	 makerules: add .VIEW to .MAMEDIT and .MAMACTION
496600-10-28 makerules: drop MAKEFILES filter on .SELECT. (why was it there?)
496700-10-26 make.c: fix .JOINT sync bug
4968	 makerules: add $(PACKAGES expr) and :VARIANT: rhs expr
4969	 expand.c: add :T=F[BCFLPR]: to test file type
4970	 makerules: cut down the number of --mam -L options for .req
497100-10-25 makerules: set +x => set -
4972	 makerules: add set - to .req MAM action for zsh
497300-10-24 makerules: add :PACKAGE: name:lib=lib:include=include name:command
4974	 makerules: add :VARIANT: to cc-%
497500-10-18 C+probe: mac os10 additions
4976	 add cc.darwin.ppc for max os10
497700-10-16 object.c: don't compile makefile prereqs if state.base
497800-10-12 misc.c: add %x and %X formats to printf extension
497900-10-04 makerules: fix bug that passed -I- to non--I- CC
498000-10-03 makerules: add :YYPREFIX:
498100-09-21 expand.c: add libxxx and xxx to makefile ordered prereqs
498200-09-07 makerules: handle rhs a=b in :LIBRARY:
498300-08-11 archive.c: add aix <bigaf> archive format
4984	 bind.c: add glob() gl_intr check
498500-07-17 makerules: fix $(cctype) freeze in makerules.mo
498600-06-20 makerules: mam_lib_* always checks lib/lib/* file
498700-06-19 makerules: generate dll in lib.so/libNN.dll
498800-06-01 main,state: a few _UWIN tweaks for W98 FAT
498900-05-31 shquote: fix for `foo == bar'
499000-05-26 option: fix scanargs() bug that skipped some targets before options
499100-05-22 makerules: drop .ORIGINAL.ALL
499200-05-11 makerules: add :PACKAGE: { a b } to pick first of a b (thanks Dr. ek)
499300-05-01 makerules: add $(STDCAT) initialization
499400-04-01 makerules: add skeleton=1 to mkdir virtual directories in 2d
4995	 makerules: add CATALOG and ERROR_CATALOG
499600-03-17 make.probe: fix CC.NMEDIT to grab only external text symbols
4997	 makerules: add :NOOPTIMIZE:
4998	 makerules: allow N.Ntag :LIBRARY: versions (and dll.custom)
4999	 makerules: insert $(*FLAGS_DEFAULT) on *FLAGS
5000	 makerules: don't omit -L*/local/* even if in CC.STDLIB
5001	 parse.c: `unknown operator' now a warning
500200-03-07 pkg-X11.mk: add -lXaw candidate required libraries
500300-03-06 add probe.lcl check
500400-02-14 --- release 4.0 ---
500500-02-10 Makerules: add CC.DLLBIG, :PACKAGE_INIT:
5006	 Makerules: add .ARCHIVE.OMIT. to .ARCLEAN.LIST.
5007	 Makerules: adjust :PACKAGE: search for X11 => X
5008	 Makerules: add .COMMON.SAVE to .LIST.PACKAGE.* source actions
5009	 Makerules: fix setv PACKAGE dirs
5010	 Makerules: add $(PACKAGE_LOCAL) and package_local=arch cmd prefix
5011	 Makerules: apply %.X>% for `f :: b.X'
5012	 state.c: add local skew test for touch(3) { utime(2) or utimes(2) }
5013	 make.c: don't apply metarule if lhs has dir and metarule doesn't
501400-02-08 believe if state.believe>0 and  view level >= (state.believe-1)
5015	 pkg-X11.mk: add PACKAGE_X11_VERSION=6 for X11R6 installations
5016	 pkg-X11.mk: add -ldnet_stub for osf.alpha
5017	 Makerules: fix .REQUIRE.-l%
501800-01-31 Makerules: add $(CC.SUFFIX.LD) in .SHARED.REF.lib
501900-01-25 Makerules: add _MAKE_PROBE_WORKAROUND_ for broken cc -G like sco.i386
502000-01-11 Makerules,probe.win32: -Bwhole-archive + -Bstatic -- whew!
5021	 Makerules: make $(LICENSEFILES) for --mam
5022	 Makerules: add $(DICTIONARY) to USAGE_LICENSE
5023	 make.probe: hosttype now in C.probe
5024	 expand: fix :P=L: path buffer overrun
502599-11-11 expand: add :P=W: for astlicense()
5026	 expand: :P=N: null input generates null (not '')
5027	 bind: fix 2d globv() and bindfile() by adding state.view[].root - wow
5028	 bind: fix 2d :P=L=*:
5029	 mam: capture important empty exec make-done pairs
5030	 main: make sure external.pwd is valid
5031	 Makerules: iffe --static=x => iffe -S x
5032	 Makerules: explicit :INSTALL: inhibits :: install
5033	 Makerules: add MM2HTML
5034	 Makerules: install cc- => cc-install
5035	 Makerules: add .MAM.CCFLAGS to handle .CC.NOOPTIMIZE
5036	 option.c: clean up --errorid
5037	 option.c: add set readonly for state.readonly hook
5038	 Makerules: use set readonly for INSTALLROOT and PACKAGEROOT
5039	 make.probe: sco CC.WARN=-w3
5040	 make.probe: CC.MEMBERS => CC.LIB.ALL CC.LIB.DLL CC.LIB.UNDEF
5041	 expand: add :U[!]: for uniq [file equality] list
5042	 Makerules: IFFEFLAGS initialized in .MAKEINIT
5043	 rule: make sure PWD and VPATH are both logical or physical
5044	 parse: add "x" <|>[=] "y"
5045	 Makerules: add LDLIBRARIES to .SHARED.lib
504699-10-31 Makerules: add :PACKAGE: => :package: if lhs
5047	 Makerules: :MAKE: with no rhs driven by MAKEDIRS and MAKESKIP
5048	 Makerules: add :Q: to "::" assertion scope items (yuk)
5049	 Makerules: add LICENSE hooks, USAGE_LICENSE
5050	 expand.c: add :P=G: to do viewpath glob, :W=O: to order subdir descent
5051	 expand.c: add :O=N:
5052	 expand.c: pretty up :Q:
5053	 expand.c: add :P=V0: for top view logical name of bound file
5054	 rule.c: add globv() for rhs patterns -- strictly . relative down view
5055	 make.probe: fix nmflags logic (for aix -p, portable not)
505699-10-01 Makerules: add %.iffe
5057	 make.c: handle metarule .ACCEPT
505899-07-17 mam.c: outer make...done for virtual joint target
5059	 command.c: fix job deadlock detection
5060	 Makerules: don't pp probe if CC.CC == ""
5061	 Makerules: allstatic=1 for +l propagation, 0 for item only
5062	 Makerules: fix $(.SHARED. ...) usage
5063	 Makerules: :INSTALL*: now handles dir on rhs
5064	 Makerules: add %.cxx
5065	 Makerules: add .ti to clobber list
5066	 Makerules: cc-: `~' => space if specified, otherwise `,' => space
5067	 Makerules: add recurse_enter and recurse_exit
5068	 misc.c: add %[eFfFgG] print formats
5069	 expand.c: generate() lists primary and secondary by default
5070	 Makerules: add .author and PROTOID to PROTOCOPYRIGHT
5071	 Makerules: allow state on :INSTALL*: rhs
5072	 Makerules: .CC.MEMBER: jobs>0 workaround: a bug coverup
5073	 Makerules: add :PACKAGE: debug profile CC.LIB.TYPE
5074	 expand.c: fix putptr(0) base addr switch
5075	 .SCAN.IGNORE: don't block on these - duh
507699-07-17 --- release 3.6 ---
507799-06-24 Makerules: fix .SHARED.ON. test
507899-06-15 make.probe: shlib before others, /var/shlib, -none == ! -all
507999-06-14 Makerules: +lfoo applies to self, not to .req members
508099-05-09 option: separate usage string stream
508199-05-01 main: long options
508299-04-22 Makerules: fix :LIBRARY: for version "-" (no version)
508399-04-01 Makerules: -mam cleanup
5084	 Makerules: %.req version bug fix
5085	 Makerules: :PACKAGE: :nolibrary means it -- don't pull it in
5086	 Makerules: .REQ. fix
5087	 Makerules: fix .req -mam cc script
5088	 expand: regfatalpat() for regcomp() pattern in error messages
5089	 option: first optget() interface -- could be more complete
509099-03-17 Makerules: %.req just binds -- duh
5091	 Makerules: .RECURSE clears .RWD.
5092	 Makerules: handle `lib - :LIBRARY: ...' => no VERSION
5093	 make.probe: CC.DEBUG CC.HOSTTYPE CC.OPTIMIZE CC.STRICT CC.WARN
5094	 main.c: command line scripts done after .MAKEINIT
5095	 main.c: test 0x00020000 to close openfd before coexec
5096	 make.c: D_scope prereqs take effect in make() too
509799-03-01 Makerules: add :P=C: to .MANIFEST.
509899-02-14 make.probe: move some init stuff from C.probe
5099	 make.probe: deal with gcc/ld writing errors to stderr with 0 exit code
5100	 trap: clean up .INTERRUPT interface
5101	 Makerules: :PACKAGE: -l* .MULTIPLE
5102	 Makerules: fix :: :LIBRARY: for cmd and lib by same name
5103	 object.c: retain D_global in load()
5104	 Scanrules: fix .PFX.INCLUDE test
510599-01-23 Makerules: *.req.REQUIRE : .IGNORE
5106	 Makerules: add -f $(MAKEFILE) to .RECURSE $(MAKE) args
5107	 Makerules: .REQUIRE.-l% checks $(PACKAGE_%_LIB)/lib/% first
5108	 Makerules: make :PACKAGE: search picky about version
5109	 Makerules: handle :PACKAGE: -lfoo
5110	 Makerules: PACKAGE_%_VERSION defined
5111	 make.probe: use full path for NM, etc.
5112	 make.probe: libpath not added to CC.STDLIB
511399-01-11 Makerules,make.probe: CC.MEMBERS.UNDEF
5114	 Makerules: fixed .SHARED.lib wrt :PACKAGE:
5115	 make.probe: tweak CC.STDLIB
511698-12-25 Makerules: :LIBRARY: initializes VERSION var if not set
5117	 Makerules: add tgz, tarball; drop update*; pax and tgz recursive
5118	 Makerules: tarball uses VERSION
5119	 Makerules: `:: dir' adds dir to manifest
5120	 Makerules: arch-$(_hosttype_).mk architecture specific additions
5121	 Makerules: $(CC.DLL) uses local *.lib
5122	 expand: add :P=N: for 'native-path'
5123	 expand: :P=S=subdir: to handle recursive manifest
5124	 parse: fix \\n splice bug that activated rules direcive
5125	 rule: .READONLY external support
5126	 bind: (P_readonly|P_terminal) does not get attribute assoc
5127	 bind: add rule_compare() and rule_hash() for case hacks
5128	 option: -o writeobject (on by default)
5129	 expand: regcomp(REG_SHELL) needs REG_LEFT|REG_RIGHT -- duh
5130	 rule: include + "file" to include file as global makefile
5131	 make,rule: fix state.force and P_force for P_dontcare
513298-12-25 --- release 3.5 ---
513398-11-11 expand: :G=x: tokenized
5134	 add ms %.def:%.sym
5135	 make: recheck require_p prereqs
513698-11-01 expand: fix ignorecase bug in :L:
513798-08-11 probe: add probe.ini for arch specific shortcuts
5138	 probe: add opional CC.MAKE.OPTIONS
5139	 Makerules: check CC.MAKE.OPTIONS
5140	 bind.c,scan.c: a few more uwin file path workarounds
5141	 parse.c: readline() now converts \r\n => \n
5142	 variable.c: V_functional looks for "v->name" and ".v->name." rule
514398-07-17 Makerules: check before assuming /usr/lib or /lib
5144	 command.c: fix P_before P_repeat FAILED bug
5145	 Makerules: add .UNBIND to .PACKAGE.LIBRARIES. (must be a better way)
5146	 Makerules: add static=1 to favor lib instead of dll (except for std)
514798-05-26 make.probe: add /usr/lib /lib verification
514898-05-01 rule.c: add .RUN .WAIT for background job control
5149	 rule.c: add .MAKEPROMPT .MAKERUN sequence points
5150	 rule.c: add .RESET to reset rule info to start state
5151	 parse.c: interactive sfpoll sfstdin and state.coshell->msgfp
515298-04-01 expand: plug leak by calling regfree() for :C:
5153	 Makerules: adjust .IFFE.REF. fix to not include package being built
5154	 Makerules: add %.cpp for C++
5155	 scan.c: don't tokenize quoted implicit prereqs!
515698-03-17 Makerules: fix .IFFE.REF. to expand package include dirs
515798-02-14 Makerules: fix .IFFE.REF. to expand required libraries
515898-01-23 Makerules: add _hosttype_ to .MAM.INIT
5159	 Makerules: :PACKAGE: x attempts include - "pkg-x.mk"
5160	 Makerules: handle :LIBRARY: rhs +l*
5161	 pkg-tcl.mk: initial release
516298-01-11 Makerules,probe: add CC.SHARED.REGISTRY and CC.SHARED.REGISTRY.PATH
516397-10-31 Makerules: CC.PIC not that easy to deprecate!
5164	 Makerules: fix -L option for *.req rule
5165	 Makerules: LDRUNPATH unset by default
5166	 Makerules: no CC.SUFFIX.LD to AR
516797-10-11 Makerules: fix :LIBRARY: *.req prerequisites
5168	 probe: fix ld probe, add CC.SUFFIX.LD=".def .exp" for uwin
5169	 make.c: REQUIRE map => - marks rule virtual
517097-08-11 Makerules: .BASE.DATE.FORMAT. for y2k
5171	 Makerules: drop weird xxx.a install in .SHARED.DEF.lib
5172	 Makerules: add $(.sh.) as non-frozen version of $(sh)
517397-07-17 Makerules: move $(MAKELIB) to the front of PACKAGE search
5174	 Makerules: required libraries linked with dll too
5175	 version.c: tighten initdynamic[] loop termination
517697-05-09 Makerules: /usr/local/arch/$(_hosttype_) first in LCLDIRS
5177	 Makerules,make.probe: add mvs.390 dll support
5178	 expand: don't :T=A: if .SCAN.IGNORE
5179	 variable: allow `export name=value'
5180	 Makerules: allow `:MAKE: name=value' => `export name=value'
5181	 Makerules: bias package binding to fully qualified PATH dirs
5182	 Makerules: IFFEFLAGS uses CCLDFLAGS instead of LDFLAGS
5183	 Makerules: don't change -Wl., in cc-% (hack alert)
5184	 Makerules: CC.PIC deprecated for CC.DLL
5185	 Makerules: _INSTRUMENT_ deprecated for _BLD_INSTRUMENT
5186	 Makerules: _TRACE_ deprecated for _BLD_DEBUG
5187	 command: -t attempts to touch fs .o as well as .a/.o
518896-12-25 --- release 3.4 ---
5189	 add CC.LD.DYNAMIC and CC.LD.STATIC to make.probe and makerules
5190	 add .PROBE.LOAD and .PROBE.SPECIAL. to catch/start early probe
5191	 addfile(xxx) for xxx.exe on _WIN32
5192	 bind.c: check for _WIN32 C:/ prefix
5193	 parse.c: -FUNCTIONAL now clears var.functional too
5194	 Makerules: .CC.MEMBERS. fixed for small ARG_MAX systems
5195	 Makerules: OFFICIAL file now in lower view
5196	 Makerules: drop -G* from CC.PROFILE
5197	 Makerules: remove global +lxxx => -lxxx==+lxxx
5198	 archive.c: add `/*/' to SYMDIR_port (for sgi.mips4)
5199	 Makerules: if $(CC.PROFILE) and $(CC.PIC) then don't install .ARCHIVE
5200	 make.c: relax `modifying lower view file' message via dontcare
5201	 Makerules: fix +lxxx MAM bind
5202	 Makerules: fix :LIBRARY: req file generator
5203	 Makerules: fix :PACKAGE: LIBDIR search
5204	 ppcc: install in $(MAKELIB)
5205	 ARG_SCRIPT: fix bug that mishandled `+' and `&' in cmd line targets
5206	 Makerules,probe: add CC.SUFFIX.LD and ldscript for ld scripts
5207	 Makerules: add $(sh command): where has this been hiding
5208	 a:-TARGET now works
5209	 .ARCHIVE not scanned if rule.scan==.SCAN.IGNORE
5210	 :LIBRARY: sets .MAIN.TARGET. too
5211	 make.probe: don't automatically place /usr/lib last
5212	 make.probe: add CC.SUFFIX.LD
5213	 Makerules: handle cc-opt1,-opt2 by splitting options on ,
5214	 bind.c,metarule.c: handle _WIN32 directory ignorecase
5215	 Makerules: add :DLL: .DLL for dll generation
5216	 Makerules: fix .MAKEINIT premature :T=F: that botched .SOURCExVPATH
5217	 object.c: fix to handle 01/24/89 format objects (yes it still works)
5218	 ppcc,makerules: generalize $(CC.DIALECT) option passing
5219	 metarule: case sensitive match for patterns matching `[-+]*'
5220	 archive.c,object.c: (Sfoff_t) for K&R compilers
5221	 MAKEFILES=Nmakefile:nmakefile:Makefile:makefile -- thanks bill
5222	 MAKEARGS=Nmakeargs:nmakeargs:Makeargs:makeargs -- thanks again bill
5223	 probe: add CC.LD.RUNPATH
5224	 makerules: add LDRUNPATH and CC.LD.RUNPATH support
5225	 makerules: tone down PTR prereq scan
5226	 .GETCONF: first builtin function
522796-11-28 ccmaps .mo for ascii/ebcdic compatibility
522896-10-31 outstanding bug reports addressed
5229	 :LIBRARY: defines _BLD_<lib>==1
5230	 use PATH=$(STDDIRS):$PATH to find STDRM etc. in Makerules.mk
5231	 add CC.SUFFIX.DYNAMIC for win32 .dll .lib .a
523296-10-11 metarule rhs prefix dir check even if rhs has prefix questionable=0x8
5233	 alias check path suffix in bindfile questionable=0x10000
5234	 add more instrument guesswork
5235	 .PFX.INCLUDE headers must be .TERMINAL
5236	 fix $(...) bug that let some unselected items slip through
523796-10-01 update make.probe for probe_libdir to catch alpha /usr/shlib
523896-09-09 add CC.PROBEPP to override pp probe info
5239	 add $(INCLUDEDIR) and $(LIBDIR) to .SOURCE* from $(ancestor_list)
524096-08-11 --- release 3.3 ---
524196-07-17 don't pass -D-* to cc in ppcc
5242	 add ``X|external-scan $(%)'' external scan
5243	 clean up makerules/probe readonly
524496-05-31 fix $(".":P=L*) for no views
524596-05-09 make.probe: drop multiple / in stdlib
5246	 try to stat non-readable files
524796-04-22 fix staterule()->scan assignment evaluation order ambiguity in scan.c
524896-02-29 -lxxx binds to +lxxx if +lxxx bound first
5249	 add pkg to OPTDIRS
5250	 cut off botched metaclose recursion unless questionable=0x100
5251	 `.XXX : .USE .IMMEDIATE .ATTRIBUTE' -> `xxx yyy' -> `xxx : yyy'
5252	 fix :PACKAGE: search bug that forced package name to be in root path
5253	 add REGRESS + REGRESSFLAGS
5254	 aliases may produce more than one :P=D: bound dir
5255	 fix nonterminating D_scanned loop in scan()
5256	 handle -L* on :LIBRARY: rhs
525796-02-14 $(CC.SUFFIX.COMMAND) appened only if no suffix
5258	 :PACKAGE: xxx:version=n.m:static:dynamic:nolibrary:noinstall:
525996-02-07 archive scan handles multiple port|rand meta entries
5260	 rescan check on (s|alt)&P_force
5261	 scan A action can now set (.+) or clear (-) attributes
526296-01-31 :PACKAGE: libs now .DONTCARE
5263	 fix touch bug that kept the blasted libast conf*.[ch] out of date
526496-01-01 AT&T Research
5265	 uwin Makerules.mk and make.probe tweaks
5266	 :I<: for literal intersection, otherwise pathname intersection
5267	 convert to <regex.h>
5268	 condition LN on _feature_=ln
526995-12-08 fix :LIBRARY: -lxxx probe
5270	 add uwin dll to make.probe and :LIBRARY:
5271	 BINED -> ED
527295-11-24 . :INSTALLDIR: does not add to all or man
527395-11-11 installed CC.SUFFIX.SHARED are now readonly
5274	 CC.SUFFIX.SHARED==CC.SUFFIX.OBJECT expands -l*
5275	 CC.SUFFIX.SHARED installed readonly
5276	 CC.SUFFIX.SHARED hard linked to CC.SUFFIX.SHARED.major.minor
5277	 P_target && D_dynamic does not imply generated (questionable=0x4000)
527895-10-11 fix :TABLE: options `no' and `NO' entries
5279	 D_source is now cleared in make object for .SOURCE cross product
5280	 $(^) subject to localview() too
5281	 fix :WORKAROUND: for in-place changes
5282	 set include=dir appends to .SOURCE.mk
5283	 .ASSERT intercepts not applied to .IMMEDIATE targets
5284	 -d4 lists make object prerequisite file info
5285	 fix state.targetcontext expand bug that dropped too many marks
5286	 add %.o:%.S to makerules/scanrules
5287	 intersect() now handles invented :P=D: .. dirs not in .SOURCE*
5288	 drop $(CC.REPOSITORY:@?-l??) from PPCC
5289	 add sun -[Qq](dir|option|path|produce) to ppcc
5290	 add proto -x to :INSTALLPROTO:
5291	 fix compvar() V_oldvalue bug that put command line def in .mo
5292	 internal.export -> internal.exported for proto export keyword
5293	 :T=G: never matches non-target .TERMINAL
529495-10-01 add :TABLE: novariables to inhibit leaf variable assignments
5295	 add preliminary long edit op names and converter
5296	 D_global if not P_target (questionable=0x800 for old behavior)
5297	 alias if !streq(name,r->name) (questionable=0x1000 for old behavior)
5298	 fix scanrules .PREFIX.INCLUDE. handling of ../*
5299	 more aggressive putbound() in bindalias() (-Q0020000 for old)
5300	 `.FORCE : x' sets P_force too
5301	 longest metarule patterns applied first
5302	 more alias fixes
5303	 move scan attribute/property additions before staterule() call
5304	 :INSTALLMAP: ... scan now more selective
5305	 .UNBIND now sets rule.time=0
530695-07-17 --- release 3.2 ---
5307	 :F=%x: sfio 'u' internal format now handled
5308	 fix .PTR.OPTIONS. initial condition
5309	 fix .ERROR to work like 2.2 if !.FUNCTIONAL
5310	 .FUNCTIONAL .ERROR return value: new level, no msg if already printed
531195-06-28 add *.ii to .CLOBBER. for EDG C++
531295-05-09 add SYMDIR_strict for strict ranlib uptodate check
5313	 change $(!$(*:O=1)) to $(!$(*)) since lists are ok now
5314	 drop .SAVE. since :: already handles it
5315	 add old value to state variable changed explanation
5316	 add .DO.READONLY.-xMerge
5317	 unused var cleanup
5318	 another make.probe preroot workaround
5319	 add .CC.NOOPTIMIZE local scope
5320	 handle `t {}' and strip lead space in {...}
5321	 fix r==0 dereference in :P=B:
5322	 don't force CCFLAGS=-g for instrument=purify
5323	 fix .BIND.-l% version interactions with -lxxx.[0-9]
5324	 add -o noalias to diable directory aliasing (for .INSTALL.LIST)
5325	 make.probe pic test must check linker too
5326	 calm down +([a-z]) => .+([A-Z]) conversion for :ALL: and .ARGS
5327	 &error_info cannot be in a static initializer
5328	 .OFFICIAL uses .MANIFEST. instead of .SOURCES.
5329	 fix scope var bug that appended twice
5330	 add - stack debug command to query
5331	 drop extra .so's from ship.list.bin
5332	 state.mam.out && !state.mam.port doesn't rebind after build
533395-04-01 `:: xxx' marks xx .TERMINAL
5334	 fix recursion bug in :G:
5335	 define PACKAGE_* vars if !mam too
5336	 fix ciadb to exclude headers that may generate %.o (e.g., *.c)
5337	 fix stray M_mark bug caused by expand() inside intersect()
5338	 fix :INSTALLMAP: with no lhs
5339	 :PACKAGE: is a little less restrictive on package root search
5340	 use $(CCLDFLAGS) in %:%.s
5341	 change :T=G: to check .TERMINAL state before .TERMINAL
5342	 fix ppcc.sh pattern match ksh93ism for bsh compatibility
5343	 fix PROTOFLAGS expansion with :Q:
5344	 generated .SCAN.c do not get .PFX.INCLUDE
5345	 scan prereqs for .JOINT targets are in staterules(PREREQS)
5346	 change obsolete MAM -expandview ref to static*,port*
5347	 fix trap bug that used elementsof(int*caught)
5348	 makerules PTRMUST -> PTRMKDIR
5349	 alpha archive symbol directory has word size embedded _64E[BL]E[BL]_
5350	 fix \0 in output of recursive print -um
5351	 fix bindfile() .. test for terminal directories [via Rich Drechsler]
5352	 tablook() prototype tweak
5353	 fix putbound() test in bindfile [via Dan Tiernan]
5354	 beef up makerules $SHELL -n test
5355	 drop newlines from PROTOCOPYRIGHT for MAM
535695-03-19 fix .AFTER job freelist bug in trigger() [via Rich Drechsler]
5357	 add makerules STDDIRS; SYSRM -> STDRM {cmp,cp,ln,mv,rm}
5358	 clean up makerules INSTRUMENT_* interface
5359	 -v no longer turns on ppcc verbose
5360	 fix cc- MAKEPATH override by $(=)
536195-02-14 fix targetcontext mkdir() test
5362	 fix printarg() for proper sfio interface
536395-01-19 add CC.ARFLAGS for $(CC) that generates libraries
5364	 add CC.DIALECT=PTRIMPLICIT for implicit C++ ptr dir name
5365	 add CC.DIALECT=PTRMKDIR if C++ local ptr must exist
5366	 add CC.DIALECT=PTRCOPY if C++ PTRMKDIR contents copied
5367	 fix CC.READONLY probe to cast the const pointer assignment
5368	 punt() now assumes oldmake has mam if options set
5369	 add a few .SPECIAL's in ::
5370	 fix rule.time update for .NULL action in trigger()
5371	 add A_* flags instead of assertion() set.clear, etc.
5372	 OP_NONE assertions are A_special
5373	 x :LIBRARY: makes x virtual prereq of .ALL
5374	 "local" statement mods for operator and function arg handling
5375	 local same-name same-name gives dup name initial value of 1
5376	 local name=value now accepted
5377	 local -[n] arg ... sets $(1) ... [empties missing up to n]
5378	 local (formal ...) actual ... sets formals from actuals
5379	 $(;) returns the state data (formerly $(#))
5380	 $(#) is the arg count from local -[n] | (formal ...) ...
5381	 add TABLE.mk for :TABLE: table and map lookup
5382	 add SS.mk for :SS: directory hierarchy subsystems
5383	 don't forceread if global (questionable=0x400 for old behavior)
5384	 add -o targetcontext to expand action in target dir context
5385	 add state.context and MARK_CONTEXT for state.targetcontext
5386	 fix a few more alias bugs
5387	 .MAKE .LOCAL actions can contain parent scope assignments
5388	 add base and delta common actions for pax -z support
5389	 add :SYSTEM: to :SS: in SYSTEM.mk and delete SS.mk
5390	 fix rebind to first clear D_entries|D_scanned
5391	 add "*.[sS]|*.[aA][sS][mM]" to ppcc source list
539295-01-01 fix .CLOBBER $(-global) expansion
5393	 .NULL metarule now provides equivalence for :G:
5394	 avoid multiple entries in make.probe CC.REQUIRE.++
539594-12-25 ppcc, MAM -l<shared>, probe tweaks
5396	 fix port/rand ar touch bug that modified member terminator
5397	 fix .DO.INSTALL bug that asserted x : x
5398	 avoid a few more 'not compiled' panics
5399	 add -o mam=<type>[,noport] to inhibit porting hints
5400	 drop mam_port and use noport mam option
5401	 fix V_retain bug that took value from lowest view statefile
5402	 fix PACKAGE .SOURCE.(h|a) that blew the CC.STD(INCLUDE|LIB) order
5403	 fix .REBIND to work like .UNBIND on directories
5404	 PACKAGE lib not .DONTCARE by default
540594-11-11 --- release 3.1 ---
5406	 detect loops in complete() to avoid `did not complete'
5407	 fix D_entries|D_scanned propagation in merge()
5408	 fix .BIND. view and state.targetview propagation
5409	 add :WORKAROUND: for external distribution workarounds
5410	 merge(MERGE_ALL) does not propagate rule.scan==SCAN_NULL
5411	 .OFFICIAL diffs changed files into ./OFFICIAL
5412	 fix scan attribute propagation interaction with dirscan()
5413	 fix uninitialized od reference in bindfile()
5414	 fix ppcc -O over shift and empty rm
541594-10-01 CC.DIALECT DOTI : *.i accepted as preprocessed input
5416	 CC.DIALECT TOUCHO : cc link may touch *.o
5417	 $(CCC) dropped in favor of simpler $(PPCC)
5418	 $(FEATURE) changed to $(IFFE)
5419	 add -o mam=<type>[,dontcare] to list dontcare targets too
5420	 fix staterule() to accept top view state if time matches
5421	 fix bindfile()+putbound() for ..
5422	 fix VOFFSET,VROOT for non-3d
5423	 fix bindstate() recursion
5424	 fix metaclose() bug that forced artificial metarule ordering
542594-08-11 add state.questionable mask (looks like it should go but not sure)
5426	 move some state.test bits to state.questionable
5427	 add MAM generated attribute
5428	 add fs3d view loop test
5429	 Os option arguments must be specified
543094-07-17 --- release 3.1 ---
543194-06-11 add -o believe=level (-B level) for 2d
5432	 -b no longer implies -c
5433	 -b implies no makerules
5434	 uncouple state.keepgoing from state.mam (should have learned by now!)
5435	 dirscan() sets rule.bound and rule.time
5436	 add .SYNC : file [edit-select]
5437	 fix .QUERY longjmp active frames and error trap hold
5438	 fix pattern association parse that botched ../*%*
5439	 avoid pathcanon() in metarule makerule() calls
5440	 change include from control statement to immediate rule
5441	 use rule in include list uses action as include file filter
5442	 add makerules mam_port=0 to inhibit -o mam=static ${mam_*} mappings
5443	 promote lower view state to top on load if no previous top iview state
544494-05-22 virtual preview not propagated
5445	 fix nested loops in file input
5446	 fix unalias() bug that dropped original binding
5447	 fix merge() bug that called bind() while bind in progress
5448	 fix -ptr *again* for CC 3.0.3
5449	 add $(^) for current line in scan
5450	 :A>pattern: matches rule prereqs
5451	 fix statevar stateview search that unnecessarily forced re-scan
5452	 .PARAMETER file checks now done after .INIT
5453	 update CIA rules to use DOT instead of DAG
545494-04-01 .ERROR made for levels > 0; return 1 inhibits message print
5455	 $(.ERROR) set to level and message text inside .ERROR
5456	 stateview() now binds before searching state views
5457	 fix CC.SO install for live replacement
5458	 add .COMPDONE to fit the .INIT+.DONE pattern
5459	 add rule.mark and M_* to eliminate mark clashes
5460	 add .INTERRUPT.<signal> for signal specific handlers
5461	 add .ALARM:<elapsed> immediate rule to set alarm
5462	 add $(.ALARM) to be absolute time for next alarm, 0 for no alarm
5463	 add .SYNC immediate rule to sync statefile
5464	 maketop() now resets property when complete
5465	 maketop(P_ignore) temporarily sets keepgoing=1
5466	 xxx -> .XXX immediate test for all `no operator on line' statements
5467	 .FORCE : xxx forces xxx to be new
5468	 { action } -> .ALWAYS :$("\n\t")action
5469	 immediate a b c -> .IMMEDIATE : a b c
5470	 attribute a b c -> a b c : .ATTRIBUTE
5471	 a b c { action } -> a : b c$("\n\t")action
5472	 :MAKE: allows rhs a/b
5473	 .DO.l.CC dropped -- let C++ fend for itself
5474	 (<id>*)<stuff> can appear as target
5475	 $("":D) no longer produces ``.''
5476	 print -n -u[0-9m] -f "format" +-[io] path -p command data ...
5477	 read -n -u[0-9m] +-i path +-o path -p command variable
5478	 -uxxx may appear in $(INSTALLROOT)/lib/lib/<LIB>
5479	 fix scan | ... % | bug that forced trailing space
5480	 replace CC.OBJ and CC.SO with CC.SUFFIX.*
5481	 .MAKE .OPERATOR prereqs made before operator applied
5482	 add .PROBEINIT to .MAKEINIT and "::"
5483	 .SHARED. now links with CC.SUFFIX.SHARED sibling library if it exists
5484	 fix alias .UNBIND
548594-03-01 unify mam with gmake (additions done by gsf)
5486	 -o mam={dynamic|regress|static}[:file[:[label][:root]]]
5487	 -M no longer implies -nF
5488	 -o mamtrace=file (-m) dropped
5489	 -o regress=root dropped
5490	 -o never (-N) added to override .ALWAYS
5491	 fix scan bug that assigned strategy before binding
5492	 frozen V_functional always causes .mo recompile
5493	 add oldname(r) to fix unbind bug that omitted putbound(r,0)
5494	 ``else if'' now accepted for ``elif''
5495	 complain about extra chars after else and end
5496	 add :T=Z[CERS]: for {cancel,event,relative,state} time
5497	 fix circular implicit prereq actions
5498	 fix aix shared library probe
5499	 finish now handles errors in .MAKEDONE and .DONE
5500	 fix stray D_mark unbind with D_markbind,D_markprereq,D_markscan
5501	 fix :READONLY: probe for mips
5502	 base rules unbound after reading (so make can install them!)
5503	 delay statefile load until after makefile read
5504	 add complete() for MAKING implicit prereq
5505	 add CC.REPOSITORY with repository dir value
5506	 delete PTREPOSITORY from CC.DIALECT
5507	 stop .INSERT|.APPEND from adding duplicate prereqs unless .MULTIPLE
5508	 .QUERY now pushes an active frame (shows up in $(<))
5509	 fix state view resolution in stateview()
5510	 fix :G=a/b: with no %
551194-02-14 warn about implicit reference while action in progress
5512	 add print -opath
551394-01-31 .CLEAR now checks staterule before freeing prereq list
5514	 .UNBIND now clears D_global, D_regular and preview
5515	 add :F=%(time-format)T:
5516	 add :F=%(invert|lower|upper|variable)S:
5517	 change :F=[LUV]: to :F=%(lower|upper|variable)S: with obsolete warning
5518	 fix .MEMBER view/preview mismatch that triggerred unnecessary actions
551994-01-11 $("":T=R) operates on current date
5520	 add print -n -u[12m] -f "format"
5521	 fix \<newline> action parse
552293-12-01 --- release 3.0 ---
5523
5524:::::::: probe ::::::::
5525
552610-06-01 sync with ast api 20100601
552707-02-22 probe.c: fix double sfclose(fp)
552806-09-05 probe.c: add -f, --force
552902-10-30 probe.c: reset proc->rfd after sfnew() to avoid close() error
553002-09-21 probe.c: handle strlen(base) != BASE_MAX
553102-09-11 probe.c: add more override docs
553202-01-30 probe.c: add probe.ini check to match libast/pathprobe()
553301-12-03 probe.c: return HOME relative path if readonly/non-suid fs
553400-08-11 probe: fix non-suid generation check
553500-01-11 probe: fix -t with writable info
553699-09-01 probe: add --override
553799-05-09 probe: long options
5538
5539:::::::: ss ::::::::
5540
554110-06-01 sync with ast api 20100601
554204-07-22 ssd.c: access() => eaccess()
554303-07-29 ssd.c,features/cmd: add utmpx support
554499-05-18 ss: long options
554597-08-11 ssd: fix now used before defined bug
554695-05-09 fix ssd nlists feature tests
5547	 add a few more utmp file macros from <utmp.h>
554895-02-14 fix an extremely botched since() macro
554995-01-19 fix user idelt time check that broke loop too soon
5550	 checks every 10s, updates every CS_STAT_FREQ if not interesting
5551
5552:::::::: at ::::::::
5553
555412-02-29 atd.c,atx.c: fix uid/gid sequencing for unix/winix compatibility
555510-06-01 sync with ast api 20100601
555610-03-19 atd.c,atx.c: each job in separate session
555706-10-11 add sfstruse() error checks
555806-09-19 atd.c: sysconf() => astconf()
555906-05-17 crontab.sh: handle empty or nonexistent crontab
556005-06-29 crontab.sh: fix (...) => @(...) syntax error
556102-02-14 atd: add strdup(argv[1]) to workaround argv[1]=>0 mystery
556201-06-18 crontab: clarify the command<=>job relationship
556301-03-28 atd: fix log file rollover infinite loop
556401-02-14 atd: monitor daemon and restart if it dies
556501-01-01 atd: add actual and expected info to atx log messages
556600-09-28 crontab: update USAGE
556700-06-16 atd,atx: use base 36 instead of 64 in job names (now just lower case)
556800-05-22 crontab: clarify crontab jobs w.r.t at(1)
556900-05-09 atd: ": LABEL; command" sets job label to LABEL
5570	 atd: roll over log file to AT_LOG_FILE.old each month
557100-03-14 at,atd: add at.allow and at.deny checks; tweak uwin verifcations
557200-01-22 --- release 1.2 ---
557300-01-22 crontab: fix getopts check
557499-10-11 at,atd: fix job dictionary bugs
557599-08-11 at: fix usage for at+batch
5576	 at.h: add AT_STRICT
557799-06-23 atd: fix job queue handle lookup that dropped jobs
557899-06-23 --- release 1.1 ---
557999-05-09 tweak uwin FAT checks -- how do you get FAT security?
5580	 at,batch,crontab: long options
558199-04-01 crontab.sh: "..." path vars
5582	 the official off-by-one bug of the millenium
558398-07-17 fix bad scanf base 64 format
558498-02-14 get it working
5585	 add -A for admin commands (all entries, all queues)
558697-11-11 atd: use csread(CS_RESTART) to avoid SIGCHLD interrupts
5587	 atd: add state.atxd in.atxd code for systems with incomplete chmod u+s
558897-10-31 fix `at date ...' arg parse bug
558996-05-24 --- release 1.0 ---
5590
5591:::::::: builtin ::::::::
5592
559312-05-31 od,tr: errno!=EPIPE => !ERROR_PIPE(errno)
559412-02-28 pty.c: change --verbose[=level] to --debug=level
559512-02-11 what.c: fix boyer moore cut n paste bug -- thanks werner
559612-01-26 pty.c: fix --man docs
559710-04-22 dlls.c: fix --path to only list the path -- doh
559810-11-03 od.c: use is[w]print() for printable char check
559910-10-19 od.c: speed up inner loop
560010-09-15 od.c: fix (unsigned char*) (char*) mismatches
560110-09-08 tr.c: handle tr abc '[%*]xyz'
560210-08-04 dlls.c: add -l to list plugin version stamps
560310-06-21 pty.c: add 4 sec timeout for initial handshake -- fix me!!
560410-06-01 od.c: add -c locale checks (and undo some fmtesc() work), add ast -tC1
560510-04-12 pty: fix sfpoll() result read/write bug
560610-04-12 cat.rt: add -v tests
560710-04-11 cmp.rt: add
560810-04-01 pty: add --tty='stty-settings'
560910-03-23 tail.tst: add -f large initial offset test
561010-03-19 pty: add --dialogue
561110-03-15 pty: fix select() fd management
561210-03-07 tail.tst: add partial line -f test
561310-03-05 mktemp.rt: add
561409-09-24 uuencode,uudecode: use uumeth(0) to generate usage method list
561509-08-18 testtail.sh: add fifo tests
561609-08-01 join.tst: TEST 19 for empty field defref bug
561709-05-24 tail.tst: add r combinations
561809-03-31 features/pty,Makefile: add pty.h and -lutil refs for linux -- great, another util library
561909-02-14 join.tst: add a VSC test
562009-02-14 tail.tst: add some VSC tests
562109-02-02 mktemp: add
562209-02-02 tail.tst: update for -b[blocks], +cl, -cl
562309-01-30 pty.c: add <ast_time.h> (for fd_set!! on mvs.390)
562409-01-12 tr.tst: add tests for trailing '-' in source and/or destination sets
562509-01-03 mkfifo.rt: add
562608-10-15 rm.rt: add to test rm -f x x
562708-02-14 look.c: fix operand parse / diagnostic bugs
562808-01-30 expr.tst: add substr * 1 * tests
562907-09-21 cksum.tst: drop sha1, add -r compatibility
563007-02-23 cksum.tst: add -x tw tests
563107-02-07 cksum: handle std => libcmd move
563206-12-12 chmod.rt,mkdir.rt: add absolute mode tests
563306-11-15 cp.tst,ln.tst,mv.tst: add initial regression tests
563406-10-31 global edit to eliminate most non-const static data
563506-10-11 add sfstruse() error checks
563606-08-25 uniq.rt: add initial regression tests
563706-08-23 mkdir.tst: add -p final dir mode tests
563806-07-20 pty.c: add
563906-06-25 chmod.rt,mkdir.rt: add initial regression tests
564006-06-24 dlls.c: add --containing
564106-01-30 od.c: add -tb binary character format
564205-12-06 od.c: handle od() static split buffer overflow
564305-08-07 tr.c: fix a-b- and a-b-c
564405-03-07 od.c: handle -t ...z for --printable
564504-10-01 fmt.tst: update for --optget
564604-09-30 od.c: -v does not accept an offset operand
564704-08-08 uuencode.c: fix -x docs, add -b == --method=binhex
564804-07-22 look.c: access() => eaccess()
564904-07-01 pr.c: add -c and -v via sfio input discipline
565004-05-27 expr.tst: add string and `:' operator tests
565104-04-14 tr.c: char* => unsigned char* to avoid sign extension
565203-10-11 od.c: add --map=ccode, -tm, generate doc from tables
565303-09-18 tail.tst: add header and timeout tests
565403-07-28 expr.tst: add
565503-07-14 fmt.tst: add
565603-06-10 who.c: ctime() arg must be time_t* (linux.s390-64)
565703-05-21 asa.c,asa.tst: add
565803-05-15 join.tst: add -v2 tests
565903-04-05 nl.tst: generate test data file
566003-02-24 nl.c,nl.tst: add
566103-02-14 od.c,tr.c: no error message for EPIPE
566203-02-11 dlls.c: add Dllinfo_t.env
566302-11-14 what.c: stop on < to catch html/xml
5664	 update cmdinit() calls for 4th flag arg
566502-09-11 dlls.c: add --base & --path
566602-09-05 pr.data: eliminate case ignorant file name clashes (for mac os X)
566702-08-30 dlls.c: exit 1 if no matching dll found
566802-08-28 od.c: check and report write errors -- ouch
5669	 dlls.c: add --info
567002-08-23 dlls.c: add
567102-08-19 chown.tst: add chow regression tests
567202-04-15 look.c: add look.tst, fix hang
567302-03-24 uudecode,uuencode: sfopen "rt" for \r\n -- puke
567402-01-24 look.c: drop <strings.h> ref
567501-11-26 what.c: fix doc type, add --matched
567601-10-31 what.c: fix omitted file arg doc
567701-06-06 who.c: fix entry skip logic that listed too many entries
567801-05-31 Makefile: add PACKAGE_OPTIMIZE=space checks
567901-05-29 Makefile: if -lcmd is dll then BUILTINS linked to one a.out
568001-05-21 tr: regcollate() interface update
568101-04-17 date.tst: move from std
568201-04-01 uudecode: fix -o decode-file and add regression test
568301-03-39 uudecode: add --local for UU_LOCAL
568400-12-04 look: add
568500-12-01 what: add RCS ident(1) $Id:
568600-04-01 uuencode: umask 022 for consistent header comparisons
568700-02-14 fmt: move to libcmd
568800-01-06 pr: fix empty field in multi-col output
568999-11-19 pr: -t == -T
569099-10-01 strings: add --long-strings
569199-08-11 mime,strings: fix usage[]
569299-06-25 who: fix printing of data strings with no \0
569399-06-20 who: fix -i
569499-06-17 who: add
569599-06-11 pr: fix date failure logic
569699-06-08 expr.tst: add -- it needs more too
569799-05-21 paste.tst: add -- but it needs more
569899-05-01 mime,strings,what: long options
569999-04-28 uuencode,uudecode: long options, file arg interpretation fix
570099-03-17 od: --swap=0 for testing
5701	 od: allow space and , in --format, --type==--format
570299-03-11 od: add -w number-per-line, long options
5703	 strings: drop debug error(1) call
570499-03-01 tr: fixes for gnu tests, long options
5705	 join.tst,tr.tst: add gnu tests
5706	 cut.tst: create from gnu tests
570799-01-11 tail.tst
570898-12-25 od: fix cform() for fmtesc \"
5709	 uuencode.tst: update for uulib/uu_encode fill bug fix
571098-11-11 uuencode.tst
571198-08-11 uuencode,uudecode: use <uu.h> and -luu
571298-07-01 strings: fix for default format!
571398-06-01 strings: fix offset format with I*
571498-05-29 join.tst: TEST 09
571598-05-18 what: change "%s%-*s" to "%s%-.*s" and fix buffer boundary bug
571698-03-01 tr: fix char class range bugs
5717	 tr.tst: add
571897-10-01 strings: add -m for multibyte
571997-07-17 join: more tests in join.tst
5720	 uudecode: ignore chars after counted limit
5721	 uudecode: add binhex (decode only)
5722	 uudecode: fix posix/ucb uu_decode()! time for uu.tst
572396-12-25 od: add od.tst
5724	 od: off_t -> int_max
572596-11-28 uudecode: fix buffer boundary bug in qp_decode
572696-09-06 tr: fix [A-Z] [a-z] bug
572796-05-09 what: I don't know (third base)
5728	 uuencode: add
5729	 uudecode: add
5730	 tr: add
573196-04-15 od: add
573295-10-11 grab b_* list from cmd.h
5733	 add void* context 3rd arg to b_main()
5734
5735:::::::: codex ::::::::
5736
573709-04-15 codex.c: add --passfile=file
573808-05-08 codex.c: Codexdisc_t can't be on main()'s stack due to SF_ATEXIT
573906-08-23 codex.tst: add uu boundary and text tests
574004-01-11 doc update
574104-01-01 add --passphrase
574203-12-18 add to ast -- still working on relationship with { -lvcodex -lz -lbz }
5743
5744:::::::: dss ::::::::
5745
574611-09-11 dss.c: its --map=file, not --map --- doh
574711-06-15 dss.c: document '< expr-file' '< file-list-file'
574810-05-21 dss.c: add SEE ALSO \bdss::dss\b(5P) (after libast::optget() fix)
574910-05-11 dss.c: drop --info=style in favor of generic --plugins=style
575010-05-04 dss.c: change -i,--info to -i,--info={man|html|nroff|usage}
575109-07-02 dss.c: fix EXAMPLES typo
575208-07-17 dss.c: tweak self-docs
575306-10-11 add sfstruse() error checks
575403-02-06 dss.c: convert main loop to dssrun()
575503-01-23 dss.c: update stamp to reflect library version 20030123
575603-01-15 dss.c: fix match docs for Cxmatch_t
575702-12-25 dss.c: fix default expression logic -- dsscomp() requires {...} at top
575802-12-24 dss.c: init checks now done by dssbeg()/dssend()
575902-12-17 propagate -ldss changes
576002-12-04 dss.c: dssopen() and method option check before main arg check
576102-12-01 dss.tst: move to method specific source dirs
576202-11-27 dss.c,dss.tst: change --format => --print, --type => --format
576302-11-22 dss.tst,Makefile: redo data file naming
576402-10-18 dss.c: handle DSS_NOOUTPUT after dssbeg()
576502-10-17 dss.c: drop ancient argv[0] method initialization
576602-10-09 dss.tst: add bgp-ipma and flat tests, rename test data files
576702-09-24 bgp.prt,netflow.prt: move to src/lib/libdss/dss-*.prt
576802-09-11 dss.c: add -n, query dssbeg() and dssend() calls, -c matched/total
576902-08-29 move pta to separate source directory
577002-08-11 update --method docs
577102-07-31 dss.c: optout() now handles usage string as well as text
577202-07-19 dss.tst: add text method =~ and !~ tests
577302-06-14 add Dssflags_t arg to dssfopen()
577402-05-29 standalone command source
5775
5776:::::::: dsslib ::::::::
5777
577811-08-19 add DSS_BASE method flag to handle cx scoping
577902-11-22 */*.c: add unsigned => signed casts for msvc long long => double
578002-11-20 split support libs from libdss main source
5781	 flat: add lazy field recognition
5782
5783:::::::: att ::::::::
5784
578508-08-11 dss.tst: %K.%6N for 18 digit long double limitation
578607-11-14 dshield.dss: add
578707-02-14 mrd-mail.dss: add
5788
5789:::::::: bgp ::::::::
5790
579112-06-14 bgp.c: document int mvpn.type == route type index
579212-06-13 bgp.c: add "bgp_t mvpn.key" for mvpn route key
579312-05-31 bgp.c: add bgp_t mvpn.<member> support
579412-02-20 bgp.c,bgplib.h: drop unused ip4toip6()
579511-09-11 bgp-mrt.c: fix debug trace offset when bgp messages skipped
579611-08-25 bgp-mrt.c: streamline BGP_best logic and drop Mrtpart_t
579711-08-25 bgp-mrt.c: drop state->v6 and use rp->afi
579811-08-24 bgp-mrt.c: fix MRT_ATTR_MP_REACH_NLRI => STATE_TABLE_DUMP_V2_RIB logic again
579911-08-23 bgp-mrt.c: fix as_path element counts to handle |{a,...}|==1
580011-08-21 bgp-mrt.c: fix "old bgp" vs "new bgp" AS16 vs AS32 logic
580111-08-19 bgp-mrt.c: (dss->test&0x0010) enables payload trace
580211-08-15 bgp-mrt-anonymize.c: first release
580311-08-12 bgp-mrt.c: change most integer indices to macros for readability/debugging
580411-08-11 bgp-mrt.c: first hack at mcast_vpn_*
580511-08-09 bgp-mrt.c: fix typo TABLE_DUMP_V2 bug that set addr instead of src_addr
580611-08-08 bgp-mrt.c: fix TABLE_DUMP.TABLE_IPV6_UNICAST
580711-06-21 bgp-mrt.c: first hack at STATE_TABLE_DUMP_V2_RIB_GENERIC
580811-04-22 bgp-mrt.c: fix bug that didn't set mp announce type
580911-03-31 bgp-mrt.c: retain BGP_TYPE_table_dump for pseudo-announce
581011-03-30 bgp-mrt.c: fix AS_SET allocation logic for AS16 and AS32
581111-03-30 bgp.c: afi/safi default is 1/1
581211-03-29 bgp.c: change "mime" doc refs to the more precise "base64"
581311-03-28 bgp.c: change bgp.originator type from number to ipv4addr_t
581411-03-15 bgp-mrt.c: fix nlri pointer initialization bug
581510-05-25 bgp-mrt.c: mark record type BGP4MP_ET==17 implemented -- doh
581610-02-02 bgp.c,bgp-mrt.c: handle rfc3107
581709-09-28 dss.tst: adjust for ip_t/fv.c fix
581809-03-19 bgp-mrt.c: fix DUMP_V2 ipv6 => as32
581909-03-11 bgp-mrt.c: handle TABLE_DUMP_V2 <13> records
582008-11-13 bgp-mrt.c: handle undocumented BGP4MP <16,20> records
582108-11-12 bgp-mrt.c: forgot to set rp->afi!
582208-08-28 bgp-mrt.c: add afi=1/safi=128 nlri
582308-08-28 bgp.c: add { afi label rd_admin rd_number rd_type }
582408-08-11 bgp.c,bgp-mrt.c: add extended community support
582508-07-16 bgp-mrt.c: fix MP_UNREACH_NLRI parse bug
582608-06-24 bgp-mrt.c: handle ipv6 extensions
582708-01-15 bgp.c,bgp-cisco.c: add { BGP_rib_failure BGP_stale }
582807-12-13 bgp-mrt.c: unknown format: <hex-flag>:<dec-type>:<dec-size>:<mime-encoded-data>;
582907-12-06 bgp.c: add { agg_addr32 agg_as32 path32 path32_len unknown }
583007-09-12 bgp-ipma.c,bgp-mrt.c: <(~0),1> is the value (~0), not a group marker
583107-09-06 dss.tst: add message group and dss {return} tests
583207-09-05 bgp.c: add MESSAGE group bit and message index
583307-08-08 data/bgp.map,bgp-map.dss: add atomic map { NAG AG }
583406-01-25 bgp.h: move to dsslib/ip_t/
583505-03-08 lib.c: add for dssstatic()
583603-04-15 bgp-mrt.c: fix mrt as path segment bug that ignored all but the first!
5837	 dss.tst: add TEST 02 as path segment on rrc08 updates.20030403.2200
5838	 dss.tst: add TEST 10 to check expression signed/unsigned boundaries
583903-02-24 bgp.h: add record size field to account for variable data
584003-02-19 bgp.c: add { cluster_len community_len path_len }
584103-02-11 bgp-mrt.c: change swapget(0,p,n) to BEn() -- 30 sec down to 24 -- wow
584203-01-24 bgp.c: move { as_t aspath_t cluster_t community_t } to the ip_t lib
584303-01-22 bgp.c: add path,community,cluster internalf; DEBUG for buffer debug
584403-01-16 bgp.c: convert to Cxmatch_t
584503-01-15 ire.c,ire.h: replace bgpre.c with general integer list re's
584603-01-13 bgp-mrt.c,dss.tst: fix path attribute parse bug
584703-01-06 bgp.h,bgp-mrt.c: handle all packet types
584803-01-03 bgp-ipma.c,bgp-cisco.c: fix junk skip logic
584902-12-17 propagate -ldss changes
585002-12-01 move bgp specific tests and data to this dir
5851
5852:::::::: dibbler ::::::::
5853
585406-10-11 dibbler.c: add sfstruse() error checks
585504-02-29 dibbler_sum.c: fix cxlocation() record arg
585603-02-11 dibbler_re.c: Vmbest => Vmlast
585703-01-28 dibbler.c: update for Cxtype_t.Cxmember_t
585803-01-23 update for void* => Dssrecord_t*
585903-01-21 dibbler_outsum.c: add cxlocation() to errorf messages
5860
5861:::::::: fix ::::::::
5862
586303-02-11 Vmbest => Vmlast
586403-01-30 add --stamp=date/version-stamp
586503-01-29 first release
5866
5867:::::::: flat ::::::::
5868
586910-11-12 flat.c: eliminate strict-aliasing puns
587008-08-30 flat.c: work around macos cc struct copy bug
587107-06-05 flat.c: <COUNT>*</> => <COUNT>0</> => 0 or more
587207-01-17 flat.c: don't sfsetbuf() on an active stream!
587306-10-11 flat.c: add sfstruse() error checks
587405-09-16 flat.c: fix <QUOTEALL> q=-1 vs. \xff data bug
587505-05-09 flat.c: literal quote is "" inside "..." for quote+noescape
5876	 flat.c: add <QUOTEALL>
587705-04-18 flat.c: fix escape quote delimiter terminator interactions
587805-04-12 flat.c: fix <WIDTH>constant</> with <WIDTH>variable</>
587905-03-08 lib.c: add for dssstatic()
588004-10-20 flat.c: verify variable field width against maximum width
588104-08-20 flat.c: handle <HEADER><PATTERN> <DELIMITER><MULTIPLE>
588204-06-06 flat.c: flat->record trumps flat->variable
588304-05-31 flat.c: handle mixed fixed/variabled fields
588404-05-27 flat.c: add --emptyspace for empty field value => space
588504-05-26 flat.c: handle <RECORD><FIXED>n</></>
588604-05-25 flat.c: handle fixed width (sort of) flat records with terminator
588704-05-11 flat.c: add header option to generate dynamic query header
588804-05-09 flat.c: handle nested structures with/without non-member value
5889         flat.c: fix convert ccmap() logic
589003-10-09 flat.c: fix ambiguous key checks
589103-09-23 flat.c: add <PHYSICAL><KEY>{<SPAN>,<ID1>,<ID2>} for maillennium
589203-09-22 flat.c: speed up ccode conversion in flatget()
589303-09-19 flat.c: handle nested <FIELD> structs
589403-08-11 flat.c: add <PRINT>, <KEY>
589503-08-08 flat.c: fix unknown type message; add <BLOCK> and <RECORD>
589603-05-24 flat.c: drop Attribute_t table and use cxattr()
589703-02-11 flat.c: Vmbest => Vmlast
589803-01-29 flat.c: fix binary and buffer output for struct option
589903-01-28 flat.c: update for Cxvariable_t.Cxreference_t
590003-01-23 flat.c: update for void* => Dssrecord_t*
590103-01-21 flat.c: move fundamental type internalf/externalf to libdss
590202-12-24 flat.c: use cxstring() instead of base search
590302-12-18 flat.c: flat convert query working
590402-12-17 propagate -ldss changes
590502-12-05 flat.c: fall back to map on invalid numeric fields
590602-12-04 flat.c: fix convert bug that applied map when not needed
590702-12-03 flat.c: fix void_external() to zero out all bytes
590802-11-28 flat.c: fix non-global swap checks
590902-11-27 flat.c: add [no]binary option
591002-11-25 flat.c: add header and magic support
591102-11-22 flat.c: initial convert implementation
5912
5913:::::::: gdat ::::::::
5914
591510-04-10 add html payload details -- this should have a general solution
591610-04-09 first (working) release -- original attempted 2003-08-07
5917
5918:::::::: ip_t ::::::::
5919
592012-06-13 bgp.h: add BGP_key for mvpn route key
592112-05-15 bgp.h: change BGP_PMSI_* to BGP_pmsi
592212-02-24 *sa.omk: clean up standalone old make makefiles
592312-02-24 README-*: bring standalone READMEs up to date
592411-10-06 testiv.c: add { -ip4 -ip6 } options
592511-10-06 ivstr.c,ivfmt.c: add for iv addr size 1..255
592611-10-06 iv-nested.c: fix bug that called nested freef on internal flat intervals
592711-08-11 bgp.h: add mcast vpn definitions
592811-03-02 bgp.h: add packet time usec part
592911-01-21 testiv.c: change to store hop prefix&name in segment data
593010-02-02 bgp.h: add rfc3107 BGP_labels
593110-02-02 ip_t.c: add labels_t -- pairs of 32 bit integers
593209-09-28 fv.c: fix off-by-one bug in fvplo() and fvphi()
593309-09-28 ptfmin.c,ptvmax.c: call fvplo() and fpvhi()
593409-07-28 fv.h,fv.c: add fvplo(), fvphi()
593509-03-19 ip_t.c,itlie.h: elide leading 0.* for 2-tuple external conversion
593609-03-15 pt[v].h,pt[v]open.c: add Pt[v]prefix_t.data, pt[v]insert() returns new prefix
593709-03-15 itlie.h: handle as set marker in last element
593808-08-11 bgp.h,ip_t.c: add extended community type support
593908-07-31 ptvopen.c: fix ptvinsert() interval bug
594008-07-25 ip_t.c: add { %(prefix:C)s %(addr:C)s } for 0x%02x comma-separated value
594108-06-11 add { fv ptv } for ipv6
594208-01-15 bgp.h: add { BGP_rib_failure BGP_stale }
594307-12-06 ip_t.c: add as32 support
594407-12-06 ire,itl: add dots arg for dotted representation
594507-10-25 ptrebit.c: add
594607-09-12 itlie.h: <(~0),1> is the value (~0), not a group marker
594707-09-05 ip_t.c: handle ("1.2.3.4/5" =~ prefix)
594806-10-11 itlie.h: add sfstruse() error checks
594906-01-24 bgp.h: bring over from dsslib/bgp.h
595005-03-08 lib.c: add for dssstatic()
595103-05-21 itlie.h: fix aspath_t external
595203-04-15 itlie.h: fix external() bug that did not re-initialize the separator
595303-02-18 itlie.h: change details to format char and separator string
595403-02-11 ire.c: Vmbest => Vmlast
595503-02-07 ip_t.c: add Cxformat_t.print width hints
595603-01-28 ip_t.c: update for Cxtype_t.Cxmember_t
595703-01-24 ip_t.c: move { as_t aspath_t cluster_t community_t } from bgp
595803-01-20 ip_t.c: fix match message
595903-01-16 ip_t.c: convert to Cxmatch_t
596003-01-15 ip_t.c: prefix matching via =~ and !~ only
596102-12-17 propagate -ldss changes
596202-11-27 ip_t.c: fix Cxunsigned_t/Cxinteger_t casts for lame long double cc
596302-11-22 ip_t.c: don't assume the "bgp" method -- duh
5964
5965:::::::: lookup ::::::::
5966
596710-04-20 first release
5968
5969:::::::: lsa ::::::::
5970
597112-02-29 add { lsag pmcoa } formats
597212-01-15 ospf_lsa.c: handle generic ip address type binding
597303-02-07 change "time" to "ns_t" and u_int64 in the canonical record
597403-01-31 update rtid doc
597503-01-23 update for void* => Dssrecord_t*
597602-12-17 propagate -ldss changes
597702-11-28 convert from sfprintf to errorf
5978
5979:::::::: merge ::::::::
5980
598103-02-14 first release
5982
5983
5984:::::::: netflow ::::::::
5985
598608-09-02 netflow.c,flowlib.h: add ipv6 support
598705-06-15 netflow.c: add default {print} format
598804-04-01 data/netflow-sample.dss: append 3 fields
598903-07-24 netflow.c: add sentinel to fields[]
5990	 flowlib.h: hide flow_tool_format
599103-06-04 flow-tool.c: change u_int* typedefs to macros to avoid ibm.risc clash
599203-05-16 flow-tool.c: add flow-tools formats
599303-04-05 netflow-map.dss,ip.map: add
5994	 dss.tst: add netflow-map tests
599503-01-23 update for void* => Dssrecord_t*
599603-01-21 add cxlocation() to errorf messages
5997
5998:::::::: num_t ::::::::
5999
600011-02-02 num_t.c: pow10 => pow_10 to avoid <math.h> clash
6001
6002:::::::: opaque ::::::::
6003
600403-01-23 update for void* => Dssrecord_t*
600503-01-21 add cxlocation() to errorf messages
6006
6007:::::::: sort ::::::::
6008
600911-10-18 first release
6010
6011:::::::: stats ::::::::
6012
601311-09-11 fix %(GROUP)s for the OVERFLOW total
601403-05-05 fix --print OVERFLOW key lookup to return 0/nil value
601503-04-05 avoid possible floating point underflow/overflow
601603-02-19 add `-' field operand to just count records or groups
601703-02-11 add --print=format; Vmbest => Vmlast
601803-02-07 add --count; check variable/type print width hint; allow width overflow
601903-01-24 use cxcast() for group value pretty print
602003-01-08 fix bucket alloc size
602102-12-25 first release
6022
6023:::::::: tests ::::::::
6024
602503-09-22 first release
6026
6027:::::::: text ::::::::
6028
602902-12-17 propagate -ldss changes
603002-11-01 a rudimentary alternative to the flat method
6031
6032:::::::: time_t ::::::::
6033
603409-01-30 handle TMX_FLOAT (mvs.390)
603508-08-22 fix time_t => Time_t typo
603608-08-11 update timestamp_t logic to tmx*()
6037
6038:::::::: validate ::::::::
6039
604003-04-05 avoid possible floating point underflow/overflow
604103-02-11 Vmbest => Vmlast
604203-01-27 keep per field dict of all invalid values for summary
604303-01-26 add unknown map value dictionary
604403-01-21 add cxlocation() to errorf messages
604503-01-11 first release
6046
6047:::::::: xml ::::::::
6048
604910-04-22 fix jsonident(), xmlread(), jsonread(), xmlwrite(), jsonwrite()
605010-04-21 handle json [...,...] array values
605110-04-20 json working
605210-04-12 first release
6053
6054:::::::: ie ::::::::
6055
605605-02-01 ie.sh: IFS may be unset and { ash bsh } don't on startup -- wow
605704-07-26 ie.sh: update runtime docs
605804-07-23 Makefile: link with static ast libraries
605904-02-29 history.c: use pathtemp() instead of mktemp()
606001-04-25 vi.c: handle implementations with VEOL but not VEOL2
606100-02-14 ie: ie.sh script replaces ie fun
6062	 ie: convert configure/* => features(ielib|options.sh)
606399-11-19 Makefile: fix sh_config.h for 2d -- eventually should use iffe
606498-03-11 workaraound for sgi dllnext() botches
606598-02-02 initial release snarfed from ksh88i source
6066
6067:::::::: mailx ::::::::
6068
606912-06-05 spam.c: fix insider() domain check that skipped pure domain with not host
607012-04-13 cmd1.c: fix empty list null pointer deref
607112-02-29 add headfake boolean option to fake 'From ' line in saved message
607211-09-11 add sender=/address/head/pattern/[&|]/head/pattern/...
607311-07-17 fix message list to apply mimeview() to part 0 (main message body)
607410-09-08 fix edited To: in message to override command line recipients
607510-06-01 sync with ast api 20100601
607609-06-09 names.c,vars.c: fix alias expansion cross-dictionary bug
607709-05-15 proc.c,quit.c: add buffer checks to filetemp()
607808-11-04 spam.c: fix 0-terminated overrun in usermatch() -- wow
607908-02-12 local.c: favor fcntl() lock over flock() for N(otan)FS
608008-01-15 cmd3.c: add `if f?path' so old Mail doesn't carp
608107-02-06 cmd2.c: "S name" => .../From/name
608206-10-11 data.c: ARG_MAX => private ARGMAX
608306-10-11 add sfstropen()/sfstruse() error checks
608406-06-24 fio.c: fix nul count scan bug
608506-04-17 head.c,spam.c: catch and normalize inventive subject spaces
608605-03-28 main.c: add -r address; add L variable attribute
608705-02-17 head.c: CONTENT_type PART_text trumps CONTENT_encoding binary
608805-02-08 local.h: blankline=>allblanks (lynxos libc symbol hijack)
608904-08-17 head.c: handle Content-Type: message
609004-07-22 lex.c: access() => eaccess()
609104-04-15 spam.c: add spamtest mask names, fix spam() ordering
609204-03-25 mailx.h: shquote=>shellquote to avoid netbsd clash in <stdlib.h>!!
609304-03-17 spam.c: fix usermatch() loop
609404-01-28 data.c: k,K are now autoprint (like d)
609504-01-22 data.c: K is alias for mark; omitted mark defaults to nospam
6096	 list.c: addr- shorthand for addr-$
609704-01-20 data.c: k is alias for mark; omitted mark defaults to spam
609804-01-16 main.c: mark -f option value optional
609903-12-10 spam.c: fix word match bug that matched prefixes instead of full word
610003-11-20 main.c: optget() if _PACKAGE_ast -- finally
610103-11-14 add spamsubhead=1 to edit spam subject heading list
610203-01-17 add shquote() to quote popen pathnames; fix save to -f core dump
610302-12-12 imap.c: handle no-name attachments
610402-12-11 head.c: application of DeMorgan's law proves Murphy's
610502-12-04 local.h: include FEATURE/lcl from lcl.iffe to avoid local.h clash
610602-11-22 head.c: convert unfriendly attachment path name characters to '_'
610702-10-31 imap.c: drop obsolete RFC2060 FETCH args
610802-10-20 spam.c: test=0x0060 for Authentication-Warning: checks
610902-10-16 spam.c: test=0x0010 to verify From: in domain matches Received: hosts
611002-10-08 mailx: fix a few strncopy() size off-by-ones
611102-10-01 mailx: fix ancient buffer overflows by comitting to ast -- bye bsd
611202-09-22 local.c: honor MAIL if its a regular file
611302-09-08 add spambody to catch mail filter warnings embedded in message bodies
611402-09-07 head.c: fix bug that retained mime boundary from previous message
611502-09-04 head.c: add call to isdate() to verify ishead() dates
611602-09-03 handle \r\n => \n on input
611702-08-28 vars.c: fix ${domain} initialization
611802-08-21 spam.c: test=0x0004 for X-Authentication-Warning
6119	 send.c: disable interpolation "-- " signature test
612002-06-07 spam.c: delay lower priority tests until all headers seen
612102-05-31 imap.c: error messages to stderr -- duh
612202-03-17 spam.c: add spamtest=bitmask: 0x0001: content-type==text/html
612302-01-31 data.c: clarify imap var docs
612402-01-30 local.iffe: add to handle no <termios.h> and ftruncate()
612502-01-24 ifdef { SIGTSTP SIGTTOU SIGTTIN }
612602-01-16 properly update References: in replies
612701-10-15 `get attachment dir' copies attachment to dir
612801-04-01 add state.var.hostname for smtp HELO
6129	 add fmtident() to initialize state.version
613001-01-01 fix map bug that retained alias after expansion
6131	 smtp: add domain to RCPT TO: if omitted
613200-11-27 add Date: and From: to smtp
613300-09-21 drop leading */ from user name
613400-05-09 add cd,pwd,${PWD},${OLDPWD} with ${CDPATH} check
613500-05-04 lex: flush stdout before prompt!
613600-03-17 add -Qn to get status of n most recent messages
6137	 fix imap -NS unread count
6138	 loosen up headerbotch header checks
613900-02-29 handle multiline SMTP responses
614099-07-17 fix imap reply via imap_setinput() omission
6141	 @x.y.z in spam list matches x.y.z domain suffix
6142	 tone down hostmatch(), check unknown in Received:
6143	 fix $MAIL lock by checking syscall return value -- how novel
6144	 add -S, -o justfrom
6145	 add -NS to print info and exit
6146	 spam: Message-Id: <>
6147	 spam: To: suppressed
6148	 spam: strgrpmatch() instead of strcasecmp()
6149	 imap: normalize imap message before send
615098-12-25 "text/enriched" treated like "text/plain"
6151	 PART_text && PART_inline => in the body
615298-11-11 `save +' with `set followup=+From' saves msg in `+From/sender'
615398-06-01 fix header parse for message/rfc822
6154	 add sendmail=smtp://host sendmail=/dev/tcp/host/inet.smtp
615598-02-14 more spam stuff
6156	 to==from==user isn't spam
6157	 Status: header means already scanned (MSCAN)
6158	 spam check in setinput() (either here or in setptr())
6159	 `---*' can separate headers from body
616098-02-07 defined(SFIO_VERSION) insead of defined(printf) for sfio disciplines
616198-01-11 set spam to mark spam candidates X
6162	 set spamlog=file to automatically log spam msgs on quit
6163	 set spamto=addr1,...,addrN for candidate spam recipients
6164	 set spamfrom=addr1,...,addrN for candidate spam senders
6165	 set spamsub=word1,...,wordN for candidate subject word prefixes
6166	 add :!x for messages not matching x
6167	 set local=domain1,...,domainN
6168	 check for nuls in mail file
6169	 set headerbotch treats \n\nReturn-Path: as From line if not in header
617097-11-27 couldn't resist the date
617197-11-11 change fflush() (in stdio.h) to do physical seek to logical position
6172	 this should squash the empty message bug
617397-10-31 replace ferror() checks with checks at the io ops
617497-08-11 ~m with no messages no longer dumps core
6175	 sendmail="<_PATH_SENDMAIL> -oi" to retain `.' lines (least suprise?)
6176	 keep most descriptive content-type
617797-07-17 -t implies SEND mode
6178	 set quiet still lists folder status on startup
6179	 attachments named n-m instead of n:m for fat fs
6180	 if no encoding type and mimeview(encoding) then its an encoding
618197-02-14 [Ss]plit now takes message list arg, Split ignores headers
6182	 no longer dumps for non-empty files with no From
6183	 ~f preserves attachment encoding/boundaries
6184	 text/plain with name="" is now an attachment
6185	 ${MAIL} is default system mailbox
6186	 ${MAIL}/.. is default system mailbox dir
618796-09-06 version 9.6
6188	 set headerbotch to handle mailers that add space between std headers
6189	 set more[=prompt] to enable sfio more discipline (overrides PAGER)
6190	 alias < file (note space around <) to read sendmail alias file for map
6191	 join [messagelist] -- reply with auto ~m ~v
6192	 Join [messagelist] -- Reply with auto ~m ~v
6193	 multipart content converted to print/type/split (attachment) lines
6194	 get attachment-index [path] after print/type decodes attachment to file
6195	 ~g file interpolates content for multipart message
6196	 ~g `uuencode -h -x base64': no header/trailer, base64 encoding
6197	 set fixedheaders="hdr1\nhdr2..." added to outgoing message header
6198	 help [ command | ~ [ command ] set [ variable ] ]
6199	 set MAILCAP; get checks ${MAILCAP} for view command(s), Get doesn't
6200	 mime [ pattern[;] command | < file ] -- add/del/list mime capabilities
6201	 alias case insensitive -- mail addrs and sendmail aliases are anyway
6202	 use <cdt.h>
6203	 use <mime.h>
6204	 mark [messagelist] mark
6205	 folder directories treated as mh folders
6206	 set inbox=+inbox -- SAVE messages not held in this mh folder
6207	 SAVE messages deleted from any mailbox
6208	 cast off_t %ld to (long) -- how do you say long long in portable?
6209	 if displayed message from me then don't ignore To:
6210	 mailbox() attempts all standard places
6211	 retain mime type/encoding in lower case
621296-08-11 version 9.0
6213	 convert to prototyped ANSI C
6214	 all non-shared externs static
6215	 globals into state.*
6216	 internalize mail.help and mail.tildehelp
6217	 alternates: equivalent to: alias alt[i] myname
6218	 split to split messages into numbered files
6219	 blast,Blast to blast message headers and body into name=value list
6220	 if "a" [ == != ] "b"
6221	 ${mode} is readonly with value either "send" or "receive"
6222	 some options are readonly
6223	 some options may only be set on command line
6224	 some options may not ne set while sourcing
6225	 most command line flags have option names
6226	 set all shows unset vars too
6227
6228:::::::: ncsl ::::::::
6229
623099-09-01 add usage[]
623196-10-11 first release
6232
6233:::::::: pack ::::::::
6234
62352003-05-21 pack.tst: add
62362003-04-28 pack,unpack: handle file size > 2Gb (and > 4Gb)
62372002-03-09 pack,unpack: diagnostic if no file operands
62381999-05-03 add optget() docs
6239
6240:::::::: pzip ::::::::
6241
624203-07-17 pzip.c: update --split doc
6243	 pin.c: add --maxhigh=N% high frequency column hard limit
6244	 pin.c: fix tsp cost matrix free() bug
624503-04-05 pop.c: add OP_VERBOSE for cut() trace
624603-01-04 pin.c: list range only if more than 2 elements
624702-12-25 pin: add --sort
624802-02-14 Makefile: add explicit -lz references
624901-10-31 pin: add --reorder=tsp via -ltsp
625001-10-30 pzip: fix --window doc typo
625101-10-08 pin: add --optimize={dynamic|greedy|non|transitive}
6252	 pin: add --optimize method table for easy expansion
625301-08-11 pzip: set error_info.id from argv for statically linked disciplines
625401-06-28 pzip: --split turns implies PZ_READ even with -p
625501-02-02 pzip.tst: add -w window size test
625600-10-04 pin: add -T0x800 TSP v3 dump
625700-10-03 pin: add -T0x400 TSP v2 dump
625800-10-02 pin: fix -p bug that botched the input read
6259	 pin: TSP dump now computes exact big value
626000-09-29 pin: add -T0x200 TSP v1 reorder matrix dump
626100-05-31 pin: --size does filter() to verify guess, 0 if wrong
626200-02-11 pin: always have state.map, even with no freq filter
626399-11-03 pin: alb optimize()+solution() update (quadratic loop)
626499-09-25 pzip: change --split to --split[=pattern]
626599-09-11 pzip: change --split=dir to --split
626699-08-11 pzip: add --append, --split=dir
6267	 pzip: fix SEE ALSO
626899-06-23 pin: add --cache to enable pin-* cache; off by default now
626999-06-22 pin,pop: add --prefix
627099-06-20 pzip: add --prefix
627199-03-22 rectify: add
627299-03-17 pin,pzip: add --bzip for investigation
6273	 pin,pop: -r row-size now optional thanks to pzfixed()
6274	 pin: fix bugs for high==0
627599-03-11 pin,pop,pzip: long options
6276	 pin: -hn% for % frequency cutoff, default is -h10%
627798-11-01 pzip: delete sfclose(sfstdout) since SF_ATEXIT handles it now
627898-10-20 pin: maintain frequency and pair compress size cache
6279	 pop: -s schema => -f pop-schema || mps-style-format
628098-08-11 initial release
6281
6282:::::::: re ::::::::
6283
628412-06-25 test*.c: handle \u[U+...]
628512-06-23 testoldmatch.c: add tests for legacy astsa/strmatch.c
628612-05-07 grep.c: add case 'y': to *really* ignore --color
628712-05-03 grep.c: add -Y, --color -- ignored for GNU compatibility
628812-04-20 grep.c: always enable FTS_META (to disable pure FTS_PHYSICAL)
628912-04-17 type.dat: add type.dat re-type switch tests
629012-03-38 sed?.[ch]: 64 bit cleanup for msvc
629111-06-25 grep.c: handle FTS_SLNONE
629210-12-10 grep.c: fix some empty line buffer boundary bugs
629310-11-22 testregex.dat: add more [...\...] tests
629410-09-01 grep.c: RE errors => exit(2)
629510-08-11 ed,grep,sed: use conformance("standard",0) test
629610-08-11 sed: align y \\ \n \c \? logic with standard
629710-07-31 grep: add --recursive,-r for the linux for dummies crowd -- barf
629810-06-11 sed: drop space|semicolon separators warning
629910-06-11 sed: fix G to always emit newline
630010-06-11 sed: change 'l' command max line size to 72
630110-01-01 testfnmatch.c,testmatch.c: ignore 'v' test option
630209-12-11 grep.tst: add more -x + -e combos for regcomb() fix
630309-12-11 testregex.dat,regex++.dat: posix semantics for [z-a]
630409-11-20 sed: handle mb chars in y/from/to/
630509-10-31 sed: add a few gnu compatibility options
630609-02-02 repetition.dat,haskell.dat: add tests by Chris Kuklewicz www.haskell.org
630708-11-04 iso8859-1.dat: add [!-...] and [^-...] locale tests
630808-09-04 nested.dat,noop.dat: nested match beyond end of subject fix
630908-07-29 testglob.c: add workspace symlinks
631008-07-29 testglob.dat: add ** symlink => dir tests
631108-05-14 *.dat: update tests for UTF-8 vs. ISO-8859-1
631208-03-05 testregex.dat: add K {,*}(...) tests
631308-02-14 sed.tst: sync with regsubexec() fixes
631408-02-02 sed: add -m, --multi-digit-reference
631507-11-19 sed: /RE/I *except* for substitute command
631607-10-16 sed: add /RE/I... => ignore case
631707-03-19 testregex.c: add regdecomp() harness
631807-03-19 testdecomp.dat: add regdecomp() tests
631906-10-11 add sfstruse() error checks
632006-08-16 testglob.dat,noop.dat: add KRE ~(N) tests
632106-07-28 testglob.(c|dat): add gl_extra tests
632206-07-17 reg.dat: handle (?p) (pedandic RE checks)
632306-07-17 zero.dat: update inline option tests
632405-12-14 grep.c: add --name=name (-N) for stdin file label
632505-08-18 grep.c: add --label, -m and --total, -t
632605-06-06 reg.dat: transcribe from tcl 8.3 Spencer reg.test
632705-05-20 test(fmt|fnmatch|match|regex): handle file args for rt(1)
6328	 nested.dat: add
632905-04-03 sed: change regexec() => regnexec() to handle embedded '\0'
633005-03-30 testmatch.dat,testregex.dat: add '[*' REG_SHELL pattern tests
633104-06-08 ed.c: fix move() bug that botched pointers across append()
633204-05-24 testregex.dat: add more backreference tests
633304-05-11 testregex.c: matchprint() now lists (?,?) up to nsub
633404-02-13 testmatch.dat: add strmatch() cache boundary tests
633503-10-17 testregex.c: add regexec() REG_LEFT tests, fix \x.... tests
633603-08-11 ed.c: fix . value after s
633703-08-08 ed.c: fix bug that botched the remembered RE parse
633803-07-17 testregex.dat: add REG_SHELL|REG_AUGMENTED tests
633903-06-09 minimal.dat: add tests
634003-03-17 ed.tst: add ! command tests for sfpopen() "" mode fix
634103-02-17 testregex.dat: add bm tests
634203-01-13 sed0.c: operate on all input files, even if some fail
6343	 testfnmatch.c,testmatch.c: ignore testmatch -o option
634403-01-03 testregex.c,testregex.dat: add REG_SHELL_GROUP options and tests
634502-10-10 grep.c: ignore -a for GNU compatibility: gnugrep=tw+astgrep
634602-08-12 testregex.dat,locale.dat: add REG_MINIMAL tests for mb bug
634702-08-07 *.dat: recognize anchors in BRE subexpressions
634802-07-17 testregex.c: fix basic re support test
634902-07-15 locale.dat: add S and K tests for testfnmatch
635002-06-20 testregex.c: handle invalid (?,*) and (*,?) in match[]
635102-06-11 ed.c: fix global EOF test
635202-06-10 testregex.c: add -x to inhibit REG_NOSUB
6353	 libtre.dat: add libtre regression tests
635402-06-06 ed.c: fix substitute line splice
635502-05-31 ed.c,sed.c: update to use regsubcomp(),regsubexec()
635602-05-30 testregex.c: add -R to replace answers with implementation answers
635702-05-20 testregex.c,ed.c,sed1.c,sed3.c: update to regsubcomp(),regsubexec()
6358	 testsub.dat: add new regsubcomp(),regsubexec() tests
635902-05-14 testregex.c: add 'p' for REG_NOSUB, null regsub() 'g' match tests
636002-05-09 testregex.c: handle 'x' for implememntations with no REG_LENIENT
636102-05-08 testregex.c: fix "did not terminate" message
636202-04-12 README.re,Makefile.re,re.tgz: update standalone test tarball
636302-04-05 locale.dat: split from testre.dat
636402-03-27 testglob.c: fix double escape() call for GLOB_LIST
6365	 testglob.dat: update tests for original pattern on no match
636602-02-14 grep: add -P,--perl-regexp == REG_EXTENDED|REG_LENIENT
636702-02-12 ed.c: add \r hacks
636802-02-02 sed0.c: add \r to blank() set
636901-12-06 grep.c: add -b,--highlight to highlight matched text on ansi terms
637001-11-20 minimal.dat: add tests for regnexec() REG_MINIMAL char class bug
637101-10-31 sed: all space before ; command separator for REG_LENIENT
637201-10-20 testglob.c: handle \ in pattern and result field parse
6373	 testglob.dat: add tests for \ in pattern and GLON_NOCHECK
6374	 sed1.c: fix instruction cast pun
637501-10-18 testmatch.c,testre.c: all test failure messages contain the text `fail'
637601-10-17 testre.dat: add []{}() imbalance tests
637701-10-05 testglob.c: update --help, add GLOB_LIST and GLOB_STACK tests
6378	 testglob.dat: add a few more tests
637901-10-03 testmatch.dat: add ancc cc trigraph prone patterns
638001-09-11 ed: fix t command bug, add regression test
6381	 ed: fix RE error intercept via REG_DISCIPLINE errorf
638201-09-06 testfnmatch,testmatch: add --help
638301-09-04 testre: update test data
638401-06-11 testre: handle embedded \0 in subject string, add \0 tests
638501-05-24 testre: add (?{...}) test support
638601-05-22 testre: add regsub() tests, testsub.dat
638701-05-16 regex.h update
6388	 test*.c,*.dat: update for sensible test \\c expansion
638901-04-18 testglob.dat: add no metachar tests
639001-03-19 testglob: add
639101-03-08 testre,testmatch: update for I18N and strgrpmatch() regex wrapper
639299-12-12 sed: delay peek for .==$
639399-08-11 grep: don't complain about EISDIR read error
6394	 ed: usage to stderr
639599-05-01 ed,sed: long options
639699-04-23 testre.dat: add ksh pattern parse tests
639799-03-01 grep: long options
639898-11-11 testmatch: add STR_ICASE tests
639998-09-22 sed: REG_LENIENT => delim not special inside [...]
640098-07-17 grep: add -w, -G
640198-04-01 sed: \n => newline for LHS and RHS of y if REG_LENIENT
640298-03-01 grep.tst,testre.dat: update for regcollate() [..] fix
640398-02-06 testre: char class range bug fix checks
6404	 testmatch: char class range bug fix checks
640598-01-23 sed: use regerror(0 for more informative error messages
640697-05-09 sed: fix adrs[] by adding ccmapc()
640797-04-01 sed: fix s/old/new/w file
640896-12-25 sed: uchar -> unsigned char for the bsd holdouts
6409	 sed: sfset(sfstdin,SF_SHARE,1) if q command compiled
6410	 sed: ccmapc() command table indices
6411	 sed: ; separator warning only if CONFORMANCE==standard
6412	 ed: add <sfdisc.h>
6413	 sed: hp.pa cpp can't handle #define f(/*a z*/a)
6414	 ed: line mark bit constants now use sizeof(off_t)*CHAR_BIT
641596-08-31 testre: add BM tests
641696-08-11 ed: -? and arg errors now verbose
641796-05-09 testre: add RE_SHELL_* tests
641896-02-29 grep: fix line buffer span bug that forgot to add the newline
6419	 grep: fix -h, add -H
6420	 sed: fix compiled expression alignment errors by typedef word
6421	 regress: move to lib0ast
6422	 grep: fix exit status and keep going on input open error
642396-02-14 grep: -Ts keeps SF_SHARE input
642496-02-09 grep: fix end of buffer test
642596-02-06 grep: add regrexec() -- now its close to gre speed
642696-01-30 ed: ,==.,$ ;==1,$ %==1,$
6427	 grep: turn off SF_SHARE on input pipe
6428	 ed,grep,sed: unused var cleanup
642996-01-22 testre: add match overrun test
6430	 testre: drop dups from testre.dat
6431	 ed: add trap() call to append()
6432	 ed: drop malloc/realloc ptr diff hack in append()
6433	 ed,grep,sed: REG_LENIENT (-O) is default, -S for strict
6434	 ed,grep,sed: astconf("CONFORMANCE")=="posix" for strict
6435	 sed: REG_LENIENT allows space between addresses
643696-01-19 regress: INPUT|OUTPUT|ERROR -n for no trailing newline
6437	 sed: fix incomplete last line handling
6438	 grep: add incomplete last line handling
6439	 testre: handle \n \r \t \xXX in re and s fields
644096-01-16 testre: standardize for outside exchange
644196-01-11 sed: convert sed.h enum to #define for K&R
6442	 ed: add restricted red
6443	 ed: fix s///g bug that botched more than 1 sub!
6444	 ed: fix s///<num> bug that missed the point
644596-01-08 regex: convert from C++ to C
644695-12-25 regex: add REG_SHELL, REG_SHELL|REG_AUGMENTED
6447	 regex: drop REG_ANCH, reganch() -- REG_LEFT|REG_RIGHT always done
644895-12-21 regex: snarf from Doug; now we have negation and conjunction
6449	 regex: REG_MINIMAL converts pattern to pattern&(pattern.+)!
645095-12-19 regress: new
6451	 convert test*.sh to *.tst for use with regress
645295-12-11 ed: undo for all ops
6453	 ed: initial tested.sh
645495-12-08 ed: no hard limits
6455	 ed: !command added
6456	 ed: a,b!command writes to command and reads back
6457	 ed: program state in ed struct
645895-12-04 regex: add REG_SHELL,REG_LEFT,REG_RIGHT and strgrpmatch()
6459	 regex: add REG_MINIMAL placeholder
6460	 ed: new from v10
6461	 ed: posix update
646295-12-01 regex: snarf Doug McIlroy's C++ implementation
6463
6464:::::::: sort ::::::::
6465
646610-08-11 main.c: use conformance(0,0) for "standard"
646710-05-25 main.c: handle mb -t
646810-05-11 main.c: add -p,--plugins=style -- common to all command swith plugins
646910-04-22 main.c: -C => -E, add posix --silent-check, -C
647010-04-11 main.c: drop -S,--unstable, handle --nostable, -[Sy]N => -zpN
647110-04-03 main.c: add locale reference to the sort order description
647209-12-09 main.c: add -h, --scaled|--human-readable
647308-04-24 main.c: add optget() 'n' option for -1 => -K1
647407-10-30 main.c: default insize == procsize -- worth ~25% time!
647507-10-30 sort.tst,testsort.sh: export LC_ALL=C
647607-01-25 main.c: v format size is max of all input files
647706-07-17 main.c: RS_POP before checking output
647806-07-17 main.c: handle empty file for record format data sample
647906-05-09 main.c: add path to record format determination message
6480	 main.c: fix -o path to inherit -R% format from input
6481	 sort.tst: fix -R% v format test
648206-04-19 main.c: fix minor merge file list bug
648306-01-21 testsort.sh: fix pure sum command search logic
648405-11-01 rec.c: add --count
648505-06-30 main.c: add -zbBUFSIZE for regression testing
648605-06-27 main.c: convert sftmp() etc. to rstmp*()
648705-06-24 sfopen.c: allow multiple io intercepts per program
648805-06-11 main.c: fix duplicate sfdcgzip() bug that corrupted input
648905-05-31 main.c: mv rslib() before key->input[] record format processing
649005-05-17 main.c: delay -l* => rslib() until all options parsed
649105-05-11 main.c: fix -R* parse, preserve output zip/record attributes
649204-12-01 main.c: fix -zI bug that only worked for 1 input file (sort#26)
649304-09-28 main.c: fix ERROR_USAGE logic
649404-08-11 main.c: add #intermediates to -Xdump, limit intermediates to 64
649504-07-22 main.c: acces() => eaccess()
649604-06-16 main.c: -R% -R- use recfmt() to sample for record format
649704-02-11 main.c: document the obsolescent -k reclen:fieldlen:offset
6498	 sort.tst: add -k reclen:fieldlen:offset vs. -k .r -k .o.f tests
649903-11-11 main.c: fix sfread vs. sfreserve logic fooled by SFOPEN_INTERCEPT
650003-11-04 sfopen.c: add SFOPEN_INTERCEPT experiment
650103-10-16 main.c: add RS_CAT check
650203-10-11 main.c: add RS_IGNORE checks, -R% to get size from path%lrecl
6503	 sort.tst: add -R% tests
650403-09-06 main.c: add -Z, --zd, --zoned-decimal
650503-09-04 main.c: change -R to --record=format | --recfmt=format
650603-08-31 main.c: -l implemented by rslib()
650703-08-15 main.c: add -J, --shuffle=seed
650803-05-27 main.c: add -C, --codeset={a,e,i,o,n}, -p, --bcd, --packed-decimal
650903-05-23 main.c: add -R, --reclen=reclen
651003-03-11 testsort.sh: initialize $CC from :TEST: TESTCC state var
651103-03-07 Makefile: +lsort for now
651201-04-19 sort.tst: add -s tests
651300-03-09 main.c: fix infomation typo
651400-12-25 main.c: close input before final overwrite ops
651500-08-31 main.c: add -zcCHUNK to sort in chunks with merge disabled
651699-11-19 main.c: use rskeylist() for method usage
651799-11-11 main.c: unstable sort is the default for backwards compatibility
651899-08-11 main.c: fix usage[]
651999-06-07 main.c: add -o in any file position for backwards compatibility
652099-03-03 main.c: add long options
6521	 sort.tst: add gnu tests; `b' is tricky
652299-01-11 fix buffer boundary bug that emitted `newline appended' on 4k systems
652398-03-17 add -zI -zO to zip input/output
652498-03-11 fix sfmove() error checks
6525	 close output before rename
652697-12-07 -Td1:d2:...:dn works via pathtmp(0,p,"/TMP_PATH",0)
6527	 pathtmp(0,0,"/cycle",0) could be used to control phase tmp files
652896-07-17 insize is much less aggressive -- must nail down reasonable proc mem
6529	 fix bug that required 2 ^D for interactive input
653096-12-25 drop sfset(sfstdin,SF_SHARE,0)
653196-10-22 sfreserve tweaks
6532	 multi-stage merge now keeps previous stages out until next stage
6533	 sfreserve() only if 1 S_ISREG() input file
653496-10-17 increase merge file limit to (OPEN_MAX-16) where possible
6535	 update testsort TEST=15 input file size to force multi-stage merge
653696-10-11 all regression tests pass for all methods
6537
6538:::::::: std ::::::::
6539
654012-06-06 yes.sh: use echo instead of print if no $KSH_VERSION
654112-04-20 ls.c: FTW_META default
654212-02-14 yes.sh: add
654312-01-23 du.c: the rightmost of { -b -h -k -K -m } overrides the others
654411-12-13 features/procfs, pss-procfs.c: check _PS_task for { st_uid st_gid }
654511-08-24 ls.c: fix { linkop linktext } to check for FTS_SLNONE too
654611-08-01 file.c: add -b, --brief | --no-filename
654711-06-10 ls.c: add %(view)d for 3d fs view level (iview(struct stat*))
654811-05-09 ps,pss: handle pr_npid in /proc/<pid>/stat
654911-04-26 ps.c: increase COMMAND width from 16 => 24
655011-04-26 features/procfs: fix uwin /proc probes
655111-04-21 dd.c: turn stdin O_NONBLOCK off
655211-04-21 dd.c: fix SI vs US numeric suffix docs
655311-04-15 ls.c: add KEY_dev for all file types
655411-03-10 ps.c: use %0<width>s for string fields to retain last <width> chars of long strings
655511-03-03 dd.c: fix writes beyond count for piped input across partial input blocks (thanks ggreen)
655611-02-11 mount.c: fix umount operand verification
655711-01-28 file.c: add -a, --all to list all magic table matches
655811-01-11 dd.c,iconv.c: convert Iconv_disc_t* for iconv_move() and iconv_write()
655911-01-11 iconv.c: add posix { -c,--omit -l,--list -s,--silent }
656010-12-01 ps*: update freebsd procfs logic
656110-08-11 df.c: use conformance("standard",0) test
656210-06-01 sync with ast api 20100601
656310-05-25 ls.c: back off 09-07-02 logical|(meta)physical change
656410-02-09 ps.c: fix --tree --format=... => \\_ instead of \_
656510-02-09 ps.c: ntpid not hex by default
656610-01-01 ps.c: fix { -T -C -P } child detection logic
656709-12-09 du.c: add -h, --binary-scale|human-readable; -K, --decimal-scale
656809-11-11 features/procfs: handle linux /proc pr_tgrp == pr_tpgid
656909-10-21 locale.c: use fmtquote() to print key values
657009-07-02 ls.c: ftwflags() default only if not --recursive
657109-05-15 ps.c: fix format field alias logic
657209-04-15 ls.c: add --sort=version
657309-01-30 mount.c: hide mount prototype too (for mvs.390)
657409-01-20 dd.c: fix state.in.special counting logic
657508-12-08 ls.c: at least one space before link count for -l
657608-12-07 ls.c: use %[_][EO]K for [space pad] [full|long] iso
657708-10-28 pss-procfs.c: use hz = getconf("CLK_TCK")
657808-09-10 features/procfs,pss-kvm.c: netbsd 4.0 kvm tweaks
657908-01-31 features/procfs,pss-kvm.c: freebsd6 kvm tweaks -- stop already
658008-01-26 df.c: belay some of that delay (automounts foiled it)
658107-11-19 df.c: delay stat()/statfs() until necessary
658207-11-15 pss-procfs.c: handle pr_pgrp and (...) with embedded space
658307-08-03 ls.c: use return from main() instead of exit()
658407-06-27 seq.sh: error messages to the standard error -- oops
658507-06-01 Makefiles: add $(PACKAGE_LOCALE)umount link
658607-05-05 seq.sh,seq.rt: new
658707-04-25 locale.c: defer unknown keywords to /usr/bin/locale
658807-03-19 du.c: fix 0 pointer deref
658907-03-19 pss.c: initialize not found process placeholders
659007-02-07 sum.c: move to libcmd & builtin
659106-12-11 ls.c: disable LS_PRINTABLE for utf-8
659206-12-04 du.c: handle > 2Ti in local.pointer
659306-11-23 ps.c: --escape now the default: -E => --noescape
659406-10-11 add sfstruse() error checks
659506-10-11 ls.c: header/trailer must honor state.scale too
659606-09-19 split.c: pathconf() => astconf()
659706-05-23 ps.c: add but ignore -w, --wide
659806-01-11 pss-kvm.c: handle struct eproc.e_xsize
659906-01-03 ls.c: add --show-control-characters, handle --no*
660005-07-25 touch.c: eith => either
660105-07-17 dd.c: fix ccode conversion diagnostic
660205-06-16 ps.c: fix parent chain lookup infinit loop
660305-06-14 ls.c: fix divide by 0 in col()
660405-06-11 ls.c: sharpen the optimal row/col search
6605	 ls.tst: normalize 02 test sizes
660605-04-22 ps.c: add --branch --escape
660705-04-06 df.c: fix -k F_FRSIZE() to always return > 0
660805-03-29 ps.c: check /bin/ps punt recursion when ast_ps is /bin/ps
660905-03-11 features/procfs: cygwin tweaks
661005-03-10 ls.c: fix -s arithmetic and column output
661105-02-14 sum.tst: add SHA { 256 384 512 } tests
661205-02-11 pss-info.c: add lynxos info(2) proc table
661304-12-25 ls: -e == --time-style=long-iso, -E == --time-style=full-iso
6614	 ls: fix --quote-style=literal to bet literal -- doh
661504-12-15 ls: --time-style=long-iso
661604-12-12 touch.c: add high resolution time support
661704-10-28 ls.c: add space between group/size so they won't run together
661804-10-01 dd.c: drop ancient unused map code
661904-09-14 ls.c: add -w[linesX]cols, last col must be visible in window
662004-07-17 ls.c: rename -f => -Z, add x/open -f
662104-03-28 ls.c: add variable column widths for minimal { -C -x } footprint
662204-02-29 pss-getprocs.c: fix readf/partf semantic mixup
662304-02-26 ls.c: handle solaris S_ISDOOR for -F
662404-02-11 df.c: rescan mount table to avoid more expensive stat()/statvfs()
662504-01-14 split.c: fix csplit {*} EOF detection
662603-12-17 sum.c: update docs for new -lsum interface
662703-12-09 df.c: don't stat() mount table fs paths that don't start with /
662803-11-17 ps.c: fix --children bug that lost lower level ancestor links
662903-10-12 dd.c: add ast iconv identity check
663003-10-08 dd.c: fix count=n short-read when bs > underlying read size
663103-10-07 df.c: fix -Pi to do "portable" -i
663203-09-23 ls.c: call fmtmode() with internal mode
6633	 ls.c: -L => ~FTS_SEEDOTDIR
663403-09-18 dd.c: numeric option arg values are now intmax
6635	 split.c: -b -C -l are now intmax
663603-09-11 ls.c: add --testdate=date for testing
663703-08-21 split.c: fix csplit pattern matching -- did it ever work?
6638	 csplit.tst: add regression tests
663903-06-21 pss-procfs.c: fix PR_TIME(),PR_CTIME() normalization
664003-06-11 mount.c: reorder includes for mvs.390
664103-05-26 dd.tst: add
664203-04-28 sum.tst: add sha1 tests
664303-03-21 ls.c: add -z,--time-style
6644	 ls.c: if only -t is set then set FTW_SEEDOTDIR to keep configure happy
664503-03-11 pss.c: pid <= 1 => ppid == 0 to avoid ancestor loop
664603-03-06 ps.c: add pgid alias for pgrp
664703-02-28 pss*.[ch]: add Pss_dev_t and Pss_id_t
6648	 ps.c: don't warn about unsupported fields for [cfjl]
664903-02-21 pss-*.c: initf errors except no space now warnings for ps fallback
6650	 Makefile: hosttype workaround to avoid botched -lkvm
665103-02-11 ps.c: flags width 2 => 3 since posix says its octal
665203-02-07 ps.c: add --children and --parents, --tree == --children --parents
665303-02-06 locale.c,ls.c: fmtquote() FMT_ALWAYS update
665403-02-01 ps*.[ch]: convert to independent Pssmeth_t methods
6655	 pss-ps.c: export _PSS_ps=1 to force for testing
665603-01-31 pss.c: add darwin.ppc kvm_getprocs() -- still needs work
665703-01-29 ps.c: check for obvious invalid pids
665803-01-10 locale.c: don't list default after unknown category/keyword
665902-12-04 du.c: add -H -L -P(default) symlink options
666002-11-22 file.c: add version type description
666102-10-10 pss.c: redefine only if not defined -- duh
666202-10-02 pss.c: move <ast_windows.h> to first #if __CYGWIN__
666302-09-30 dd.c: honor both count*bs *and* count
666402-09-24 dd.c: fix partial record computations and printf format
666502-09-11 pss.c: _WIN32 SF_ERROR <windows.h> workaround
6666	 touch.c: drop TM_DATESTYLE (snarfed too much from date.c)
666702-09-09 ls.c: really ignore -T<n>
666802-08-13 touch.tst: fix 10 digit ambiguity test
666902-08-05 ls.c: add %(perm)[os]
667002-07-31 file.c: add -[cdiM] and swap (old ast) -m and -M semantics for posix
667102-06-25 ps.c: handle %s vs. %d --format inconsistencies
667202-02-14 touch.c: explicit epoch dates (0) are different from now (also 0)
6673	 locale.c: don't output on unknown keyword
667402-02-11 ps.c: validate input pid strings
667502-02-04 ps.c: --format subformat => heading
667602-02-02 pss.c: handle __CYGWIN__ bug where sizeof(TTY_CONSOLE)>sizeof(dev_t)
667702-01-31 pss.c: add aix getprocs()
6678	 ps.c: ntpid=>npid, ntpid now a deprecated alias
667902-01-28 ls: fix devmajor/devminor to use st_rdev where appropriate
668002-01-22 ps: fix `not available' warning to attempt subsequent fields
668102-01-21 ps: recode to use pss.[ch] process status stream interface
668202-01-06 touch: clarify --time doc
668301-10-31 df: increase the fs stat timeout from 2 to 4 sec
668401-09-04 locale: add new catagories
668501-08-11 ls: fix nonprintable test for mb locales
668601-08-01 features/procfs: note that synthesized psinfo doesn't have pr_psargs
668701-06-27 dd: fix conv=[lu]case|x2y logic botch
668801-06-08 ps: option `-' is optional for ancient compatibility
668901-06-06 ls: drop octets for bytes -- yay
669001-05-25 locale: -m runs local locale until the standard comes to its senses
6691	 locale: add --element to list collation element weights
669201-04-20 df: --man now says --scale is the CONFORMANCE!=standard default
669301-04-17 date,rm: move to -lcmd
669401-04-01 locale: fix LC_ALL listing
669501-03-23 tsort: fix typo that goofed up $'b c\na c\na b'
669601-03-22 ps: %(ntpid)d takes precedence over hex attribute
669701-03-17 date: update --man for tmfmt() changes
6698	 locale: add with regression test
669901-03-09 df: fix cannot stat filesystem typo
670001-03-05 ls: add --dump to dump generated --format string
670101-03-01 ps: fix iffe logic that disabled too much for /proc synthesis
6702	 ps: fix -T -p that missed some children
6703	 ps: fix -x to include session leaders
670401-02-14 ps: disable some iffe results for synthesized /proc structs
6705	 ps: use sfstrbase() and sfstrsize() instead of member names
6706	 mount: define NGROUPS for freebsd -- how does <sys/ucred.h> make it?
6707	 df: add scaled sizes, no sync(2) unless -s,--sync
6708	 df: add statvfs() timeout for good ol NFS
670901-01-31 ls: handle --sort=size
671001-01-01 ps: change (-x,--hex)=>(-X,--hex), add (-x,--detached)
6711	 ls: really ignore --tabs, add --quote-style --scale, --thousands
6712	 rm: -i and -f cancel each other
671300-12-13 df: change type default width to 10 for linux
6714	 ps: fix --format '%(time)d'
671500-12-11 ps: fix --tree graph
671600-12-08 ps: no -e for pid args
6717	 ps: add --heading
671800-10-31 date: mmddHHMMccyy doc and code fixes, test
6719	 touch: ccyymmddHHMM doc and code fixes, --time=mtime common sense, test
672000-10-23 ps: -Tp pid gets pid and all children
672100-10-06 du: fix roundup error by delaying until the totals
672200-09-21 touch: fix to handle obsolete MMDDhhmm[YY]
672300-08-11 ps: fix man typo
672400-06-10 dd: add swap=op
672500-05-24 ls: fix --kilobytes, add --block-size
672600-05-11 df,ls,ps: unknown format id is fatal error
672700-05-02 dd: use iconv() for from=x to=y conversions
672800-04-01 ls.tst: export TZ=EST5EDT; new tests should be UCT
672900-03-17 rm: add PATH_ATTRIBUTES 'l' check (no hard links to directories)
6730	 date: --elapsed accepts odd arg count
6731	 catmerge: add
673200-03-09 df: add --format
6733	 date: add --elapsed
673400-02-07 ls: -a and -A now mutually exclusive
6735	 shar: add $USAGE_LICENSE
673600-01-25 touch: add invalid st_mtime value CAVEAT
6737	 ls.tst: limit max st_mtime to 0x7fffffe to avoid stat(2) EOVERFLOW
673800-01-11 tsort: fix
673999-12-25 ps: fix linux -o args
674099-11-19 mount,umount: fix umount usage[]
6741	 ls: fix --format doc
674299-11-18 ls: -H + cmd link non-dir symlink => lstat() (H == hairbrained)
674399-10-31 sum: change --check, add --header --permissions for verifcation
674499-10-22 date: fix %C %k %y doc
674599-08-11 ps: netbsd + unixware fixes
6746	 ls: fix SEE ALSO
674799-07-17 ps: fix cancel logic to eliminate (null) header
674899-06-23 rm: fix -f exit status to be !=0 on errors, even if no diagnostic
674999-06-17 expand/unexpand: long options
675099-06-14 rm: dir arg requires -r, diagnostic even with -f
675199-06-11 df: minimize mntread calls when args given
6752	 ps: all key.cancel format mods on rhs
6753	 sum: binary mode by default, local text mode implementation
675499-06-01 dd: fix conv=* bitmasks
675599-05-20 df: F_BASETYPE() for redhat 6.0 linux statvfs incompatibility
675699-05-18 date: add settimeofday() and stime() checks/calls
6757	 date: use %Y in /bin/date punt
675899-05-11 ps: use pr_sid for session leader checks
675999-05-09 sum: sfopen(sfstdin,0,"rt") file lists
676099-05-06 date: fix inconsistency between date(1) touch(1) tmdate(3)
6761	 shar: add
676299-05-05 sum: add md5sum options
676399-05-01 touch,tsort: long options
676499-04-28 banner,df,du,file,mesg,mount,ps,sum: long options
676599-04-01 ls: long options, gnu compatibility
6766	 date: fix +format for new optget()
676799-03-11 dd: convert to optget()
6768	 ls: (time_t) cast fmttime() arg
676999-03-01 ps: fix static key table inititialization
677099-02-04 ps: add maxval to determine default width
677199-01-23 testdate: check date output format too
6772	 move sfio,date,opt tests to src/cmd/tests
6773	 move pax tests to src/cmd/pax
677499-01-11 sfio/t*.c: make a few tests more portable
677598-11-21 touch: add obsolete mmddhh & mmddhhyy
677698-10-20 dd: fix in/out partial block reports
6777	 sum: add ast4|32x4|tw checksum
677898-08-11 ps: implement -G
677998-07-17 ps: fix -t dump
678098-06-26 rm: tighten hard link to directory test
678198-04-01 sfio: fix ttmpfile by intercepting open64() and creat64()
678298-03-11 dd: fix conv=* check
6783	 du: list all command line args
678498-02-18 date: modify tests for tmfix() 1900+tm_year leap year fix
678598-01-23 df: add -O for mnt.options
6786	 date: add y2k date tests
678797-12-20 ps: add (but name ast_ps until it's broken in)
678897-12-11 rm: fix -r bug that looped when remove() silently failed
678997-07-17 rm: `rm -rf' just prints usage; it used to do `rm -rf .'
6790	 du: change -kblocksize to -bblocksize, -k => -b1024
6791	 date: a few more tests
679297-05-09 rm: fix FTW_AGAIN code for multi-getdents() dirs
6793	 df: add ERROR_SYSTEM to -v output
679496-12-25 dd: add from=<ccode> to=<ccode>
6795	 tsort: fix empty list bug
6796	 df: fix sync() prototype
6797	 date: add -p input-format to supplement DATEMSK
6798	 ls: fix boundary problem with %(path) by using %(name)
6799	 ls: add -A
6800	 rm: add -F to clear and sync data before remove()
680196-10-11 file: update for magic discipline
6802	 dd: update for <ccode.h>
6803	 *: change opt_arg to opt_info.arg
6804	 mesg: add
6805	 df: "UNKNOWN" fs type -> "local"
680696-08-11 dd: set error_info.exit after options
680796-06-19 fix ftwalk() top level children anomalies (fts is underneath now)
680896-05-09 date: Xopen DATEMSK tests
6809	 df: Xopen update
6810	 du: Xopen update
6811	 ls: Xopen update
6812	 find: move to tw
6813	 rm: add
681496-02-29 df: list some stat errors -- well, maybe not
6815	 sum: add cksum link and att,bsd,posix,zip,md5 algorithms
681696-02-07 df: (long) cast to handle (unsigned long) vs. (long) header diffs
681796-01-30 banner: unused var cleanup
681896-01-01 AT&T Research now
6819	 banner: add
6820	 split: add
682195-12-25 find: add -nouser, -nogroup POSIX unary ops
682295-12-08 df: cap = use / (use + avail)
6823	 expand: new
6824	 unexpand: new
682595-11-18 file: ignore empty file list lines
6826	 df: add Mnt_t.options and Mnt_t.flags
682795-11-16 this is the place for single file standard commands
682895-11-11 df: new
6829	 tsort: new
6830	 file: fix aix shared library
683195-07-17 date: add gnu -d string
6832	 ls: fix "total..." aggressive output
683395-05-09 file: switch to <magic.h> and libast/magic()
6834	 file: add posix -h == -P
6835	 ls: sfkeyprintf lookup string arg is now the format conversion char
6836	 ls: #ifdef check S_ISSOCK
683795-04-01 ls: fix -c botch that treated it like -u
683895-03-19 ls: add -H for posix FTW_META|FTW_PHYSICAL
6839	 ls: add -f format to match pax -o listformat
6840	 ls: add -D key=value to match pax -o listmacro
6841	 ls: dir.sh to mimic dos -- ouch
6842	 ls: don't stresc() possibly readonly string literals
684395-03-11 find: add -metaphysical (posix -H) for FTW_META|FTW_PHYSICAL
684495-02-14 file: add -p pattern to select types that match pattern
684595-01-19 file: add linux kernel and minix as,ld
684695-01-01 file: start RELEASE file
6847	 file: add JPEG, dot
6848	 file: fix GIF
6849	 file: stresc() match strings too
6850	 file: add pax compressed and delta formats
6851	 ls: add -n for LS_NUMBER
6852	 ls: -C if argv[0] base is lc
6853
6854:::::::: tksh ::::::::
6855
685605-06-14 uinit.c: trap "tkloop" only if it is defined
685704-03-31 uinit.c: unalias ksh "source" to uncover tcl builtin by same name
685803-01-02 Makefile: dynamic -lshell on CC.HOSTTYPE=*win*
685902-08-27 tkMain.c: wait loop recode to avoid WNOHANG cascade
686002-02-14 Makefile: shell:static because dll is -g => fix this situation
686101-01-01 separate -ltksh from tksh main
6862
6863:::::::: tw ::::::::
6864
686512-04-11 find,tw,xargs: update to cmdopen() discipline api
686612-02-29 find.c: fix ``! -type f'' vs ``! -type f -print'' bug
686711-10-31 tw.c: handle -lexpr X2I change -- scary
686811-07-25 expr.c: fix -e sort:url core dump
686911-06-30 tw.tst: add symbol table scope tests
687011-05-05 tw.c,find.c,xargs.c: update to cmdopen_20110505 api
687111-03-03 expr.c: add sum("method") for all libsum methods
687210-11-30 tw.tst: add "begin" scope tests
687310-09-01 find.c: RE errors => exit(2)
687410-08-18 tw.tst: add expr scope tests
687510-08-18 find.c: document -exec command ... {} +
687610-08-15 tw.h,tw.c,expr.c: add file arg to compile() for --file=expr-file
687710-06-01 sync with ast api 20100601
687810-04-05 find.c: vmclose() after all usage -- doh
687910-04-05 find.c: handle -exec|-xargs with multiple {}
688007-10-26 find.c: fix default -print w.r.t. -o
688107-10-03 find.c: fix { -atime -ctime -mtime } [-+]N logic
688207-09-21 expr.c: add sumprint() default scale arg
688307-08-17 tw.c: add --snapshot
688407-05-08 find.c: fix -printf => sfvprintf() translation
688507-05-08 tw.c: provide empty *ftw for -n actions
688607-04-24 cmdarg.c,cmdarg.h: move to src/lib/libast
688707-01-06 find.c: fix dumb -empty coding bug
688806-12-07 find.c,find.tst: fix -exec/-xargs vs {} +
688906-12-07 cmdarg.c,xargs.tst: adjust ARG_MAX logic
689006-10-11 add sfstropen()/sfstruse() error checks
689106-09-27 find.c: peel off leading [-+] from all -perm
689206-07-17 find.tst: fix -perm tests
689306-05-25 find.c: fix inum (and all but size) default units
689405-06-13 tw.c: sort:path == sort:name, handle ,-separated keys
689505-03-07 xargs.c: fix -i to treat each line as an arg
689605-02-23 tw.c: add --error-exit=code to exit if cmd exit >= code
6897	 find.c: ignore cmd errors
6898	 cmdarg.c: fix bug that dropped a path on cmd error
689905-01-11 tw.c: --local test for directories only
690004-12-24 tw.c: cmd non-zero exit status causes tw to terminate
690104-12-08 find.c: fix `option ... path ... option' logic *again*
690204-08-01 find.c: really fix -size
690304-04-15 tw.tst: add %s scanf tests
690404-04-01 find.c: handle `-sort -KEY' and `-sort KEY'
6905	 find.tst: add `-sort -name' for uniform results -- duh
690604-02-26 tw.tst: add scanf tests
690703-12-02 find.c: -print does not require leaf stat -- duh
690803-11-16 find.tst,tw.tst: add leading . pattern match tests
690903-11-14 updatedb.sh: add /proc to default prune paths
691003-09-23 tw.c: -L => ~FTS_SEEDOTDIR
691102-01-10 tw,find: add sfsync(sfstdout) check
691202-11-07 tw: add type==DOOR (solaris S_ISDOOR)
6913	 find: add -type D (solaris S_ISDOOR)
691402-07-17 updatedb.sh: add --local to skip non-local directories
691502-04-18 find: fix lookup() bug that dumped on unknown keys
691602-04-03 find: add FTW_DELAY logic, fix directory -empty
6917	 tw: add FTW_DELAY logic
691802-01-16 tw: add symlink to EXPRESSIONS doc
691901-10-31 tw,find: add slocate(1) refs
692001-07-17 xargs: fix -e -i -l option parse for backwards compatibility
6921	 cmdarg(): fix CMD_INSERT copy that omitted leading chars
692201-05-02 tw: fix -a to use CMD_POST instead of CMD_INSERT
692301-02-06 tw,find: move --local test fslocal()
692401-01-01 find: fix -newer -anewer -cnewer -perm
692500-11-14 updatedb: add --dir-format (it was already the default)
692600-08-11 tw: add --recursive
692700-05-23 cmdarg: fix -a strchr loop (thanks dr ek)
692800-05-01 find: add [f]printx and %[xX] -- or use tw
692900-03-12 find: fix multiple PRINT with -print imbeded in ( ) -o ( )
693099-10-11 tw: tighten up --generate exit codes
6931	 updatedb: add a few options
693299-08-11 find: fix -size
6933	 find: undef NOGROUP NOUSER -- (net)bsd stomps again
693499-07-17 xargs: newline *and* space separated args -- duh
693599-05-24 find: fix PRINT!=0 enum logic bug
6936	 find.tst,tw.tst: add
693799-05-21 tw: fix print --man
693899-05-09 tw,xargs: sfopen(sfstdin,0,"rt") file list
693999-04-01 find: get -o -or and -a -and disambiguation order correct
6940	 find: -*time -*min fix
6941	 find: -exec {} malloc bug fix
6942	 find: fix exit status
6943	 xargs: long options, \r\n, fix exit status
6944	 tw: long options, fix exit status
694599-03-11 find: convert to optget()
694699-03-03 tw: CMD_INSERT instead of CMD_POST, fix `-' file list on stdin
6947	 find: FTW_SEEDOTDIR, CMD_INSERT instead of CMD_POST
694899-02-14 cmdarg: use astconf("ARG_MAX")
6949	 find: -fast to execute() just like tw
6950	 find: -xargs command ';'
695199-01-23 locate,updatedb: add
6952	 cmdarg: fix bug that did not 0 last terminator in file list
695398-11-11 find: -ls => ls -lis
6954	 find,tw: add astconf("PATH_ATTRIBUTES") and strmatch(STR_ICASE)
695598-08-11 tw: add 32x4 file content checksum
6956	 cmdarg: fix off-by-1 bug that lost 1 arg per cmdflush()
695798-07-01 tw: fix expr convert disc
695898-05-28 find: add -magic pattern and -mime pattern
695998-03-11 tw: fix p=pwd initialization bug
6960	 tw: fix -m interaction bug with action
696198-02-14 find: add -icase for -fast ignorecase
6962	 tw: add -I for -f ignorecase
6963	 use FTW_MULTIPLE to get ordering on cmd arg dir list too
6964	 pass dir list to findopen(read)
6965	 tw: -G now takes format arg
696698-02-04 find: add -fast primary to handle std `find x' == `find x -print'
696797-05-09 tw: mime && magic now use PATH(ftw)
696896-11-28 find: add optget()
696996-10-11 find: fix multiple -exec bug
6970	 tw: strdup() compile time strings!
697196-10-01 update for magic discipline
697296-05-09 add find and xargs
6973	 tw,find,xargs now use cmdarg.[ch] for exec arg limits
6974	 tw: add -F codes to read/write fast find codes
697596-02-29 use EXIT_STATUS() to properly report command exit status
697695-05-09 add string magic field
6977	 add -X (don't cross device boundaries)
697895-03-11 create this file
6979	 add -H for FTW_META|FTW_PHYSICAL
6980
6981:::::::: warp ::::::::
6982
698312-06-22 warp.c: add utimensat()
698408-11-15 warp.c: fix time() _WIN32 intercept
698505-02-01 warp.sh: IFS may be unset and { ash bsh } don't on startup -- wow
698605-01-01 warp.c,feature/lib: add utimes() intercept with struct timespec
698704-12-09 warp.sh: %s instead of %#, add clock_gettime() intercepts
698804-07-26 warp.sh: update runtime docs
698904-07-23 Makefile: link with static ast libs
699001-10-20 warp: drop :WWW: standalone distribution
699199-11-19 warp: fix _RLD_LIST for sgi.mips4-n32
699299-05-21 add: _xstat64
699399-04-01 add :WWW:, change from function to script
699498-04-01 add in factor code and intercepts
699598-03-11 initial release
699698-03-05 first implementation
6997
6998:::::::: vczip ::::::::
6999
700009-10-01 vczip.c: make discipline data static -- it may be accessed after main() returns
700109-07-04 vczip.c: first attempt to unify vcodex(--method) and codex(--transform)
700209-02-02 vczip.c: -u is now a flag (no optional arg)
700309-01-18 vczip.c: fix bug that forgot to assign src file path
700408-11-04 vczip.c: change date to official kpv -lvcodex release
700508-06-06 sync with kpv; add ast plugins and optget() usage
700605-09-25 vczip.c: fix empty input test for pipes
700705-06-16 vczip.c: snarf from kpv
700805-06-30 vczip.c: handle vcsfmeth interface change
700905-06-28 vczip.c: snarf from kpv
7010
7011:::::::: jcl ::::::::
7012
701307-12-07 jcl.rt: add prefix '/' delimiter tests
701407-06-06 JCL.mk: add USR1 USR2 interrupt handlers
701507-02-20 cpy2dss.c: handle POINTER, ignore IS
701606-11-11 jcl.c: fix map vs name=value arg precedence
701706-11-11 JCL.mk: export JCL_AUTO_* instead of via command line
701806-10-11 add sfstruse() error checks
701906-08-15 jcm.mk: add --index=n
702006-08-11 JCL.mk: add JCLGROUP for shared coshell
702106-08-08 JCL.mk: parameterize to JCLROOT=$(PACKAGEROOT)
702206-08-03 jcm.c: fix group base prereq
702306-07-31 JCL.mk: parameterize event db path
702406-06-21 jcm.c,JCL.mk: .EVENT.WAIT and .EVENT.RAISE update
702506-06-11 jcm.c: .EVENT.GET => .EVENT.WAIT, .EVENT.SET => .EVENT.RAISE
702606-05-25 cpy2dss.c: handle PIC -9(3).9(2)
702706-05-22 jcm.c,JCL.mk: add .EVENT.GET .EVENT.SET
702806-05-18 jcl.c: exit code cleanup
702906-05-17 jcl.c: update docs
703006-05-16 jcm.c: add job.base and user 'O' for job.name if specified
703105-09-22 jcm.c: add --initialize=file, handle 'T' card prescan
7032	 jcm.rt: add tests
703305-09-15 cpy2dss.c: ebcdic-m (mvs) now the default
703405-09-12 jcm.c: ~PX0000 => $(JCL_AUTO_PX)0000
703505-08-31 jcl.rt,JCL.mk: add
703605-08-29 jcm.c: add JCL_AUTO prefix to makefile jcl action vars
7037	 jcl.c: add -O, --odate, -R, --rdate, -S, --date
703805-05-31 cpy2dss.c: add typename()
703905-05-09 cpy2dss.c: add <QUOTEALL>
704005-04-18 cpy2dss.c: add --escape, --quote-begin, --quote-end
704105-04-11 cpy2dss.c: handle accumulated fields > fixed record size
7042	 cpy2dss.c: handle --sized --text --variable
704305-02-14 jcl.c: add --import env var precedence over --map definitions
704404-12-23 cpy2dss.c: mark structs and struct arrays for --offsets
704504-12-21 cpy2dss.c: add type field to --offsets
704604-10-31 jcl.tst: add JCL_DD_ALIAS tests
7047	 jcl.c: add -r,--resolve to resolve/map path operands
704804-10-20 cpy2dss.c: add -C,--comp=from:to
704904-09-27 cpy2dss.c: fix OCCURS and structure offsets, add -k,--keep
705004-09-21 jcl.c: add -s,--subdir
705104-09-20 jcl.tst: handle "export JCL_AUTO_JOB=job" change
705204-09-15 jcl.c: fix optset() to honor jcl->roflags
7053	 jcl.tst: add * prefix match tests
705404-08-24 cpy2dss.c: handle REDEFINES => <UNION>, add --offsets
705504-08-06 split cmd/jcl => lib/libjcl + cmd/jcl
705604-06-18 jcl.c: JCL_LISTDATA => JCL_LISTINPUTS|JCL_LISTOUTPUTS
7057	 jcl.c: --list=dd => --list=inputs or --list=outputs
7058	 cpy2dss.c: add --bytemask
705904-06-09 jcl.c: default JCL_MAPFILE is now optional
706004-05-31 cpy2dss.c: fix structure pop logic, add --sized
706104-05-20 cpy2dss.c: fix --variable to *also* emit <VARIABLE>1</>
706204-05-19 cpy2dss.c: fix --variable to emit terminator and width
706304-05-14 cpy2dss.c: add --terminator=char and --variable
706404-05-06 cpy2dss.c: handle nested structs and out of sync level indices
706504-05-04 cpy2dss.c: promote from test area
706604-02-29 jcl.tst: add empty PARM test
706703-11-14 jcm.c: add from control-m experiments
706803-10-20 --map=prefix by default, --map=- to disable
7069	 --map file now a sequence of ops: "map" and "set" for now
707003-10-15 add --map=prefix-map
707103-10-10 more tests
707203-10-08 reliable -x output with regression tests
707303-10-01 first code
7074
7075:::::::: libast ::::::::
7076
707712-07-25 pathprobe.c: fix read() loop to handle EINTR
707812-06-28 vmalloc/malloc.c: use sbrk() unless VMALLOC_OPTIONS=mmap or asoinit(0,0,0)!=0 (workaround until next malloc update)
707912-06-28 aso/aso.c: asoinit(0,0,0): 0: no specific init, 1: app initialized
708012-06-27 sfio/sfvprintf.c: allow { L* z* } aliases for I* -- posix will probably pick one
708112-06-26 regex/regnexec.c: fix uninitialized variable reference
708212-06-26 comp/setlocale.c: utf8_wctomb() now calls (the corrrect) wc2utf8()
708312-06-25 string/chresc.c: accept \u[U+<hex>] and \u{U+<hex>}
708412-06-24 regex/regcomp.c: mb [^...] must be marked "complicated"
708512-06-20 port/astconf.c: increase DEBUG_astconf error debug levels (may leach into rt output)
708612-06-18 sfio/_sfopen.c: add 'e' => O_CLOEXEC
708712-06-18 features/fcntl.c: add #define O_CLOEXEC 0 if not defined
708812-06-13 features/float: handle __mips c99 peculiarities
708912-06-13 features/standards: handle __MACH__ posix peculiarities
709012-06-08 sfio/sfclose.c,sfmode.c: sfclose() for sfopopen() stream returns sh-compatible $?
709112-06-08 comp/strtold.c: fix header botch that missed ldexpl() prototype -- ouch
709212-06-06 misc/proclib.h: partially undo <ast_standards.h> for leaked ancient bsd-isms
709312-05-31 misc/proclib.h: <ast_standards.h> for linux undefined struct mmsghdr*
709412-05-31 error.h: add ERROR_PIPE(errno) to handle EPIPE and ECONNRESET
709512-05-31 Makefile: don't install $(INCLUDEDIR)/prototyped.h: src/cmd/INIT does it
709612-05-31 regcomp.c: add (?V...) ~(V...) REG_REGEXP switch
709712-05-28 regex: regoff_t in => ssize_t via api 20120528
709812-05-21 features/asometh: split intrinsic and method tests so code only instantiated in aso.c
709912-05-21 comp/strdup.c: use oldof() since mem overwritten by string copy
710012-05-18 misc/stk.c: fix access of moved realloc() data
710112-05-15 misc/optget.c: #? option with no value should have opt_info.num==0
710212-05-11 misc/stk.c: fix memmove() read of 1 uninitialized byte
710312-05-11 regex/regcoll.c: avoid memcpy() to self
710412-05-01 port/astconf.c: fix astconflist() to list standard minmax value if defined
710512-04-26 sfio/sftmp.c: fix memory leak due to inadvertent SF_STATIC copy
710612-04-26 sfio/sfwrite.c: fix subtle memory leak (with Vmlast or Vmpool or freeBSD malloc)
710712-04-26 vmalloc/vmbest.c: SIGSEGV overcommit check for __linux__ only
710812-04-25 vmalloc: add _vmfd() for private close-on-exec fds
710912-04-23 sfio_t.h: change getr to 32 bits to prepare for UTF-8 delimiters
711012-04-23 features/signal.c: add SIGSTKFLT
711112-04-17 regex/regcomp.c: fix (E:...) vs (E)... scoping
711212-04-11 features/sys: add aix's _LARGE_FILE_API to the _LARGEFILE(64)?_SOURCE mix -- anyone else?
711312-04-11 include/cmdarg.h,misc/cmdarg.c: (finally!) add a discipline with Cmdrun_f
711412-03-28 vmalloc: int vs [s]size_t cleanup
711512-03-27 sfio: fix #if logic that caused syntax errors (on 64 bit uwin)
711612-03-10 misc/optget.c: HELP_index for "PLUGIN" too
711712-02-29 include/shcmd.h: PLUGIN_VERSION 20111111 for cdt disc/meth change
711812-02-29 comp/spawnveg.c: fix sigcritical() to include waitpid() for internal child
711912-02-29 malloc.c: make __malloc_hook initialization thread safe
712012-02-24 comp/iconv.c: fix winix UTF-8 vs UCS-2 over-conversion
712112-02-24 astsa/*.h: clean up header guards
712212-02-24 astsa/astsa.omk: clean up standalone old make makefile interactions
712312-02-21 misc/cmdarg.c: fix bug that set argv[0]
712412-02-10 sfvprintf.c: fix 1 byte too long buffer access
712512-02-07 malloc.c/features/vmalloc: add gnu __malloc_hook tests
712612-02-06 vmmopen.c: fix ALIGN vs sys/param.h macro conflict
712712-02-02 astlicense.c: add license.component for component-specific licenses
712812-01-31 spawnveg.c: fix transient bug that made invalid setpgid() call
712912-01-27 pathpath.c: fix buffer size math when internal allocation requested
713012-01-24 malloc.c: fix _vmkeep() bug that did not return previous state
713112-01-23 malloc.c: add VMALLOC_OPTIONS=break to try sbrk() block allocator first
713212-01-21 astlicense.c: option style only overrides default license.type
713312-01-18 malloc.c: disable multiple regions for tracing or !vmbest or ASO_SIGNAL
713412-01-12 sfpkrd.c: add __sun I_PEEK+rsh runtime workaround
713512-01-10 shcmd.h: void* => Shbltin_t*
713612-01-10 tmxdate.c: handle { n>=1000 } TM_PARTS
713711-12-21 plug up some memory links -- thanks mhlavink
713811-12-21 vmprivate.c: enclose VM_NONMEM exception in CLRLOCK(vm,0) ... SETLOCK(vm,0)
713911-12-13 aso: in -lposix for uwin, not -last -- just like vmalloc
714011-12-13 sfpoll.c: all streams SF_IOINTR => don't ignore EINTR
714111-12-13 sfdcslow.c: set SF_IOINTR
714211-12-09 malloc.c: add _vmkeep() for setlocale() intercept _SYS_setlocale_free_OK
714311-12-04 sfio: _Sfmaxr=0 (unlimited) by default; use ulimit -M|-d or SFIO_OPTIONS
714411-12-01 aso: sync to new api
714511-11-11 optget.c: move .TH to the top for --nroff to get our macros first
714611-11-11 aso,cdt,vmalloc: resync with kpv
714711-11-11 cdt: preserve bits and Dt_link_t for CDT_VERSION < 20111111
714811-10-24 sfvprintf.c: %.-ns truncate from left to n chars
714911-10-21 sfvprintf.c: fix %0s (no width) core dump
715011-10-10 aso: add _WIN32 support
715111-09-26 vmalloc: sync with kpv
715211-08-29 features/{dirent,wchar,wctype}: eliminate #include with no header
715311-08-25 #pragma prototyped tweaks -- sun4 is dead, long live sun4
715411-08-25 ftwalk.c: FTS_SLNONE => FTW_SL
715511-08-11 features/wchar: fix #include _nxt_wchar for K&R C
715611-08-04 optget.c: tweak --html rendering
715711-07-24 mime.c: add %(default)[st] default if arg == ""
715811-07-21 setlocale.c: fix debug locale to treat "<<" as two single byte chars
715911-06-14 spawnveg.c: pgid -1: new session -2: setpgrp()&&tcsetpgid()
716011-06-14 pathprog.c: add darwin _NSGetExecutablePath
716111-05-14 features/common,features/align.c: { _X86_ _X64_ } conditionals for generic uwin
716211-05-13 tm/tminit.c: tweak tzname[] prototype
716311-05-09 astlicense.c: add ". file" parent-relative include and depth 4 input stack
716411-05-05 cmdarg: update to cmdopen_20110505 api
716511-05-03 sfio/sfclose.c: make sure close() errors propagate to sfclose() return value
716611-04-20 port/astlicense.c: add { id name } keys
716711-04-15 fmtdev.c: fix to work for non-{blk,chr} special
716811-04-12 stk: change size args to size_t and stseek() offset to ssize_t
716911-04-12 sfio: sync with kpv to optimize large SF_STRING sfputr() buffer allocation
717011-03-28 misc/fts.c: fix FTS_SLNONE logic to set it when it should!
717111-03-17 misc/stk.c: fixed bug that could delete an active stack frame
717211-03-10 sfio/sfvprintf.c: add %0<width>s to preserve <width> trailing chars in string arg
717311-03-09 misc/magic.c: add %d...%s where if %d==1 then %s=="" else %s=="s"
717411-03-09 misc/magic.tab: add windows ico
717511-02-08 misc/stk.c: change STK_FSIZE to (1024*sizeof(char*)) for 64 bit normalization
717611-02-02 sfio/sfmode.c: don't call sfsetbuf() on unbuffered stream to make it unbuffered
717711-02-02 features/wchar: handle hp.ia64 va_list interactions
717811-02-02 comp/omitted.c: fix mismatch between stat() vs _stat()
717911-01-31 std/wctype,features/wctype: add to handle <wchar.h> interactions
718011-01-28 add -lw for ancient sunos
718111-01-28 include/magic.h,misc/magic.c: add MAGIC_ALL
718211-01-27 tm/tmxfmt.c,tmpoff.c: %_z for SHH:MM
718311-01-25 features/wchar: change <wctype.h> <wchar.h> ordering
718410-12-24 sfstrtof.h: fix thousand grouping bug that did not check last group
718510-12-21 pathkey.c: add win32 { /32 /64 } preroot to hash
718610-12-09 pathprog.c: handle intermediate path != '* and fix invalid pathpath() call
718710-12-01 astconf.c: fix look.standard undefined variable reference
718810-12-01 sfset.c: SF_LINE|SF_WCWIDTH => no need for sfsetbuf() to call isatty()
718910-12-01 sfsetbuf.c: cache /dev/null <dev,ino> to cut down /dev/null stat()'s
719010-12-01 optget.c: delay dictionary initialization until needed
719110-11-30 malloc.c: drop { VMDEBUG VMETHOD VMPROFILE VMTRACE } env checks
719210-11-30 port/astconf.c: eliminate esaccess() calls for OP_universe checks
719310-11-24 regcomp.c: [[=]=]] must at least match itself in non-C locales
719410-11-23 glob.h,glob.c: add GLOB_GROUP => REG_SHELL_GROUP
719510-11-20 glob.c: handle mode switches across /
719610-11-19 regcomp.c: REG_SHELL => REG_CLASS_ESCAPE
719710-11-16 vmalloc.h: add VMFL tracing to vmstrdup()
719810-11-16 ast.h: simplify VMDEBUG _BLD_DEBUG and VMFL logic
719910-11-12 tm/tmlocale.c: ast TM_* extensions default to C locale
720010-11-10 regex/regnexec.c,vmalloc/vmstat.c: eliminate strict-aliasing puns
720110-10-20 misc/translate.c: change debug translation to drop " in (a,b,c,"d")
720210-10-10 misc/glob.c: drop ancient D_FILENO(d)!=0 test and trust readdir()
720310-10-06 misc/translate.c: fix "debug" locale logic
720410-10-04 misc/magic.c: fix magic() skip check to honor the continuation
720510-10-04 regex/regcoll.c: add wchar_t* args to regcollate(), drop ucs name lookup
720610-09-28 comp/setlocale.c: add utf8_wctomb()
720710-09-28 string/chresc.c,regex/regcoll.c: fix \S[.X.] (\C[.X.] never worked!)
720810-09-24 string/chresc.c: \Cc for control c, \S[.X.] for collating symbol X
720910-09-24 string/chresc.c: { \cc \e } deprecated
721010-09-22 regex/regcomp.c: fix off-by-one collation class allocation bug
721110-09-20 regex/regclass.c: fix CTYPES off-by-one bug
721210-09-14 comp/conf.sh: const int conf_elements, prefix_elements;
721310-09-08 add features/sizeof => ast_sizeof.h
721410-08-31 comp/getopt[l].c: export functions for dlls
721510-08-25 port/lc.c: add features/locale check for canonical UTF-8 spelling
721610-08-20 include/ast.h: add export plugin_version() prototype
721710-08-20 comp/conf.tab: add SF_BUFSIZE
721810-08-11 misc/conformance.c: conformance(0,0) => "standard"
721910-08-11 misc/conformance.c: check ast_env_serial for dynamic astconf() changes
722010-08-11 port/lcgen.c: remember to fudge Table_t.count for synthesized entries
722110-08-04 include/ast.h,comp/setlocale.c: add { debug C.UTF-8 } mbalpha() mbwidth()
722210-08-02 misc/translate.c: add NLSPATH message cache check
722310-07-29 string/fmtint.c: fix nasty bug that rendered "1000" as "1"
722410-07-27 setlocale,lsgen,localeconv: handle C vs C_EU decimal thousands sep
722510-07-26 misc/optget.c: fix interaction with nested plugin/builtin calls
722610-06-29 string/strtoi.h: strton() multiplier 1 => power of two suffix
722710-06-28 features/wchar: handle systems that require __va_list => va_list
722810-06-28 comp/conf.tab: another PID_MAX tweak -- default to 99999 for most
722910-06-28 port/astconf.c: lone "CONFORMANCE = standard" => all defaults standard
723010-06-25 misc/optget.c: avoid sfprints() call during initialization
723110-06-01 features/api, ast_api.h: formalized forwards/backwards api compatibility
723210-06-01 _AST_API=20100601: add size_t args for all path*() output buffers
723310-06-01 comp/setlocale.c: handle C.UTF-8 test locale
723410-06-01 include/mc.h: add size_t to mcfind() for result buffer (internal api)
723510-06-01 use strlcpy() instead of strncpy()
723610-05-28 include/ast_version.h: add AST_PLUGIN_VERSION for dllplugin()
723710-05-28 include/shcmd.h: add SH_PLUGIN_VERSION for dllplugin()
723810-05-28 misc/conformance.c: add conformance(3)
723910-05-28 misc/optget.c: add [(id1|id2)...] conformance("id1|id2",0) conditionals
724010-05-25 include/sfhdr.h: adjust SF_NMAP according to _ptr_bits
724110-05-25 include/shcmd.h: add sh_builtin() macro for lib_init() table initialization
724210-05-21 misc/optget.c: --html \bfoo::bar([[:digit:]][[:upper:]]*) => foo-bar.html
724310-05-15 include/proc.h,misc/procopen.c: add PROC_ORPHAN
724410-05-09 misc/optget.c: add --???MAN[section] --???SECTION
724510-05-07 sfio,stdio: fix all snprintf() variants to handle buf==0 and/or n==0
724610-05-04 string/fmtesc.c: add mb iswsoace() and iswcntrl() quoting checks
724710-05-03 fix LC_MESSAGES catalog lookup bugs, check for $set==3, accept $set==1
724810-04-30 string/chresc.c: add chrexp() for FMT_EXP_*
724910-04-30 string/stresc.c: add strexp() for FMT_EXP_*
725010-04-30 string/chresc.c: fix \uXXXXY bug that consumed Y
725110-04-22 misc/optget.c: check for html entities in <A name="...">
725210-04-22 misc/getcwd.c: add features/syscall check for SYSGETCWD() { linux solaris }
725310-04-22 string/stresc.c: wide chars absent locale guidance default to UTF-8
725410-04-12 port/mnt.c: favor bsd getfsstat() over getmntinfo()
725510-04-11 string/strtoi.h: k (1000) and ki (1024) now differentiated
725610-04-10 misc/recstr.c: fix 'd[delimiter]' parse
725710-04-08 include/vmalloc.h,vmalloc/vmstat.c: add Vmstat_t.mode region mode bits
725810-04-05 misc/fts.c: drop 1997-01-07 fts_open()=0 is one file and stat() fails
725910-04-05 misc/optget.c,optlib.h: add Optpass_t.release for --nroff .TH
726010-04-02 misc/optget.c: fix $'[-n?\n...]' --version bug
726110-04-02 regex/regcomp.c: ~(X) => REG_EXTENDED|REG_AUGMENTED, ~(PU) instead of ~(U)
726210-03-24 misc/procopen.c: add PROC_FD_CTTY(fd)
726310-03-24 path/pathtemp.c: fix pointer => int casts
726410-03-15 regex/regcache.c: fix 1 byte buffer overflow (didn't count trailing \0)
726510-03-08 features/tvlib: fix utimensat probe to include all macros/structs
726610-03-07 features/lib: change stream_peek to test pipes only
726710-03-07 string/strelapsed.c: fix next char return overrun
726810-03-06 tm/tvtouch.c: use runtime fallback if utimensat() fails with ENOSYS
726910-03-05 path/pathtemp.c: add pfx /seed for regression testing
727010-03-04 vmalloc/vmwalk.c: add user supplied handle arg
727110-03-04 path/pathtemp.c: properly handle mktemp()-style *+(X) templates
727210-03-03 include/ast_getopt.h: remove NULL guard - _AST_GETOPT_H now handles it
727310-02-24 comp/getopt.h: fix ast_std.h interactions
727410-02-24 vmalloc/malloc.c: empty { VMALLOC_OPTION VMDEBUG ... } => no debug!
727510-02-02 string/base64.c: fix corner case output buffer overflow
727610-02-02 features/fs: sys/mnttab.h requires stdio.h on some systems!!
727710-02-01 misc/optget.c: uppercase --html heading -- doh
727810-01-29 misc/optget.c: [+NAME?...] overrides error_info.id for >= STYLE_man
727910-01-25 vmalloc/vmprivate.c: fix seg ptr initialization bug (24 years old!!)
728010-01-20 misc/optget.c: handle nested {...} rendering
728110-01-20 misc/state.c: add ast.version for runtime api version
728210-01-20 port/astconf.c: "_AST_VERSION" now returns ast.version
728310-01-20 include/ast_std.h: add ast.version for runtime api version
728410-01-19 astlicense.c: add epl
728510-01-01 vmalloc: VMALLOC_OPTIONS env var for all runtime options
728610-01-01 include: change some <ast.h> refs to less intrusive <ast_*.h>
728710-01-01 setlocale.c,translate.c,fmterror.c: AST_LC_internal retains prev state
728810-01-01 comp/setlocale.c: AST_LC_setenv defers to LC_ALL (for sh)
728910-01-01 ast_std.h: add { AST_LC_internal AST_LC_setenv }
729009-12-24 comp/setlocale.c: fix setlocale(LC_ALL,"") when already initialized
729109-12-17 misc/optget.c: handle mixed solaris usage="x:f:(in)yo:(out)"
729209-12-11 regex/regcomp.c: posix semantics for [z-a]
729309-12-11 regex/regcomp.c: fix BRE/ERE ^^ logic
729409-12-11 regex/regcomp.c: fix regcomb() for REG_LEFT|REG_RIGHT
729509-12-11 regex/regcomp.c: bm complete=0 if REX_END
729609-12-11 comp/sigflag.c: add with npt check in features/sig.sh
729709-12-11 tm/tminit.c: fix _tzset_environ logic
729809-12-09 tm/tmlocale.c: include "ast_nl_types.h" to pull nl_langinfo in!
729909-12-04 features/options: add "opt map-libc" check
730009-12-03 tm/tmxdate.c: fix 'next month final day' for dec -> jan
730109-11-21 misc/magic.tab: add gimp XCF
730209-11-20 vmalloc/vmtrace.c: add pid to assertion disgnostics
730309-11-11 regex.h,regcomp.c: add REG_CLASS_ESCAPE, \ inside [...] literal by default
730409-11-03 regex/regcache.c: change to variable length pattern strings
730509-10-28 include/error.h: fix ERROR_translate() arg parens
730609-10-26 port/lcgen.c,comp/setlocale.c: handle LANG init after LC_* already defined
730709-10-05 _sfopen.c: add but ignore 'F' flags for stdio compatibility
730809-09-28 fts.h,ftwalk.h,fts.c: promote { namelen pathlen level } to (s)size_t
730909-09-28 locales: add AST_LC_LANG for $LANG
731009-09-28 setlocale.c: fix logic for dynamic { LANG LC_ALL LC_* } changes
731109-09-17 include/sfio.h,sfio/sfwalk.c: add sfwalk()
731209-09-09 sfio/sfputr.c: add SIGPIPE hang fix
731309-08-24 sfio/sfreserve.c: fix SF_UNBOUND logic with pushed streams
731409-08-18 include/ast_std.h,ast.h: add ast.mb_sync to sync mbchar() after error
731509-08-17 comp/setlocale.c: add AST_LC_utf8 and { utf8_mbtowc() utf8_mblen() }
731609-08-11 comp/setlocale.c: treat "en"/"en_US" AST_LC_MESSAGES as "C"/"POSIX"
731709-08-10 vmalloc/vmhdr.h: add user-defined _AST_PAGESIZE and computed VMHEAPINCR
731809-08-09 comp/conf.tab: add NPROCESSORS_MAX
731909-07-29 astlicense.c: fix first name=value logic error
732009-07-22 string/fmtip6.c: don't drop trailing 0 in 44::1:0:0
732109-06-30 port/astconf.c: standard PATH_RESOLVE is "physical" (not "metaphysical")
732209-06-19 vmalloc: sync with kpv
732309-06-19 include/shcmd.h: add sh_context(p) cast
732409-06-11 misc/magic.tab: differentiate pc 386 32/64 bit dll/exe/obj
732509-06-06 port/astconf.c: fix look->name null pointer reference
732609-06-05 port/astconf.c: fix 'UNIVERSE = value' synthesize logic
732709-05-25 tm/tmxduration.c: add
732809-05-08 comp/syslog.c: add _UWIN /var/log/syslog preference
732909-05-01 comp/setlocale.c: fix _UWIN intercepts to return NiL on unknown locales
733009-04-27 sfio/sfpool.c: fix bug that did not return pool on delete
733109-04-22 include/regex.h,regex/regcomp.c: add REG_REGEXP <regexp.h> compatibility
733209-04-15 tm/tmxdate.c: handle "4th thursday in november"
733309-03-31 string/strvcmp.c,string/strnvcmp.c: add version strcmp(3)
733409-03-31 string/strpcmp.c,string/strnpcmp.c: add path prefix strcmp(3)
733509-03-29 misc/optget.c: clean up num = number casts
733609-03-04 tm/tmxmake.c: add tmxtm() with zone override
733709-03-03 tm/tmxfmt.c: add %(...)<c>, specifically %(...)z for output zone
733809-02-22 tm/tmxdate.c: add iso P... durations
733909-02-02 path/pathprog.c: add
734009-02-02 misc/opthdr.h,optget.c: fix flags mixup, handle old '-' as option
734109-02-02 sfio/sfprints.c: fix sfvaprints() return value to not count trailing '\0'
734209-02-02 misc/cmdarg.c: handle !defined(ARG_MAX)
734309-02-02 port/astconf.c: fix UNIVERSE overwrite of null[] value!
734409-01-31 features/sys: drop header sys/localedef.h
734509-01-28 include/fs3d.h,misc/fs3d.c: mount() => fs3d_mount() for diff std prototypes
734609-01-14 misc/fts_open.c: delay top list reorder until first fts_read()
734709-01-14 include/ls.h: LS_W_INUMBER => 9 to accomodate large st_ino
734809-01-14 misc/optget.c: expand STYLE_usage input text
734909-01-09 features/uwin,stdio/_stdfun.c: iffe for _p__iob and __p__iob
735009-01-09 misc/magic.tab: add ISO filesystem image entries
735109-01-07 string/strtoi.c: strtol() etc. do not consume [lLuU] suffix -- thanks jkf
735209-01-07 sfio/sfstrtof.h: strtod() etc. do not consume [fFlL] suffix -- thanks jkf
735309-01-05 string/strlcat.c: fix logic to match docs (not that easy)
735408-12-30 tm/tmxdate.c,include/tm.h: add TM_WORK { "workday" "working" "work" }
735508-12-28 sfio/sfcvt.c: fix 'a' format rounding
735608-12-21 tm/tmdata.c: add 2008-12-31+23:59:60-0000 leap second event
735708-12-19 tm/tmxdate.c: check for dates near the epoch rolling back to the future
735808-12-19 tm/tmxfmt.c: change %s for now==0 to be the epoch
735908-12-07 include/ast_std.h,misc/getenv.c: no _ast_getenv for uwin ast54 compatibility
736008-12-07 tm/tmxfmt.c: add %[_][EO]K for [space pad] [full|long] iso
736108-12-07 sfio/sfvscanf.c: fix ok[] short by one allocation
736208-12-07 comp/setlocale.c: fix off by one composite initialition loop test
736308-12-07 path/pathkey.c: fix off by one loop test
736408-12-04 vmalloc/vmbest.c: catch sbrk() wraparound
736508-12-04 comp/spawnveg.c: clean up attrs on failure too
736608-11-04 regex/regcomp.c: fix locale [!-...] and [^-...] re-initialization
736708-11-04 stdio: add flockfile.c ftrylockfile.c funlockfile.c
736808-10-24 port/astconf.c: handle multiple/trailing '/' in universe initialization
736908-09-10 misc/magic.c: handle old vcodex() indices
737008-09-10 sfio/sfvprintf.c: drop SF_WCWIDTH, use %Lc or %Ls instead
737108-09-05 Makefile: ibm.risc joins the :NOOPTIMIZE: crowd
737208-09-04 regex/regnexec.c: fix nested delimiter match beyond end of subject
737308-08-20 misc/fts.c: fix st_nlink stat() optimization logic
737408-08-19 sfio/sfpkrd.c: workaround macosx recv(PEEK) data consumption on non-socket
737508-08-19 strn?tol?d: handle long double with smaller exponent range than double
737608-08-18 sfio/sfcvt.c: eliminate excessive multiplies and integral overprecision
737708-08-11 tm/tmxfmt.c: handle %10N and %010N
737808-08-06 include/shcmd.h: add 'int invariant;' for builtin invariant arg count
737908-08-05 features/ndbm: favor sleepycat ndbm compatibility
738008-07-21 include/glob.h,misc/glob.c: GLOB_STARSTAR only forces lstat on chdir
738108-07-17 sfio: sync with kpv
738208-07-17 misc/optget.c: call astwinsize() each time terminal width required
738308-07-16 sfio/sfvscanf.c: fix %% to skip leading space per posix
738408-07-16 vmalloc/vmbest.c: add VMCHECK=m, VM_mmap to favor mmap() alloc
738508-07-16 features/stdio,stdio/f(read|write).c: size_t return value!! ouch
738608-06-24 tm/tmxfmt.c: fix %z to handle tm_isdst -- doh
738708-06-24 misc/astintercept.c,misc/getenv.c: split from misc/setenviron.c
738808-06-17 misc/setenviron.c: add { astintercept() getenv() }
738908-06-09 tm/tmlocale.c: use _DATE_FMT if defined for TM_DEFAULT
739008-06-06 misc/optget.c: handle sub-component about details
739108-06-04 misc/optget.c: fix [-n?\n...\n] version parse
739208-06-04 include/debug.h,misc/debug.c: merge with kpvdebug.h
739308-06-02 features/ndbm: add to tame dbmlib.iffe replication
739408-06-01 comp/resolvepath.c,realpath.c: fix resolvepath() return value type
739508-05-22 tm/tmxdate.c: fix a few ordinal/last/this/next bugs
739608-05-18 string/fmtre.c: fix omitted stack var initialization bug
739708-05-14 regex/regcomp.c,regcoll.c: fix UTF-8 collation sequence logic
739808-05-11 tm/tmxfmt.c: :NOOPTIMIZE:, otherwise %Q/../../ fails
739908-05-01 tm/tmxdate.c: mon 1..12 => mon[13] -- doh
740008-04-30 misc/glob.c,reegex/regcomp.c: ~(R) => ~(O) to avoid pcre clash
740108-04-24 port/astconf.c: 'name = value' does assignment without system init
740208-04-15 port/astconf.c: SC#N treated like 'SC(N)'
740308-04-14 misc/optget.c: clean up nroff output
740408-04-01 port/astconf.c: add RELEASE => /proc/version fallback
740508-03-30 misc/optget.c: [-n]... to enable -number & +number options
740608-03-06 misc/optget.c: ---* and +++* are now operands
740708-03-06 misc/errorx.c: fix old error_info.translate workaround
740808-02-05 regex/regcomp.c: allow REG_SHELL {,n}... => {0,n}...
740908-02-27 misc/stk.c: top element during allocation relocated to top
741008-02-18 include/ip6.h,string/strtoip6.c,fmtip6.c: add ipv6 addr support
741108-02-14 regex/regsubexec.c: fix null match (tricky)
741208-02-14 regex/regsubcomp.c: fix SRE to match ksh
741308-02-11 comp/spawnveg.c: return proper errno on [v]fork() failure
741408-02-11 tm/tmxdate.c,tmdata.c: handle more ISO 8601:2000 forms
741508-02-02 regex/reglib.h: add REGMULTIREF to REG_COMP
741608-02-02 string/strmatch.c: fix str="" pat="" sub values
741708-01-31 comp/conf.sh,conf.tab: handle /bin/sh \ in read data, redir subshell
741808-01-18 misc/magic.tab: amd-x68, 64-bit => x86-64
741908-01-18 string/strnton.c,strntonll.c: add
742007-12-10 string/strelapsed.c: "0" is a valid elapsed time!
742107-12-02 sfio/sfreserve.c: preserve SF_SHARE sfrd() via sfreserve(f,0,0)
742207-11-21 comp/setlocale.c: add sjis_mbtowc() to work around [\~] translation
742307-11-15 features/signal.c: RT(1) .. RT(MAX-1) => RTMIN+1 .. RTMAX-1
742407-11-14 features/float: favor sscanf() due to gnu strto[l]d() nan bugs
742507-10-31 regex/regcomp.c: fix REX_COLL_CLASS node allocation size
742607-10-31 sfio/sfcvt.c: use signbit() if available
742707-10-31 features/isoc99: _ISOC99_SOURCE tests
742807-10-31 port/astmath.c: add -DN=8 for signbit()
742907-10-31 sfio/sfstrtod.h: don't forget about -0.0
743007-10-26 features/map.c: add { optopt optarg optind opterr }
743107-10-26 features/stdio: add _filbuf => _ast__filbuf
743207-10-26 comp/getsubopt.c: fix #undef that interfered with <ast_map.h>
743307-10-26 regex/regcomp.c: fix bug that missed ')' in ~(F)...
743407-10-12 port/astconf.c: fix CONF_ALLOC 16 bit overflow
743507-10-12 misc/fts.c: fix fts_close() to free the handle -- doh
743607-10-11 comp/setlocale.c: second and subsequent setlocale(*,"") reverts to previous
743707-10-11 path/pathprobe.c: add vfs ST_NOSUID check
743807-10-10 comp/conf.tab: add a few more xpg6 deferrals
743907-09-28 astsa: update to share with mainline src via _PACKAGE_astsa
744007-09-25 sfio/sfgetr.c: no limit on string stream line size
744107-09-25 sfio/sfextern.c: increase _Sfmaxr to 256*1024
744207-09-18 misc/procopen.c: tighten up SIGCHLD logic between parent/child
744307-09-18 misc/signal.c: unblock SIG_DFL after setting handler, sig<0 => don't unblock
744407-09-13 misc/fs3d.c: no $LD_PRELOAD => no 3d and avoids invalid mount(2) call
744507-09-11 vmalloc: vmstat(0,0)==1 => region in use, drop VM_primary|VM_secondary
744607-09-05 misc/recstr.c: handle [lL] gobbled by strtol() -- ouch
744707-08-17 path/pathprobe.c: handle '\r' in VERSION string
744807-07-17 regex/regcache.c: regcache(0,n,0) extends cache to size n (no shrinking)
744907-07-16 tm/tmdata.c: add 2005-12-31, drop 1999-12-31 (where did that come from?)
745007-05-21 tm/tmxfmt.c,tmxscan.c: %F => %L (TM_DEFAULT); %F => %Y-%m-%d
745107-05-15 sfio/sfvprintf.c: %h? and SFFMT_SHORT => raw bytes
745207-05-09 features/signal.c,features/siglist: use kill -l & strsignal()
745307-04-25 misc/optctx.c: add for opt_info switching
745407-04-24 misc/cmdarg.c,include/cmdarg.h: add CMD_CHECKED, CMD_SILENT
745507-04-24 misc/procopen.c,include/proc.h: add PROC_CHECK
745607-04-24 misc/procrun.c: add flags arg (current use PROC_ARGMOD)
745707-04-24 misc/cmdarg.c,include/cmdarg.h: move from src/cmd/tw
745807-04-20 port/(lclang.h|lc.c|mc.c|lclib.h|lcgen.c): separate lctab.c
745907-04-20 comp/conf.sh: defer to systems without 'grep -q' -- sigh
746007-04-20 comp/conf.sh: probe for LL integer constant initializer suffix
746107-04-20 include/syslog.h: <namval.h> => <ast_namval.h> for win32
746207-04-20 ast_namval.h: add as copy of include/namval.h for win32
746307-04-19 comp/conf.tab: fix SVID SI entries to probe SI_* (not _SI_*)
746407-04-13 tm/tmxdate.c,tm/tmzone.c: handle [-+]0000 UTC zone offset
746507-04-11 sfio/sfvprintf.c: add %F, propagate SFFMT_UPPER
746607-04-11 sfio/sfcvt.c: handle SFFMT_UPPER => nan/inf vs. NAN/INF
746707-04-02 comp/conf.tab,comp/conf.sh: add C/POSIX <stdint.h> symbols
746807-03-28 misc/optget.c: fix l10n --?-
746907-03-25 features/common: fix { ast_std.h ast_map.h stdint.h } logic
747007-03-21 error.h: move from error_info to (*_error_data_)
747107-03-21 misc/error.c: add errorctx() for error_info switching
747207-03-21 option.h: move from opt_info to (*_opt_data_)
747307-03-19 regex/regdecomp.c: fix REX_ONECHAR escapes and add REX_KMP
747407-03-11 tm/tmxscan.c,regex/regnexec.c: fix strict-alias transgressions
747507-02-27 comp/conf.sh: handle native getconf invalid numeric values
747607-02-21 comp/conf.sh,comp/conf.tab: handle SSIZE_MAX vs _POSIX_SSIZE_MAX
747707-02-20 sfio/sfvprintf.c: handle SF_WCWIDTH justification
747807-02-14 features/common: cover <stdint.h>, move to int_(bits)_t
747907-02-14 include/int.h: drop
748007-02-14 include/sfio.h: add SF_WCWIDTH
748107-02-12 comp/conf.sh: fix CONF_LIMIT bug that missed ULONG_MAX etc.
748207-02-12 comp/conf.tab: *LONGLONG* => *LLONG* to match posix
748307-02-12 features/float: *LONGLONG* => *LLONG* to match posix
748407-02-12 port/astconf.c: handle CONF_LIMITS_DEF with no deferral
748507-02-12 stdio/vasprintf.c: add trailing '\0' -- doh
748607-02-04 string/fmtelapsed.c: fix naive multi month/year logic
748707-02-02 misc/optget.c: add --??posix for getopts(1)/getopt(3)
748807-01-26 string/chresc.c: use mbchar()
748907-01-26 misc/optget.c: handle "o:-:" usage for old-style long options
749007-01-22 sfio/sfdisc.c,sfpool.c: handle push on streams with pending peek
749107-01-22 include/sfio.h: mv Sfieee_t to sfio/sfhdr.h
749207-01-17 tm/tmxfmt.c: fix terminating nil logic which clobbered size-1
749307-01-11 misc/stk.c: a 2 day marathon bug fix (can we release now dr ek?)
749407-01-05 comp/spawnveg.c: posix_spawnattr_setflags(POSIX_SPAWN_SETPGROUP)
749507-01-05 misc/error.c: fix multibyte vs. printable logic
749607-01-01 comp/conf.sh: LC_ALL=C
749706-12-26 tm/tmxdate.c: handle nn*.nnnn* == sec.ns
749806-12-20 features/libpath.sh: generalize sol.* LIBPATH patterns
749906-12-18 comp/setlocale.c: include ast_standards.h and ast_wchar.h !
750006-12-12 string/strperm.c: octal modes are absolute!
750106-12-11 comp/conf.tab: always defer ARG_MAX
750206-12-07 Makefile: fix conftab.c generation CCFLAGS to match build - doh
750306-12-04 sfio/sfcvt.c: fix (int) vs. (long) cast mismatches
750406-12-01 comp/conf.tab: add changes to cover solaris { bin xpg4 xpg6 }
750506-12-01 regex/reginit.c: adjust { SRE KRE } escaped (){}*? inside [...]
750606-12-01 sfio/sfcvt.c: add signbit/copysign tests
750706-11-22 comp/spawnveg.c: fix _real_vfork logic to work with 3d
750806-11-20 features/common: bias _ast_int8_t "long long" before "__int64"
750906-11-20 string/strperm.c: fix X to work with all ops (not just +)
751006-11-15 astconf.c,conf.tab: add CONF_DEFER_* for variable constants
751106-11-11 port/astconf.c: validate path arg w.r.t. underlying calls
751206-11-11 comp/conf.sh: fix S CONF_STANDARD bug, add D to defer to native
751306-11-11 comp/conf.tab: add D to defer to native
751406-11-01 include/vmalloc.h: avoid VM_FLAGS sys/v*.h clash
751506-11-01 include/ast.h: add FMT_PARAM for fmtquote()
751606-10-31 disc/sfdcseekable.c: add SFSK_DISCARD for seekable window control
751706-10-31 comp/spawnveg.c,features/lib: handle posix_spawn exit status 127
751806-10-30 features/lib: fix posix_spawn() fork() prototype conflicts
751906-10-30 string/fmtscale.c: fix 1024 rounding bugs
752006-10-27 disc/sfkeyprintf.c: handle 'i' (=='d') -- oops
752106-10-26 sfio/sfvprintf.c: %#d => fmtscale(1000), %#i => fmtscale(1024)
752206-10-26 features/map.c: _map_libc cleanup
752306-10-26 features/fcntl: add to the circle of trust
752406-10-26 features/sys: add <sys/socket.h> socklen_t
752506-10-26 include/regex.h: handle include before <ast_map.h>
752606-10-25 astconf "SHELL" => "SH" to avoid _POSIX_SHELL conflict
752706-10-25 comp/conf.*: drop no-op duplicate conftab.c entries
752806-10-18 string/fmtscale.c: 1000: n[.]n[n](kMGTPE), 1024: n[.]n[n](KMGTPE)i
752906-10-11 ast_std.h: now implies <sys/stat.h> (did on most before anyway)
753006-10-11 strtoi.h: ignore sign for 0, validate scale shift
753106-10-11 strdup.c,vmstrdup.c: handle 0 arg
753206-10-11 add sfstruse()/sfstropen() error checks
753306-10-10 misc/procopen.c: envv==environ => don't modify environ
753406-10-10 misc/procclose.c: return valid exit(1) status
753506-10-06 port/astconf.c,comp/conf.sh,comp/conf.tab: play nice with getconf(1)
753606-10-01 comp/conf.tab: SHELL default checks { _CS_PATH } X { ksh ksh93 sh }
753706-10-01 comp/conf.sh: export CONF_getconf to shell actions
753806-10-01 comp/putenv.c: always enable setenv() for procopen()
753906-10-01 misc/procopen.c: use pathshell() or astconf("SHELL",0,0) if PARANOID
754006-10-01 path/pathshell.c: localize the shell path patterns and accept ksh93
754106-09-28 Makefile: avoid ast <stdio.h> vix iffe -X ast -- doh
754206-09-27 regex/regdecomp.c: add
754306-09-26 regex/regcomp.c: handle KRE ~(...)<invalid-kre>
754406-09-25 reorganize to avoid native header intercepts
754506-09-15 uwin/crypt.c: _UWIN only!
754606-09-14 Makefile: tweak the ast_common.h bootstrap again (finally?)
754706-09-14 misc/optget.c: noncommercial => OPT_proprietary
754806-09-12 string/strelapsed.c: fix multi-char qualifier parse
754906-09-12 string/strtoi.h: drop [cClLqQwW] multipliers
755006-09-11 misc/optget.c: add numeric arg validity check
755106-09-07 misc/optget.c,tm/tmfix.c: fix uninitialzed var refs
755206-09-05 path/pathprobe.c: add version header verification
755306-08-01 Makefile: handle iffe vs FEATURE/common vs ast_common.h
755406-08-31 Makefile: add ast_map.h to the bootstrap list
755506-08-30 misc/glob.c: fix ~(E)re bug that stripped ~(E) before regcomp
755606-08-30 include/ast.h: add { integralof(x) pointerof(x) }
755706-08-27 string/strelapsed.c: fix off-by-one (too little) parse bug
755806-08-25 misc/optget.c: 0*<n>.* numeric option args => <n>.*
755906-08-22 misc/glob.c: handle ~(...) pattern options
756006-08-16 string/strelapsed.c: fix off-by-one (too far) parse bug
756106-08-16 regex/regcomp.c: accept but ignore ~(N)
756206-08-14 features/libpath.sh: add solaris LD_LIBRARY_PATH_64 check
756306-08-05 sfio/sfpool.c: pool SF_READ|SF_WRITE loop fix
756406-08-02 misc/fts.c: fix FTS_NOSTAT optimization to check for ..
756506-07-28 include/glob.h: add gl_extra for user globlist_t expansion
756606-07-27 features/common: #include "ast_map.h"
756706-07-26 comp/fnmatch.[ch]: allow <ast_map.h> to map fnmatch()
756806-07-22 cdt: snarf from kpv
756906-07-17 string/strperm.c: perm==-1 skips umask(1)
757006-07-17 sfio/sfvprintf.c: handle format invalid mb seq
757106-07-17 regex/regcomp.c: inline REG_SHELL => anchored, otherwise not
757206-07-17 regex/regcomp.c: inline B|G:basic E:REG_EXTENDED F|L:REG_LITERAL
757306-07-17 regex/regcomp.c: inline l:REG_LEFT r:REG_RIGHT
757406-07-17 regex/regcomp.c: inline a:REG_LEFT|REG_RIGHT p:~REG_LENIENT
757506-07-17 string/chresc.c: add \Uxxxxxxxx
757606-07-17 sfio/sfstrtof.h: ignore thousands sep after decimal
757706-07-17 string/tokline.c: splice() => spliceline() for bsd
757806-06-27 features/float,sfio/sfcvt.c: fix Nan logic
757906-06-27 port/astmath.c: fix long double isnan() test
758006-06-27 features/map.c: _map_libc for std => _ast_std
758106-06-25 string/strperm.c: handle posix = w.r.t. umask
758206-06-19 port/mnt.c,features/fs: handle netbsd getmntent api change
758306-06-18 regex/regstat.c: add REG_LITERAL check
758406-06-11 cdt/dtview.c: update from kpv
758506-05-31 sfio/sfhdr.h: fix _SFOPEN() typo
758606-05-09 comp/conf.sh: add native getconf -a names to the mix
758706-04-28 misc/optget.c: add solaris long option name compatibility
758806-03-09 string/strmatch.c: add REG_ADVANCE => REG_* flags
758906-02-14 comp/iconv.c: fix uwin iconv_list() /reg/ generator
759006-02-10 port/astconf.c: relax standard prefix filter
759106-02-08 sfrd.c,sfsync.c: lock logic bug fix
759206-02-01 port/astlicense.c: add { parent incorporation }
759306-01-26 port/astconf.c: fix { LIBPREFIX LIBSUFFIX } length
759406-01-06 features/lib: change _UNIV_DEFAULT probe to use cross{...}
759506-01-04 misc/stk.c: fix n**2 realloc behavior
759606-01-01 include/sfio.h: export { _Sfi _Sfmaxr }
759705-12-13 string/chresc.c: handle \C-X => control-X, \M- => ESC
759805-11-22 regex/regcache.c: add, convert string/strmatch.c to regcache()
759905-10-06 string/ccmap.c: update ebcdic-u to be idempotent
760005-09-28 vmalloc: snarf from kpv; fixes large block brk() thrashing
760105-09-26 misc/magic.c,misc/magic.tab: handle latest vcodex header
760205-09-12 misc/optget.c: reset opt_info.offset on error
7603	 string/strtoi.h: strton() '.' multiplier only if m>1
7604	 string/fmtesc.c: add unadvertized FMT_PARM for FMT_SHELL
760505-09-09 string/fmtesc.c: fix FMT_SHELL logic w.r.t. [$`]
760605-08-11 string/strerror.c: fix { sys_errlist sys_nerr } prototypes
760705-08-03 sfio: snarf sfvaprints sfaprints
760805-07-21 port/astconf.c: retain most recent synthesized lookup
760905-07-20 sfio/sfsetbuf.c: default file io size now 64K on all systems
761005-07-17 ccmap*: add microfocus cobol EBCDIC_U
761105-06-29 regex/regcomp.c: fix the A & B inline flag logic
761205-06-15 include/recfmt.h: add fs format flag to fmtrec()
761305-06-14 error.c: add ERROR_OPTIONS { break count match }
761405-06-07 features/stdio: drop FEATURE/limits to fix bootstrap circular dep
761505-06-02 features/*,Makefile: drop vestigel iffeio.h bootstrap workaround
761605-05-31 string/fmtbuf.c: unlock (spin) before each return -- doh
761705-05-30 sfio/sfpkrd.c: work around macos 10.4 recv(MSG_PEEK) bug
761805-05-27 regex: add REX_NEST (?%[S.][T.][OT])
7619	 magic.tab: ammend bsd db magic
762005-05-23 regex: REX_NEST (?%[D.][E.][L.][Q.][oc]...)
762105-05-21 regex: state.fold[] is now locale specific -- doh
762205-05-19 regex: add REX_NEST (?%\\()<>[]""...) %(...) nested match
762305-05-15 recfmt.h: add recstr() reclen() fmtrec()
762405-05-13 optget.c: allow boolean options to take numeric values
762505-05-12 recfmt.c: add to recfmt.h, adjust Recfmt_t encodings
762605-04-30 sfio: add sfmaxr(), default 64K
762705-04-22 comp/omitted.c: fix magic() logic for files < 512 bytes
762805-04-20 cdt: snarf update from kpv; void* Dt_t.user added
7629	 misc/error.c: library => ERROR_LIBRARY
763005-04-19 regex/regcomp.c: handle REG_SHELL [^...] == [!...]
763105-04-11 tm/tmxscan.c: handle yyy.mm.dd[-+.]hh.mm.ss.nnnnnn
763205-04-07 regex/regnexec.c: fix out of bounds boundary check -- ouch
7633	 features/align.c: add jmp_buf to the alignment mix (ia64)
7634	 vmalloc/vmhdr.h: add jmp_buf to the alignment mix (ia64)
763505-03-31 misc/optget.c: fix option { - _ } separator matching
763605-03-30 misc/glob.c: eliminate superfluous GLOB_NOMATCH stat() calls
763705-03-24 port/astwinsize.c: include <sys/ioctl.h> if possible
763805-03-23 string/ccmap.c: add ebcdic-m mvs cobol table
763905-03-11 comp/omitted.c: handle utime[s](const,const)
7640	 comp/conf.tab: fix linux PID_MAX probe
764105-03-10 comp/setlocale.c: LC_* value "" => unset -- doh
7642	 misc/optget.c: reorder _PACKAGE_astsa code for msgcc
764305-03-08 misc/optget.c: delete leading space in STYLE_nroff output
764405-03-07 sfio/sfhdr.h: drop extern _sfdscan -- clashes with sfvscanf.c static
764505-03-01 tm/tminit.c: add tmlocaltime() for tzset() getenv() override workaround
764605-02-20 features/tvlib: tmsettimeofday only for systems that have settimeofday
7647	 features/float: fix mvs.s390 NaN tests
764805-02-18 tm/tmxmake.c: fix <0 west of GMT bug that warped to 1800's -- wow
764905-02-11 port/mnt.c: handle lynxos MOUNTED=/etc/fstab
765005-02-08 features/float,sfio.h,sfcvt.c,sftable.c: add INF and fix NAN
765105-02-04 features/lib: add _std_strtol (for lynxos)
7652	 include/ast_std.h: add _std_strtol tests
7653	 comp/strtod.c: #define S2F_function strtod
7654	 misc/signal.c: fix ancient bsd SV_INTERRUPT vs. SV_ABORT clash
765505-01-11 sfio/sfmove.c: try to seek(fr) when fw==0
7656	 comp/omitted.c: intercept utimes() too
7657	 comp/omitted.c: add DOSPATHVARS env var path value conversions
7658	 features/tvlib,tm/tvtouch.c: check for utimets()
7659	 misc/optget.c: handle '-' or '_' option word separators
7660	 sfio/_sfopen.c: allow stream mode changes after initialization
7661	 sfio: sync with kpv: SF_SYNCED fix for ksh input loss bug
766205-01-09 tm/tmxfmt.c: fix %6N for n<100000000
766305-01-08 regex/regcomp.c: conj() => con() to avoid C99 clash
766405-01-05 tm/*: fix { %U %V %W } logic -- my head hurts
766504-12-30 tm/tmxtime.c: fix tm_isdst<0 loop
766604-12-23 vmalloc/vmbest.c: fix vmresize bug that didn't 0 new data
766704-12-19 misc/optget.c: broaden - long option match
766804-12-09 string/strtoi.h: fix terabyte 't' suffix math
7669	 string/strmatch.c: flush cache on locale change
767004-12-01 tm/tmsleep.c: add
7671	 tv.h,tv*.c,tv.3: move from pax
7672	 tmx.h,tmx*.c,tmx.3: add high resolution tm(3) counterparts
7673	 features/lib: add *another* sgi linux.ia64 memccpy bug check
767404-10-31 Makefile: __OBSOLETE__ now computed <6 months ago year>0101
7675	 ccode.h,ccmapid.c: add ccmaplist(Ccmap_t*) iterator
7676	 option.h,optesc.c: add 3rd arg, 1 => quote '?' too
7677	 misc/magic.c: fix bug that terminated `string \0a' at \0
7678	 misc/magic.c: handle vcodex() via decompose()
7679	 misc/magic.tab: add vcodex magic
7680	 features/stdio: handle _LARGEFILE64_SOURCE -- oops
7681	 stdio/(fseek|ftell|fseeko|fsetpos|fgetpos|ftello).c: oops^2
768204-10-28 string/swapop.c: size==-4 => size=4 and extend op=3 to op=7
7683	 tm/tmfix.c: fix tm_mon<0 logic
768404-10-22 tm/tmdate.c: handle 'final day feb 2004'
7685	 port/astlicense.c: add query=all|id|${...}${...}
7686	 port/astlicense.c: "free" => "mit"
7687	 comp/omitted.c: revert to the open source license
7688	 string/stropt.c: drop siz==0 => tab is hash table
7689	 include/sfio.h: incorporate <sfstr.h>
7690	 include/sfstr.h: drop
7691	 disc/sfstrtmp.c: drop -- use sfstrbuf()
769204-10-20 misc/magic.tab: update tar magic
769304-10-18 ufc-crypt.h,crypt_util.c: drop GPL code
7694	 crypt.c: add BSD code
7695	 pathpath.c: disable { $0 $_ $PWD } related root search
769604-10-01 normalize ident stamps
7697	 port/astlicense.c: add type=cpl -- yeah
769804-09-25 string/swapop.c: return op < size -- duh
769904-09-23 comp/spawnveg.c: :NOOPTIMIZE: -- volatile sometimes ignored
770004-09-21 comp/spawnveg.c: exec_errno_ptr is volatile -- duh
770104-09-14 tm/tmscan.c: add %| alternation and %& => tmdate()
770204-09-08 misc/optget.c: add :!value: omitted optional arg value
7703	 misc/optget.c: fix --noNAME ambiguous option logic
770404-08-26 string/strperm.c: add who^mode to propagate least restrictive up
7705	 astmath.c: add { frexpl ldexpl } checks for ast.req
7706	 port/astlicense.c: ignore first option if non-assignment
7707	 include/ast_dir.h: move d_fileno map before struct defs -- duh
770804-08-24 vmalloc/vmbest.c: add {VM_region} VMCHECK=+r for region segment checks
7709	 misc/recfmt.c,include/recfmt.h: add
771004-08-23 vmalloc/vmbest.c: add {VM_primary VM_secondary} VMCHECK=-s for primary
7711	 features/common: punt to <stdarg.h> for unknown va_list
771204-08-11 vmalloc: sync _UWIN libposix hooks
771304-07-27 features/common,features/limits.c: ULL suffix for unsigned _ast_int8_t
771404-07-22 include/ast.h,comp/eaccess.c: add eaccess() for effective access()
771504-07-19 comp/open.c,sfio/_sfopen.c: { O_RDONLY O_WRONLY O_RDWR } are values
771604-06-28 misc/error.c: check level after error_info.auxilliary
771704-06-24 string/strmatch.c: strgrpmatch() match[] now variable size array
771804-06-17 features/common: change _DLL null define to (the standard ast) 1
771904-06-11 misc/optget.c: allow optional [-|+|--|++] optstr() option prefix
7720	 misc/optget.c: reset optstr() state on 0 return
7721	 misc/optget.c: text()=>textout() linux.ppc symbol hijack workaround
772204-05-31 sfio/sfreserve.c: no side buffer if user buffer is large enough
772304-05-27 string/fmtbuf.c: handle one concurrent buf > sizeof(buf)
772404-05-24 regcomp.c: fix no-advance initialization
772504-05-05 conf.tab,conf.sh: update to align with standards
7726	 magic.tab: ms suffix update
772704-05-04 port/lcgen.c: fix territory initialization
772804-04-15 tm/tmdate.c,include/tm.h: fix specific and ordinal days
772904-04-08 astconf: retain { HOSTTYPE LIBPATH LIBPREFIX LIBSUFFIX } strict vals
773004-04-07 vmalloc/vmbest.c: fix alpha tiny block bug
7731	 vmalloc/malloc.c: re-enable on alpha
773204-03-30 tm/tminit.c: GMT => UCT only if tz.daylight not defined
773304-03-25 vmalloc/malloc.c: _AST_std_malloc=1 for __alpha
7734	 path/pathprobe.c: per-user probe dir => $HOME/.probe/$HOSTTYPE
773504-03-23 regex/reglib.h: fix isw*() redefines
773604-03-17 features/stdio: no __FILE override for __CYGWIN_ (sys/reent.h clash)
7737	 sfio/sfhdr.h,sfio/sfsetbuf.c: lower sfmove() default buf size 4x
773804-02-29 comp/omitted.c: move env trace after PATH fixup
7739	 comp/omitted.c: cygwin spawn _P_DETACH => _P_NOWAIT+setpgid(pid,0)
7740	 misc/optget.c: fix html mailto: match
7741	 port/astlicense.c: add type=test for fixed 2001 date
7742	 features/float: check local NaNQ first
7743	 vmalloc/vmhdr.h: fix _vmextern_ vm_truncate return type
7744	 misc/magic.tab: add elf s390 index=22
774504-02-26 vmalloc: VMCHECK a:assertions c:arena-check w:warn-instead-of-abort
7746	 sfio/sfvscanf.c: fix extf arg selection
774704-02-24 features/dirent: set nodefine to avoid ast_std.h _typ_off64_t undef
7748	 disc/sfkeyprintf.c: only case pattern must be ()[] balanced
774904-02-14 include/sfio_t.h: add SF_DCDOWN, SFDCNEXT(), SFDCPREV()
775004-02-13 string/strmatch.c: fix bug that didn't save one-time sub[] size
7751	 vmalloc: -g: export VMCHECK=1 enable malloc/free checks
7752	 vmalloc: -g: free(0) to check and disable malloc/free checks
7753	 vmalloc: -g: free(1) to check and enable malloc/free checks
775404-02-11 Makefile: add :P=A: to conf and lcgen exec for cross-compile
7755	 regex: use MBSIZE() instead of mbsize() to grab 1 char on err
7756	 vmalloc/vmbest.c: updated to do more comprehensive DEBUG tests
775704-02-04 sfio/sfraise.c: add sfraise(0,a,b) to iterate over all streams
775804-02-01 vmalloc/vmbest.c: _BLD_DEBUG free(0) checks the arena
775904-01-31 features/vmalloc: fix typo that missed _mmap_zero
776004-01-23 string/strerror.c: handle real strerror() return value overwrite
776104-01-11 path/pathpath.c: fix size vs. sizeof(buf) typo
776203-12-22 misc/magic.tab: dos EXE tweaks
776303-12-05 vmalloc: sync with kpv, adding exceptf announcements
776403-12-04 port/astlicense.c: fix expand() loop sentinel bug
776503-12-02 include/ast.h: mbchar() advances by 1 on mbtowc() error
7766	 misc/fts.c: increase MINNAME to 32
776703-11-21 vmalloc/vmbest.c: export VMCHECK=1 to enable $(CC.DEBUG) vmcheck()
7768         vmalloc/vmbest.c: export VMCHECK=2 to disable KPVCOMPACT
7769	 misc/magic.c: add { cobol copybook pl1 } and suffix preference
777003-11-12 features/stdio: drop cuserid,getopt for SUSV3
777103-11-11 vmalloc/*: merge kpv update -- this should stomp the compaction bug
777203-10-23 comp/iconv.c: fix sfreserve lock fallback
777303-10-20 sfio/_sfopen.c: add to allow user sfopen() intercept
777403-10-17 regnexec.c: fix exec time REG_LEFT, \x.... => wctomb()
777503-10-12 string/strtoi.h: fix strton '.' overconsumption
777603-10-12 comp/iconv.c: identity is always (iconv_t)0
777703-10-09 string/fmtesc.c: fix FMT_SHELL to check for all shell magic chars
777803-10-01 port/astlicense.c: unknown authors copied verbatim (instead of ignored)
777903-09-30 string/chresc.c: handle \u..., \x... consumes all trailing hex digits
7780	 string/stresc.c: \u... and \x... > UCHAR_MAX => wctomb()
778103-09-29 fnv.h: add
778203-09-23 modedata.c: table is for external modes, so no arch specific hacks
7783	 optget.c: fix option prefix match translation bug
7784	 optget.c: add `<length> <name>=<value>\n' to optstr()
7785	 features/lib: add memcmp() test for sgi optimzation bug
778603-09-22 regex.h,regcomp.c: add regncomp()
7787	 regclass.c: fix for loop dangling ; in regaddclass()
778803-09-20 sftable.c,sfvprintf.c: fix SFFMT_CHAR handling to match extf api
778903-09-19 sfmode.c: update release to kpv's
779003-09-17 regcomp.c: add pedantic backref error checks
779103-09-16 regnexec.c: exec time REG_LEFT => don't advance past initial position
7792	 regclass.c: add regaddclass() for user defined [:class:]
7793	 regexec.h: REG_VERSION_N2X, add redisc_t {re_map} ccode map
7794	 regstat.c: add regstat_t
779503-09-11 optget.c: --n:=v sets opt_info.assign=':', opt_info.number enabled
779603-09-09 disc/sfkeyprintf.c: *pn on lookup is arg separator; lookup "" arg too
779703-09-05 optget.c: [f:l*?] preserves user long name past '*' in opt_info.name[]
779803-09-03 sfstr.h: add sfstrpend() for #pending bytes in read buffer
779903-08-25 regex: add REG_FIRST, optimize bm
7800	 features/lib: _AST_no_spawnveg==1 falls back to fork/exec
780103-08-22 features/stdio,stdio/asprintf.c,stdio/vasprintf.c: add
780203-08-21 path/pathnative.c,path/pathposix.c: interix updates
7803	 features/botched: add cygwin _stat => _stat64
780403-08-15 include/ast.h: map out bsd strmode()
7805	 features/common: add interix _ast_intmax_t workarounds
7806	 misc/fs3d.c: 3d mount test now uses "" instead of NiL (or cygwin dumps)
780703-08-11 string/fmtesc.c: fix optional quoting checks
7808	 tm/tmdate.c: fix > 1 year of seconds arithmetic
7809	 tm/tmfix.c: fix leap year adjustments
781003-08-01 features/lib: beef up sock_peek test for interix
781103-07-29 features/float: add -lm to frexp... test
7812	 Makefile: fix -lm astmath test sense
781303-07-26 features/mem.c: favor _mem_sbrk over _mem_mmap_*
781403-07-22 vmalloc/vmbest.c: fall back to sbrk() if mmap() fails
7815	 features/mem.c: _mem_sbrk means sbrk() and brk() work
781603-07-17 regex/regcomp.c: fix bug that treated KRE X{n,m} like {n,m}(X)
7817	 misc/magic.c: check MAGIC_VERBOSE for all load() messages
781803-07-14 misc/optget.c: handle [...]{[...]\f...\f...}
781903-06-21 misc/sigcrit.c: block SIGCHLD if _lib_sigprocmask || _lib_sigsetmask
7820	 comp/spawnveg.c,sfio/sfmode.c: use sigcritical() SIG_REG_* macros
7821	 comp/spawnveg.c: drop ENOEXEC logic
7822	 vmalloc/*: snarf kpv KPVCOMPACT() fix
7823	 vmalloc/vmbest.c: export VMCHECK=2 to disable KPVCOMPACT (just in case)
7824	 string/strdup.c: drop __strdup() etc. intercepts -- malloc gets it
7825	 features/mem: define _mem_method and _mem_* possible values
7826	 vmalloc/malloc.c: _AST_mem_method==_mem_* to force mem get method
7827	 sfio/sfputr.c: __ia64 memccpy is bogus -- how many tries do they get?
7828	 path/pathshell.c: verify abs path and access(path,X_OK) -- duh
7829	 vmalloc/vmhdr.h: add private _Vmessage() for non-sfio ASSERT()
7830	 port/astconf.c: fix bug that always returned the minmax value
783103-06-11 comp/*.c: reorder macro hding for mvs.390 and <ast_map.h>
7832	 features/vmalloc: add _lib_brk and _lib_sbrk verification
7833	 include/ast_std.h,etc.: add _map_malloc for malloc => _ast_malloc
7834	 comp/conf.sh: fix SI_* and *_SI_* macro redefs
7835	 ast.h: VMDEBUG or _BLD_DEBUG enable <vmalloc.h> and VMFL tracing
7836	 vmalloc/vmtrace.c: _PACKAGE_ast __FUNCTION__ is a string
7837	 vmalloc/vmtrace.c: set trace file fd FD_CLOEXEC
7838	 vmalloc/vmbest.c: set /dev/zero mmap fd FD_CLOEXEC
7839	 features/mmap: fix ancient read() vs. mmap() time arithmetic typo
7840	 vmalloc/malloc.c: _AST_std_malloc==1 to force standard malloc
784103-06-09 comp/omitted.c: add _imp__FUNCTION sybols for __CYGWIN__ static link
7842	 vmalloc/vmbest.c: handle systems with sbrk() but no brk()
784303-06-04 port/astconf.c: drop non-standard diagnostics
784403-06-03 comp/conf.sh: rework symbol collision logic
784503-05-30 conf.tab,conf.sh,astconf.c: add <sys/systeminfo.h> sysinfo() SI_*
784603-05-29 ccode.h: rework for extensibility, drop obsolete mematoe(), memetoa()
784703-05-28 regex/*: recode to use isw*() directly when needed, is*() otherwise
784803-05-27 features/vmalloc: fix _std_malloc test
784903-05-25 misc/optget.c: fix optstr() ???* internal options
785003-05-24 misc/optget.c: fix (ancient) argv null dereference
785103-05-23 comp/getcwd.c: don't intercept on _WINIX -- unreliable st_ino
785203-05-22 sfio/sfsprintf.c: n<0 => don't append '\0'
785303-05-18 misc/fts.c: re-stat FTS_DP to update nlink/times
7854	 misc/fts.c: add FTSENT.stack to eliminate getlist() recursion
7855	 regex/ucs_names.h: use "..." catenation to placate some cc's
785603-05-11 string/strtoi.h: handle "-" "+" "0x" "11#"
785703-05-09 vmalloc/vmbest.c: large memory allocation tweaks
785803-05-06 misc/optget.c: fix getopt_long() prefix==1 bug that missed short flags
785903-04-27 comp/system.c: handle <ast_map.h>
786003-04-24 vmalloc/vmmopen.c: drop dup <unistd.h>
786103-04-21 tm/tmdate.c: fix next hour/min logic
786203-04-15 vmalloc/malloc.c: intercept __malloc() along with __libc_malloc()
7863	 string/strdup.c: intercept __strdup() along with __libc_strdup()
7864	 features/mmap: consolidate from features/(lib|sfio|vmalloc)
7865	 add _NO_MMAP==1 to disable all mmap()/munmap() calls
7866	 path/pathposix.c: add
786703-04-14 comp/setlocale.c: fix debug_mbtowc() return value for *s==0 || n < 1
7868	 comp/iconv.c: fix error return errno values
786903-04-11 misc/stk.c: fix stkgrow() realloc bug
787003-04-05 string/tok.c: support readonly single token input strings
7871	 disc/sfdcdio.c: fix F_DIOINFO and FDIRECT #ifdef's
7872	 include/ast_std.h: allow _LARGEFILE64_SOURCE on __hppa
7873	 features/common: fix `tst _foo_' => `tst foo_' typo
7874	 features/float: fix `tst _foo_' => `tst foo_' typo
7875	 features/float: add FLTMAX_(UINTMAX_MAX,INTMAX_MAX,INTMAX_MIN)
7876	 comp/omitted.c: fix pathconf => _pathconf => _ast_pathconf loop
787703-04-03 features/float: add _ast_no_um2fm: no usinged intmax => floatmax cast
7878	 vmalloc/vmbest.c: add getenv("VMCHECK") to initialize Vmcheck
787903-03-28 include/ast_dir.h: add D_TYPE; { D_FILENO D_TYPE } must be #ifdef'd
7880	 misc/fts.c|getcwd.c|glob.c,preroot/getpreroot.c: add D_FILENO #ifdef's
7881	 Makefile: make sure _BLD_ast is defined for all compiles
788203-03-27 ast_vfork.h: generate from features/vfork to pick up headers/pragmas
788303-03-25 comp/omitted.c: drop free() of live environ
7884	 path/pathshell.c: allow trailing .exe -- pox on that
7885	 string/strtoi.h: fix bug leading 3 digits before thousands sep bug
7886	 string/(fmt|str)[gu]id.c: we know root when we see it
788703-03-24 misc/optget.c: handle : and ? in := default value
788803-03-21 ast_std.h: drop all spawn*() but spawnveg()
7889	 obsolete/spawn.c: add for dropped spawn*()
7890	 features/lib: _use_spawnveg if spawnveg() is a win over fork()/exec()
7891	 features/lib: drop NutForkExecve() and _map_spawnve
7892	 features/lib: fix memccpy test to clean up /tmp droppings
7893	 comp/spawnveg.c: call posix_spawn() if implemented
7894	 comp/omitted.c: add spawnve() intercept
7895	 comp/getoptl.c: set getopt_long() optind even if no options
7896	 tm/tmfmt.c: add %Q<delim>recent<delim>distant<delim>
7897	 misc/optget.c: fix trailing '*' for option and option args
7898	 sfio/sfmode.c: getenv("_AST_SFIO_OPTIONS") [,]SF_LINE[,] for fd {0,1,2}
7899	 vmalloc/*: kpv sync for uwin build independent of libast
790003-03-18 port/astconf.c: switch to dynamic string values (saves 7K data/bss)
7901	 string/strmatch.c: switch to dynamic regex cache (saves 3K data/bss)
7902	 regex/regcoll.c,ucs_names.h: initialize rw tables from smaller ro data
7903	 features/lib: add vfork test for passing SIG_IGN across exec
7904	 features/lib: add spawn test for passing SIG_IGN across spawn
790503-03-17 comp/omitted.c: unlink() renames to .deleted dir in case file open
7906	 sfio/sfpopen.c: handle mode "" for spawn with no pipe
7907	 features/float,comp/frexp.c,comp/frexpl.c: add pow2() table alternative
790803-03-12 features/lib: fix linux.ia64 memccpy() tests -- now its their turn
7909	 features/vmalloc: fix /dev/zero test
7910	 features/align: _ast_intmax_t and _ast_fltmax_t join the union
7911	 misc/stk.c: fix struct frame size to align data
7912	 disc/sfdcdos.c: change sfslen() => sfvalue(f)
791303-03-10 misc/optget.c: handle [f\f:x:lll\f?ddd]
791403-03-07 port/astconf.c: uninitialized CONFORMANCE + POSIXLY_CORRECT => standard
791503-03-05 comp/omitted.c: make sure at least /bin is in PATH to find cygwin dlls
791603-03-02 path/pathshell.c: write access to /bin is effectively root
791703-02-28 features/float: add (FLT|DBL|LDBL)_U?(LONG|LONGLONG|INTMAX)_(MIN|MAX)
791803-02-25 features/lib: change vfork() test to use _exit() instead of exit()
791903-02-23 include/error.h: update ERROR_VERSION for error_info.number space
792003-02-22 comp/conf.sh: wrap ksh check in eval to avoid premature exit
792103-02-21 misc/fts.c: verify chdir(..) to avoid malicious dir rename()
792203-02-19 string/strtoip4.c: isspace() instead of ' '||'\t'
792303-02-17 regex/regcomp.c: fix stats.l REX_REP logic that botched REX_BM
792403-02-13 string/base64.c: handle catenated encodings
792503-02-11 features/libpath.sh: change LIBPATH to <dir>[:<env>[:<pat>]][,...]
792603-02-07 path/pathfind.c: allow "/dev/null" to be PATH_REGULAR
792703-02-06 include/ast.h,fmtquote.c: add FMT_ALWAYS|FMT_ESCAPED|FMT_SHELL|FMT_WIDE
792803-02-05 tm/tmdate.c,tm/tmword.c,string/strelapsed.c: '_' treated like ' '
792903-02-01 string/strelapsed.c: handle ps style [day-][hour:]min:sec
793003-01-31 port/astlicense.c: fix author=* match
793103-01-30 include/tm.h: add tmisleapyear() macro
793203-01-29 comp/getopt.h,comp/getoptl.c: add gnu getopt_long(), getopt_long_only()
7933	 include/ast_getopt.h: for non-gnu part of comp/getopt.h
7934	 include/ast_std.h: include <ast_getopt.h> instead of <getopt.h>
793503-01-28 ast.h,string/base64.c: add base64encode() and base64decode()
7936	 path/pathfind.c: verify S_ISREG()
793703-01-24 path/pathexists.c: fix abs dir bug and deal with case ignorance
793803-01-23 path/pathpath.c: honor PATH_ABSOLUTE for the easy case too
793903-01-22 path/pathprobe.c: fix search to find both the probe script and command
794003-01-17 misc/magic.tab: application/zip => appplication/(gzip|pzip|zip)
794103-01-14 misc/optget.c: change href="" to href="."
794203-01-10 include/ast_std.h: strtold() import hackery for static __CYGWIN__
794303-01-03 include/regex.h,regex/regcomp.h: add REG_SHELL_GROUP
7944	 include/ast.h,string/strmatch.c: add STR_GROUP for REG_SHELL_GROUP
794502-12-15 include/error.h: errorcontext => Error_context_s (compatible til 2004)
794602-12-06 misc/sigdata.c: add NoF(sigdadata) -- why nmake was uninterruptable!
794702-12-03 comp/omitted.c,features/omitted: handle cygwin alarm() return botch
794802-11-27 misc/swapop.c: op=3,size=4 => op=7
7949	 string/strlcat.c,strlcpy.c: fix uwin decl clash
795002-11-26 sfio/sfvprintf.c: fix sfsprintf() '\0' termination bug
795102-11-22 misc/glob.c: move static struniq() to libast extern
7952	 string/fmtversion.c,include/ast.h: add fmtversion
795302-11-18 string/strncopy.c: add
7954	 misc/magic.tab: list size for magicid.h magic
795502-11-14 sfio/sfvprintf.c: add %#c for C escapes
7956	 include/error.h: add ERROR_NOTIFY context flag for builtin commands
795702-11-11 string/strtoi.h: add S2I_size for strnto*() size_t 2nd arg
7958	 sfio/sfstrtof.h: add S2I_size for strnto*() size_t 2nd arg
7959	 comp/putenv.c: add setenv() and unsetenv() wrappers for setenviron()
796002-10-31 path/pathfind.c: add dir of including file to the pathinclude() list
7961	 misc/optesc.c: add
796202-10-30 string/strtoip4.c: set next char pointer even on error
796302-10-29 comp/resolvepath.c: add (size_t version of realpath())
7964	 misc/mime.c: fix mimehead() to ignore null content values
796502-10-28 misc/glob.c: add GLOB_STARSTAR for /**/ and GLOB_NOTDIR optimization
796602-10-27 string/struniq.c: add
796702-10-23 features/common: fix off-by-one loop check
796802-10-18 include/ast_std.h: avoid off_t,ftruncate,lseek,truncate redefinitions
796902-10-17 misc/mime.c: handle type/* match, fix bogus header parse
797002-10-04 sfio/sfstrtof.h: S2F_static <0:export =0:private >0:static
797102-10-02 features/common: don't define _WIN32; define _WINIX => unix on windows
7972	 features/tty: finally stomp the bsd _POSIX_VDISABLE redefinition
7973	 misc/fastfind.c: add more specific findwrite() error messages
7974	 comp/omitted.c: fix cygwin utime() to update st_ctime
7975	 comp/strtol.c,strtoul.c: __CYGWIN__ static link workaround XXX
7976	 string/fmtls.c,fmttime.c: tmform() => tmfmt()
797702-09-22 port/astconf.c: return values in fmtbuf() buffer instead of stack
7978	 port/mnt.c: don't set MNT_REMOTE for win32 ?:\* paths
7979	 sfio/sfvscanf.c: _sfdscan() is library global (not static)
798002-09-21 path/pathkey.c: add tool arg for mamake compatible hash
7981	 features/fcntl.c: handle iffe _hdr_lcl_* => _lcl_* change
798202-09-15 comp/conf.sh: fix enum vs. macro test
7983	 cdt: kpv sync
798402-09-11 ast.h,features/common: move _WIN32 macro init to features/common
7985	 features/common: enable __EXTERN__ and __DEFINE__ for _WIN32&!_UWIN
7986	 features/float: add -lm to _ast_*_nan_init tests
7987	 vmalloc: kpv sync with vmresizef => vmgetmem
7988	 features/iconv: must have both <iconv.h> and iconv_open()!
7989	 features/vmalloc: alloca test must compile *and* link
7990	 sfio/sfvscanf.c,sfstrtof.h: add flag arg to char get, fix NaN loop
799102-09-10 vmalloc/vmhdr.h: enable getpagesize() and sbrk() prototypes
7992	 features/fcntl.c: enable mmap64() prototype
7993	 include/ast_windows.h: windows.h wrapper with ast namespace workarounds
799402-09-07 misc/mime.c: fix quoted value parse bug that ate the whole line
799502-09-05 features/vmalloc: add free() to _std_malloc test
7996	 include/ast.h: NoF(x) now defines _DATA_x for !_BLD_DLL too
7997	 tm/tmlocale.c: { C POSIX en } == unix dadgummit
799802-08-29 path/pathfind.c: initialize Dir_t.next=0
799902-08-28 uwin/rint.c: update
8000	 features/libpath.sh: "bin" is now the default value
800102-08-22 vmtrace.h: add for debugging
800202-08-20 misc/magic.c: convert to use <cdt.h>
8003	 vmalloc/vmresizef.c: add for generic discipline resizef default
8004	 string/strelapsed.c: allow long time component names
800502-08-19 misc/optget.c: add `.fp 5 CW' to --nroff output
8006	 string/(fmtfs|fmtuid|fmtgid|strgid|struid).c: convert to use <cdt.h>
8007	 include/dt.h,cdt/dtnew.c: add for dtopen() in specific vm region
800802-08-13 comp/omitted.c: fix bzero logic for e.g. unixware.i386
8009	 include/ast.h: add fmtbase->fmtbasell; swap in 2003-09-01
801002-08-12 regex/regnexec.c: fix REG_MINIMAL REX_DOT mb bug
801102-08-08 features/iconv: <ast_common.h> instead of <sys/types.h> <ast_common.h>
801202-08-07 regex/regcomp.c: recognize anchors in BRE subexpressions
801302-08-06 comp/iconv.c: handle win32 cpNNNN == windows-NNNN aliases
801402-08-05 cdt/*: sync with kpv src
801502-08-02 features/iconv: include sys/types.h for ast_types.h
801602-08-01 misc/magic.c: magic file "." names the default
8017	 misc/magic.c: handle addr type (from irix string)
8018	 features/lib: move malloc tests to features/vmalloc
8019	 features/vmalloc: snarf tests from features/lib
8020	 vmalloc/*: sync with kpv src
8021	 comp/libc.c: dropped -- __libc_* intercepts moved to vmalloc/malloc.c
802202-07-30 features/lib: handle __libc_malloc() in _std_malloc test
8023	 vmalloc/malloc.c: add gnu pvalloc()
8024	 features/vmalloc: fix alloca check
802502-07-29 features/limits.c: handle netbsd guards
802602-07-27 sfio/sfpoll.c: handle rw pipes
802702-07-25 features/iconv: include ast_types.h for size_t in ast_iconv.h
802802-07-18 apply LARGEFILE64 header prototype clash patches
8029	 misc/optget.c: __EXTERN__ _opt_info_ instead of opt_info
803002-07-17 ast_std.h: memzero() now defaults to memset() instead of bzero()
803102-07-16 ast_std.h: add ast.env_serial
8032	 misc/setenviron.c: increment ast.env_serial
8033	 include/tm.h: tmset() now calls tminit() directly
8034	 tm/tminit.c: check ast.env_serial for env change
8035	 tm/tmfix.c: speed up for large values of tm_mday
803602-07-15 comp/fnmatch.c: fix memory leak caused by missing regfree()
8037	 comp/strstr.c: fix broken interpretation and implementation
8038	 comp/iconv.c: intercept (but no-op) null to and from buffer pointers
803902-06-27 ast_std.h: map _sysconf => _ast_sysconf for sun
804002-06-26 cdt,sfio,vmalloc: kpv sync -- is this ever easy?
804102-06-24 sfio: kpv sync, vfwscanf(),fputw() fix (wcslen(x)*sizeof(wchar_t)!!)
8042	 misc/fts.c: fix symlink chdir() optimzation bug
804302-06-11 sfio/sfwrite.c: string to file fix
8044	 Makefile: __OBSOLETE__==20020101
804502-06-01 regex/regcomp.c: REG_DELIMITED now consumes the delimiter
804602-05-31 regex/reglib.h,regcomp.c,regnexec.c: null subexpression fixes
804702-05-24 misc/fts.c: disable dir link counts in 3d
8048	 misc/magic.c: fix "*(mkfile)" sh pattern to "*@(mkfile)"
804902-05-20 regex.h,regex/regsubcomp.c,regex/regsubexec.c: add
8050	 regex/regsub.c: deprecate
805102-05-16 tm/tmfix.c: fix '60+n min/sec ago' bug for n min/sec after the hour
805202-05-14 regex/regsub.c: fix (^|x) null match early termination bug
805302-05-13 dir/dirlib.h: drop errant extern==__EXPORT__
8054	 features/uwin: add uwin lib tests
8055	 uwin/*.c: check features/uwin for stubs
8056	 features/float: add nan representation generation
8057	 sfio/sftable.h: used _ast_*_nan_init for huge values
805802-05-09 misc/fts.c: fix virtual top to force ``child'' stat()
8059	 features/common: define va_copy() only if not in <stdarg.h>
806002-05-01 string/strtoip4.c: cisco inverted quad mask must have 4 parts
806102-04-30 misc/magic.tab: fix pzip version check
806202-04-19 string/strtoip4.c: handle cisco inverted quad mask n.n.n.n/i.i.i.i
806302-04-18 misc/fts.c: add chdir() verification stat() optimizations
8064	 path/pathkey.c: check PROBE_ATTRIBUTES for list of vars
806502-04-12 port/astlicense.c: type=open tweak, fix author list spacing
806602-04-11 regex/regcomp.c: check for pattern number overflow
806702-04-05 tm/tmfmt.c: add %u
806802-04-04 sfkeyprintf.c: fix %c numeric value
8069	 path/pathpath.c: check plain path first -- duh
807002-04-03 misc/fts.c: fix (FTS_PHYSICAL|FTS_NOSTAT) stat optimizations
8071	 ftwalk.c: only clear FTW_DELAY if FTW_CHILDREN
8072	 ftwalk.h: add FTW_NSOK for FTW_DELAY
807302-03-29 ast.h: drop strerror() prototype -- already in <ast_std.h>
8074	 features/stdio: check for _SFIO_H redundant _Sfstd* declarations
807502-03-26 misc/glob.c: fix GLOB_LIST gl_flags values
807602-03-24 port/mnt.c: update bsd fstype name and mount option logic
807702-03-23 Makefile: add ast_wchar.h to the .check.hdr list (for mamake)
807802-03-17 features/stdio: hack around g++ 3.* clashes
8079	 Makefile: add ast_nl_types.h to the .check.hdr list (for mamake)
8080	 string/strtoip4.c: fix validity check bug that only checked last part
808102-03-14 misc/optget.c: fix --keys to not expand inline \f...\f
808202-03-12 port/astlicense.c: add type=free
8083	 path/pathaccess.c: sibling ".." search ignores relative dirs
8084	 sfio/sfvscanf.c: sfstrtof get() must return 0 on eof
808502-03-11 path/pathexists.c: check path by pairs checking {ENOTDIR,ENOENT}
808602-02-14 features/float: copy local min/max macros to avoid printf roundoff
8087	 features/wchar: include <ast_common.h>, not <ast_std.h>
8088	 misc/magic.c: match[]=>matches[] to fix K&R match() macro conflict
8089	 include/vmalloc.h: include <stdlib.h> for !_PACKAGE_ast
8090	 uwin/mini.sym: add sprintf (now required by features/common)
8091	 regex/regnexec.c: truncate wide chars for <ctype.h> functions
8092	 Makefile: fix MAM ast_common.h sequencing bug by making it first
8093	 cdt/dthash.c: fix DT_DELETE memory leak (DT_DETACH typo)
8094	 cdt/dthash.c: fix DT_DELETE double free (dt->data->here typo)
8095	 regex/regcomp.c: fix recomb() to reject RE with backref
8096	 features/iffeio: explicitly generate stdio.lcl
8097	 stdio: add {fcloseall,f(get|put)s_unlocked,fmemopen,getdelim,getline}
8098	 tmmake,tmtime: allow negative time_t if native localtime/gmtime do
8099	 tmdate: allow years before 1969
8100	 fmtfmt: add
8101	 include/ast.h: add { PATH_TOUCH_CREATE PATH_TOUCH_VERBATIM }
8102	 Makefile: add std/*.h for std header iffe overrides
8103	 comp/iconv.c: fix non-C win32 sfreserve() loop
810402-02-11 features/common: separate long long / long double tests
8105	 features/common: verify printf handles long long / long double
810602-02-02 include/ast_std.h,sfio/sfhdr.h: drop _hdr_locale tests -- always on now
8107	 include/ast_std.h: trust _UWIN <unistd.h>
810802-01-31 port/mnt.c: add aix options field
810902-01-30 comp/strstr.c: add for ancient s5
8110	 stdio/_flsbuf.c: only on systems that transfer to native (e.g., uwin)
8111	 string/strtoi.h: cat min/max error return values
811202-01-28 features/tty: add cf[gs]et[io]speed macros for <termio.h>
8113	 comp/rename.c: punt to (ancient) /usr/lib/mv_dir on EISDIR
811402-01-24 sigcrit.c: fix SIGCLD!=SIGCHLD interrupt loop
8115	 sfvprintf.c: convert fast io macros to functions for uts.390 cc
8116	 string/strtoi.h: drop #pragma prototyped for standalone sfio
8117	 sfdcsubstr.c: rename from sfdcsubstream.c for 14 char fs
811802-01-22 execlp,execvp,execvpe,spawnlp,spawnvp,spawnvpe: fix __EXPORT__
8119	 spawnlp,spawnve,spawnvp,spawnvpe: handle ms mode arg -- barf
8120	 sftable.c: ifdef hacks for _WIN32&_ALPHA_ fp exception
8121	 _stdfun.c: add _UWIN&_ALPHA_ iob map
812202-01-18 sfio/sfstrtof.h: drop #pragma prototyped for standalone sfio
812302-01-17 features/hdr: don't include <stddef.h> after it doesn't check out!
812402-01-16 misc/magic.c: add version type for YYYYMMDD or [a.][b.]c.d
8125	 misc/magic.c: recode mime %s parse -- sensible and no buffer overflow
812602-01-15 misc/magic.tab,magicid.h: add generic binary magic number and header
812702-01-12 tm/tmlocale.c: override win32 default date for {C,POSIX,en} locales
8128	 comp/omitted.c: fix cygwin workaround logic bugs
812902-01-09 stdio/fseeko.c,ftello.c: add from UNIX98
813002-01-08 comp/conf.sh: use $cc instead of cc
813102-01-07 string/strlcat.c,string/strlcpy.c: add bsd api
813201-12-18 comp/conf.tab: fix LFS_CFLAGS default for sun _CS_LFS_CFLAGS botch
8133	 features/common: add hdr stdarg test
8134	 tm/tmdate.c: handle YYYY/MM/DD
813501-12-10 misc/magic.tab: add generic 0x00010203 binary magic
813601-12-03 path/pathprobe.c: return HOME relative path if readonly/non-suid fs
813701-11-30 misc/optget.c: add simple cache for repeat offenders (like ksh read)
8138	 sfio/sfhdr.h: preserve errno across SFMMSEQON-SFMMSEQOFF
813901-11-29 magic.tab: fix GIF version number listing
814001-11-28 string/fmtbase.c: p!=0 => base always included in output
814101-11-26 misc/fts.c: empty path is an error
814201-11-14 misc/optget.c: fix --?+SECTION queries to include paragraphs
814301-11-20 regex/regnexec.c: fix REG_MINIMAL character class match bug
814401-11-19 features/lib: retain _lib_confstr for all solaris releases
814501-11-16 comp/setlocale.c: fix !_lib_setlocale typo
814601-10-31 regex/ucs_names.h: add string catenation to keep line length low
8147	 misc/fastfind.c: handle gnu slocate db read
8148	 misc/optget.c: add --?+SECTION queries
8149	 comp/fnmatch.h: add FNM_NOSYS
815001-10-30 tm/tmdate.c: fix cron specs when both wday and mday are specified
815101-10-20 misc/glob.c: fix bug that called \ trim() twice on same path
8152	 misc/glob.c: fix \ trim() bug that restored / to wrong position
8153	 string/fmtre.c: fix { ^ . $ } translations
8154	 misc/optget.c: use original string if translation fails -- duh
8155	 sfio/sfhdr.h: assume <errno.h> assigns proper atttibutes to errno
8156	 comp/regcmp.c: __ia64 workaround fixed by proper CC.DLL probe
8157	 comp/getdate.c: __ia64 workaround fixed by proper CC.DLL probe
8158	 features/lib: add lib getdate
815901-10-18 features/lib: check for strtod static link collision
8160	 features/float: add another signed cast for old bsd cc
8161	 features/wchar: add <stdlib.h> <stdio.h> before <wchar.h> for old bsd
816201-10-17 sfio/sfcvt.c: limit max precision to { FLT_DIG DBL_DIG LDBL_DIG }
8163	 sfio/sfcvt.c: fix %[aA] format to always have leading 0[xX]1.
8164	 sfio/sfvprintf.c: handle %C %lc %S %ls for wchar_t args
8165	 sfio/sfvscanf.c: handle %C %lc %S %ls for wchar_t args
8166	 string/fmtmode.c: fix bug that omitted trailing '\0'
816701-10-12 misc/optget.c: . => \&. for --??nroff
8168	 comp/wc.c: fix mbstate_t initialization typo
8169	 features/float: fix max integer / float loop termiation
8170	 features/float: fix LDBL_UINTMAX_MAX typo that did DBL_UINTMAX_MAX
817101-10-11 include/sfio.h: fix _Sfstd* import/export
8172	 features/common: fix _UWIN __DYNAMIC__() definition
817301-10-06 features/fcntl.c: { O_BINARY O_TEXT } default to 0
8174	 features/omitted: add for comp/omitted.c
8175	 sfio/sfopen.c: O_BINARY default for _WIN32&&!_UWIN
817601-10-05 misc/glob.c: fix `\(x/*' GLOB_NOMATCH bug that returned `(x'
8177	 misc/optget.c: fix localization lookup that didn't drop doubled : ? ]
817801-10-04 comp/setlocale.c: handle sizeof(wchar_t)!=4 in debug locale
8179	 comp/conf.sh: handle sytems where _SC_* is both an enum and a macro
818001-09-25 astconf: add LIBPREFIX
818101-09-20 features/common: add __DYNAMIC__() for dll externs
818201-09-19 cdt: kpv update
8183	 mb*() macros: update for ksh conversion, extend debug locale
818401-09-16 tm/tmlocale.c: add compiled in defaults for C locale
8185	 misc/glob.c: add gl_nextdir callback for GLOB_COMPLETE
818601-08-14 clarify _WIN32 vs. _UWIN vs. __CYGWIN__
8187	 tminit: fix standard & daylight initialization
818801-09-11 pathnative.c: add for native fs representation
8189	 regex.h: fix regerror_t prototype
819001-09-04 regex/regnexec.c: fix REG_ICASE for multi-char collating elements
8191	 tm/tmlocale.c: fix old ascii LC_TIME load
8192	 locale*: add new LC_* categories
8193	 comp/omitted.c: add CYGWIN workarounds
8194	 features/lib: add CYGWIN workarounds
819501-08-11 features/common: some compilers have long long but no LL constants!
8196	 features/lib: add mmap64 implementation test (for linux.s390)
8197	 regex/regcomp.c: fix \ in [...] parse
8198	 setlocale: retain user locale spelling in setlocale() return value
8199	 features/limits.c: don't include ./limits.h -- duh
8200	 fmtesc: don't escape multibyte chars
8201	 tm/tmlocale.c: fix native C locale default
820201-08-08 features/float: some compilers (msdev) forget long long vs. double
820301-07-31 misc/optget.c: handle suboptions
820401-07-27 cdt.h: add DTDISC()
820501-07-17 iffeio.h: move to include for stdio bootstrap iffe workarounds
820601-06-25 regex: perl extensions added and tested
820701-06-21 misc/error: add ERROR_OPTIONS=prefix=string for message processing
820801-06-15 string/chresc: only 2 hex digits max for \xxx
8209	 regex/regsub: handle REG_SHELL ~(nnn) rhs backrefs
821001-06-11 regex: handle embedded \0 in pattern and subject string
8211	 regex: add (?nnn) for backrefs > 9
8212	 comp/fnmatch: add FNM_LEADING_DIR for gnu compatibility
8213	 features/float: _ast_flt_unsigned_max_t for bsd.i386 omission
821401-06-06 misc/optget.c: add o option for old ps,ar,tar with optional leading -
8215	 regex/regcomp.c: REG_LENIENT|REG_DELIMITED \<newline> => <newline>
8216	 regex/regcomp.c: REG_LENIENT \000 => NUL
821701-06-04 features/dirent: replace Makefile hack with iffe semi-hack
8218	 regex/regnexec.c: negation must also check REG_SHELL_DOT
821901-06-03 sprintf.c: change buf size from SF_BUFSIZE to INT_MAX
822001-05-31 glob: fix gl_fignore to ignore leading . by default
8221	 features/lib: add botch_d_ino_dirent64 for linux botch
822201-05-25 port/lc.tab: add a few missing language_territory's
822301-05-23 string/chresc: \C[.collation-element.]
8224	 fmtmatch,fmtre: update for <regex.h> syntax extensions
822501-05-21 regex: add perl extensions, unicode names for collation elements
822601-05-11 string/chresc: \e == \E == escape, \cX == control X, \x{..} == \x..
822701-05-09 path/pathtemp.c: pathtemp(0,0,0,"/private",0) for mode S_IRUSR|S_IWUSR
8228	 port/touch.c: handle utime(2) EPERM to fix bug that truncated
8229	 regex: change REG_MINIMAL to avoid negation -- much faster now
823001-05-08 *.h: add some off_t macro guards for suse linux
823101-05-03 regcomp.c: optimize ((x)!)* to ((x)!)
8232	 wchar: add <wchar.h> and stdio wchar routines
823301-05-02 feaures/wchar: add <wchar.h> intercept, add stdio wchar functions
823401-05-01 string/strtoi.h: signed strtoi accepts qualified unsigned constants
823501-04-30 comp/setlocale.c: fix code that relied on 2 simultaneous getenv()'s
8236	 tm/tmlocale.c: check for UTF-8 encoded LC_TIME files
8237	 misc/magic.tab: add utf-8 and utf-16 U+FEFF magic
823801-04-26 features/common: some cc's have _ast_int8_t but not LL constants
823901-04-24 features/lib: add _std_strtod for mac os X
824001-04-23 ccode: add CC_sub for ms embedded EOF char on ebcdic -- no joke
824101-04-20 iconv: handle ebcdic<=>utf
8242	 mc.h,mc.c: add mcindex()
8243	 ast_std.h: add AST_MESSAGE_SET
824401-04-18 features/libpath.sh: fix mvs probe
8245	 *: sundry mvs fixes
8246	 glob: fix GLOB_NOCHECK to avoid stat() and properly trim patterns
824701-04-01 strtod,strtold: add
8248	 strtol,strtoul,strtoll,strtoull,strton,strtonl: handle locale & ERANGE
8249	 sfvprintf,sfvscanf: handle locale decimal_point,thousands_sep
8250	 sfvprintf,sfvscanf: handle %a,%A
8251	 setlocale: add LC_NUMERIC decimal_point,thousands_sep init
8252	 ast_std.h: __OPTIMIZE_SIZE__==1 to disable non-std __GNUC__ inlines
8253	 pathexists: path cache to cut down pathpath() access(2) calls
8254	 features/stdio: __FILE_TAG == _sfio_s for solaris
825501-03-23 iconv: fix iconv_move buffer boundary bug that stopped at 1 block
825601-03-19 glob: add GLOB_AUGMENTED
8257	 regex: REG_SHELL syntax error implies REG_LITERAL match
8258	 strto[ln][ll]: add overflow checks
825901-03-17 locale: reimplemented to provide canonical locale namespace
8260	 locale: add LC_ALL=local for local system user default
8261	 tm.h: TM_*_3 => TM_*_ABBREV
8262	 tmfmt: handle standard E and O format modifiers
8263	 tmlocale: consult nl_langinfo() if defined
8264	 fmtquote("\"",1) => shell quote
826501-03-08 regex: handle multibyte chars and collation classes
8266	 strmatch,strgrpmatch: now a wrapper on regex
8267	 ast_std.h: add mb*() multibyte and collation support
8268	 sfvscanf: handle locale decimal and thousand
8269	 proc*,system: handle ignored SIGCHLD
8270	 sfkeyprintf: handle %*C
827101-03-06 locale: add locale data cache for efficient multiple locale switching
8272	 optget: fix LC_MESSAGES!=C --man bug
827301-03-01 Makefile: HEADEROPT is not optional for win32.*
8274	 comp/syslog.h: comply with the de factos
8275	 optget(): fix \f...\f stack bug that referenced data after pop
827601-02-27 *locale*: a batch of fixes for native LC_MESSAGE&LC_TIME hooks
827701-02-22 pathprobe: reprobe test now checks probe.ini too
8278	 sfio_s.h: advertize public Sfio_t members with _ prefix
8279	 sfio.h,features/stdio: add <sfio_s.h> reference
8280	 sfhdr.h: map <sfio_s.h> _foo to foo
8281	 sfio.h: SF_APPEND=>SF_APPENDWR, SF_CLOSE=>SF_CLOSING
828201-02-14 comp/conf.sh: probe <unistd.h> for _(CS|PC|SC)_* getconf symbols
8283	 stdio/*: update for uwin stdio.dll binary compatibility
8284	 sfread: finally fixed premature pipe read EOF bug
8285	 fmtscale: format tenths for number > 0 && number < 10
828601-02-09 _sfmode(),_sftype(),_Sfextern: UWIN binary stdio compatibility exports
828701-02-08 sfgetm,sfputm,_sfputm: fix max clash with k&r max() macro
8288	 setlocale: undef valid for sun4 k&r valid() macro
828901-02-07 catopen.c: don't do native catopen for the debug locale
829001-02-06 sfraise.c: add SF_FINAL check to avoid (posibly) freed disciplines
829101-01-01 features/common: fix uwin __DEFINE__
8292	 sftable: initialize decimal and thousand
8293	 magic.tab: add corel wordperfect document
8294	 syslog: add LOG_LEVEL, add '\n' only if needed
8295	 include/tm.h: #undef daylight for _WIN32
8296	 sfio.h: add _SF_APPEND and _SF_CLOSE for native namespace incursion
8297	 ast_std.h: add AST_LC_multibyte for MB_CUR_MAX>1
8298	 setlocale: set AST_LC_multibyte
8299	 strmatch: check AST_LC_multibyte
8300	 features/limits.c: add _BITS_POSIX1_LIM_H guard for linux
8301	 features/libpath.sh: fix for aix LIBPATH
8302	 procopen,procclose: block SIGCHLD if PROC_FOREGROUND (e.g., system(3))
8303	 optget.c: add enumerated option argument values
8304	 optget.c: add <!--INTERNAL--> for private --html
8305	 optget.c: fix memory leak that hit shell builtins hard
8306	 sfio: drop sfread small chunk logic
830700-12-25 mnt.c: handle " and ' quoting for fstab
8308	 sftmp.c: let pathtemp() open the fd O_EXCL
830900-12-15 conf.sh: add -v for verbose trace
8310	 features/(limits|unistd).c: no FEATURE/types because of _POSIX_SOURCE
8311	 features/time: add default for CLOCKS_PER_SEC
8312	 features/lib: std_malloc now handles NeXT
831300-12-13 strton: recognize qualifier only if preceded by a digit
8314	 features/lib: change return in vfork() test to exit() for linux sparc
8315	 fmtquote: fix $'...' quote logic
831600-12-11 tmdate: fix cron format bug that mishandled months
831700-12-01 optget: handle $Id: ... $ in --?-version
8318	 features/fcntl.c: fix _STDPP_ mmap munmap
831900-11-27 magic: drop dup sfclose() in load()
8320	 optget: handle error_info.id==0
832100-11-22 features/stdio: add _FILEDEFED for sol9.sun4
8322	 strton,stronll: handle [u|U][l|L][ll|LL] qualifiers
832300-10-31 tmdate: add TM_DATESTYLE and mmddHHMM[cc]yy
8324	 astlicense.c: #include <hashkey.h> MAM workaround
8325	 astlicense.c: check for non-empty CONTRIBUTORS
832600-10-26 features/stdio: add _FILE and __FILE for gnu
8327	 misc/stk.c: fix stack pointer check off-by-one (dgk does it too!)
832800-10-23 syslog.h: sync with bsd values
832900-10-18 _STUB_* now functions instead of common symbols
8330	 all extern data declared with definition to eliminate common symbols
8331	 fastfind: add mac/bsd /var/db/locate.database
833200-10-17 features/lib: add apple osX (darwin.ppc) workarounds
833300-10-12 add: fmtbuf(), fmtclock(), fmtip4(), strtoip4()
8334	 fmt*() now use fmtbuf() for tmp fmt buf allocation
833500-10-05 regex: add REG_DISCIPLINE and regdisc_t for alloc/error disc
833600-09-29 features/lib: pipe_rw==0 for sgi: boot rw == bin incompatibility
833700-09-21 astlicense: handle \' and \" in license values
833800-09-20 sfwrite: fix write() error in sfprintf() loop
833900-08-11 hdr,vmhdr.h: check/hide { getpagesize sbrk } prototypes
8340	 astlicense: add noncommercial
834100-07-31 fflush: don't seek on pipes
8342	 sfresize: add
8343	 setlocale: fix bad newof() call
834400-06-01 strmatch: initialize match.current.beg[0] to avoid dump at line 670
8345	 sfio/stdio: a few more errno tweaks
8346	 astquery: sfstdin/sfstderr by default
834700-05-26 sfmode: errno=EBADF for invalid stream use
834800-05-22 rewind: fix for xopen test
834900-05-18 mcfind: returns absolute path
835000-05-16 optget: --keys must catch \f...\f too
8351	 translate,mc: errno cleanup
835200-05-09 magic: add netbsd binary magic
8353	 fts: PATH_RESOLVE!=logical => FTS_SEEDOTDIR
8354	 ftwflags: call fts_flags()
8355	 astconf: astconf(0,0,0) re-syncs with _AST_FEATURES
835600-05-08 optget: --usage & --keys for last -catalog group only
835700-05-02 iconv.c: add; use codes[] in ccmapid() and ccmapname(); "" for native
835800-05-01 pathtmp: copy env values (libshell or putenv may change)
835900-04-01 optget: drop bar from [-foo?bar] for --??keys
8360	 sfvscanf: add %X -- duh
8361	 features/common: fix va_listval() for power pc
8362	 findopen: fix FIND_GENERATE codes file search
8363	 magic: add ERROR_translate() and msgcat.key
8364	 tmlocale: add for LC_TIME locale info
8365	 tmlex: check tm_info.format and tm_data.format
8366	 tmfix: fix for tm_wday special case (via nl_langinfo on LC_TIME fields)
8367	 strftime: fix for nl_langinfo special case
8368	 ast_std.h: provide LC_* defauls if not defined
8369	 sfnew: check ${_AST_sfio_bufsize} -- don't tell kpv
8370	 catopen,nl_types.h: add intercept to mc* routines
8371	 magic.tab: add ast message catalog
8372	 strerror: add _ast_strerror intercept with ERROR_translate("errno")
8373	 fmtquote: escapes >0177 only if (flags&2)
837400-03-17 feof: stdio macro functions only for _UWIN
8375	 optget: proper ERROR_translate() calls
8376	 astgetconf: add for thread safe error message control
8377	 astlicense: fix type=special but with non-null notice
8378	 errorx: add for ERROR_translate() support
8379	 ERROR_translate: add locale id args for alternate dictionary
8380	 option.h: move _OPT_PRIVATE_ to pointer to avoid dll size mismatch
8381	 ftwalk: fix FTW_CHILDREN bug that hit top level non-dirs twice
8382	 translate.c: default error_info.translate
8383	 astconf: fix dup loop thrash that never returns, add _AST_VERSION
838400-03-10 ast_std.h: do _LARGEFILE_SOURCE initialization before std headers
8385	 fmtquote: handle $'...' quotes
838600-03-07 optget: fix numeric option support test
8387	 sfkeyprintf: add %q for '...' quoting with ansi escapes
838800-03-06 features/stdio: fix _sfflsbuf prototype (dingold@gte.net)
838900-02-14 pathtmp: fix pid cache bug that sometimes repeated after ~10 attempts
8390	 optget: "..." attribute quote
8391	 pathfind: eliminate *: prefix in lib, not type
8392	 proc: PROC_FOREGROUND for system(3) semantics (wait status return)
8393	 pathtmp: fix mktemp() logic
8394	 fts: fix FTS_NOSEEDOTDIR bug that botched ./* in top list
8395	 include/ast/prototyped.h includes include/prototyped.h
8396	 pathpath: fix strdup(0) bug
8397	 optget: --html <foo@bar> => ...mailto:foo@bar...
8398	 sscanf: fix sfsscanf => sfvsscanf typo
8399	 magic.tab: strengthen tar recognition
840000-02-08 conf.sh: fix ifdef for systems that think sysconf(FOO) is const
840100-02-04 glob: fix globlist_t.gl_flags
840200-02-02 vm*: add NoF() for data only files
840300-01-27 fts: fix top level .==.. statp bug (thanks to dr. ek)
840400-01-25 conf.tab: fix LFS*_*LAGS typo
840500-01-24 astlicense: handle type=verbose, license.notice, author=*
840600-01-11 pathprobe: generate info for first probe script on PATH - duh
8407	 ast.h: add NoF(x) for files that define no functions
8408	 tmpfile: fix implementation
8409	 global change for string ERROR_translate() dictionary names
8410	 optget: fix new way but no long names off by one
8411	 optget: handle [--dictionary?name]
841299-11-19 comp/conf.sh: `expr length XXX` is not universal
8413	 drop sfstdio; stdio via functions everywhere
8414	 drop Makefile conditionals (and follow our own advice for once)
8415	 sfio: new stream after atexit() bug fix
8416	 tm: Tm_zone_t.daylight=0 for standard time within zone
8417	 stdio: fopen => _ast_fopen: only way short of binary compatibility
8418	 Makefile: atmain.C falls back to atmain.c
8419	 optget: add --keys, s<section> option
8420	 stdio: _UWIN check for foreign stdio
842199-11-11 astlicense: add
842299-10-31 glob: fix regexec pattern; add PATH_ATTRIBUTES case check
8423	 pathpath: path==0 means malloc space
842499-10-22 tmfmt: %C=2-digit-century, %k=date(1), %y=2-digit-year-in-century
842599-10-18 fastfind: expanded default db lookup
842699-08-11 magic: fix off by one registry malloc
8427	 features/fs: add __RENAME checks for stat familiy (netbsd)
8428	 features/fs: major()/minor() fixes for s5
8429	 features/libpath.sh: netbsd fix -- ld.so not in std places
8430	 misc/fastfind: fix codes path generation bug
8431	 optget: beef up --?* description, fix <TR>...</TR> nesting
8432	 pathprobe: check for override (writable key file) first
8433	 features/time: int tmtimeofday(struct timeval*);
8434	 optget: fix opt_info.num, even if opt_info.arg!=0
8435	 fts: FTS_PHYSICAL => FTS_SEEDOTDIR, add FTS_CHOP
8436	 fastfind: init dir tab with logical and physical name
8437	 glob: add gnu GLOB_ALTDIRFUNC
843899-07-17 sfio: kpv update and sfhdr.h sync!
843999-06-24 stdio: fix fflush() to ignore sfseek(0) return value
844099-06-23 magic: '\r' is text not control to placate m$
844199-06-08 stdio: fix fseek,ftell semantics
8442	 uwin stdio: fflush() => _doflsh() to avoid __cplusplus clash
8443	 getopt: call liberror() to avoid error() conflict
8444	 tmfmt,tmscan: %N zone type (nation code), %z zone minutes west offset
8445	 tmfmt: - no pad _ space pad 0 leading 0 pad
844699-05-28 magic: fix 'x' == '*' for any number, magic.tab tweaks
8447	 features/lib: verify that stat64 really works
844899-05-21 tm*: add TM_WINDOW==69 for consistent century windowing guard year
844999-05-18 tmtime: add century leap year calc anticipating unsigned time_t
845099-05-17 sfkeyprintf: handle %o and %x!!
845199-05-09 pathprobe: $HOME/.probe if not suid and st_uid!=geteuid()
845299-04-28 magic,magic.tab: add registry()
845399-04-24 regcomp: fix ksh pattern +! parse
8454	 regfatalpat: add
8455	 optget: make : ? ] double escape consistent in all contexts
845699-04-01 features: drop iffeio.h and stdio.h when only printf() used
8457	 regex: fix stats() .l and .k count
8458	 fmtquote: added; most general fmtesc() form
845999-03-22 fmtesc.c,ast.h: add fmtnesq()
8460	 optget: --?x works for -x option flag
846199-03-17 features/limits.c: workaround solaris __EXTENSIONS__ _timespec bug
8462	 workaround limits.h circular prereq with ignore stdio.h
8463	 sfvprintf: %04e left-pad zero fixed
846499-03-03 fts: uncle already: add FTS_SEEDOTDIR to retain leading ./
8465	 regex: REG_MULTIPLE, BM for fixed string alternation
8466	 optget: embedded `-' optional in long options, prefix={0,1,2}
846799-02-14 fastfind: fix dir format bug that emitted wrong paths
8468	 astconf: fix redef off by one bug
846999-02-11 pathcanon(): don't cache astconf("PATH_LEADING_SLASHES", NiL, NiL)
847099-01-23 optget: move <old_opt.h> back into <option.h>, no open-close
8471	 optget: add "[index:long-name:description]" for --long-name
8472	 comp/gross: add weak __libc_attr for irix < 6.5 compatibility
8473	 features/limits.c: tweak the guards again
847499-01-11 fastfind: handle old format count byte order
8475	 magic.tab: fix elf to use real phdr offset
8476	 magic.c,magic.tab: fix | to act like switch/case
8477	 comp/fross.c,features/hack: for gross hacks
8478	 features/stdio: avoid sfio namespace pollution
847998-12-25 tmdate: yyyy.mm.dd
8480	 pathprobe: fix procrun() cmd path bug
8481	 fmtesq: add
8482	 features/common: win32.alpha va_list
8483	 magic: add pc alpha object
848498-11-11 strmatch: add STR_ICASE
8485	 pathprobe: punt to $HOME/.probe/<key+HOSTTYPE> if not S_ISUID
8486	 tmzone,tmdate: handle +-minutes, nn/MMM/yyyy
8487	 stropt: fix nested quote pop
8488	 tmfmt: add %K => %Y-%m-%d/%H:%M:%S
8489	 sfio/stdio: fix fseek() SF_PUBLIC omissions
8490	 fmtesc: catch '\\' (duh)
8491	 vmalloc: vmbest round bug fix
849298-11-01 fts.c: no pathcanon() if (fts_flags & FTS_PHYSICAL)
849398-10-01 features/stdio prototype fixes
8494	 optget: strton() instead of strtol() for #
849598-09-22 regcomp: add REG_DELIMITED and REG_ESCAPE delimited re support
849698-09-15 fix _LARGEFILE64_SOURCE stuff
8497	 ast_std.h: provide mmap() prototype
849898-08-11 fix sfpopen() to ignore SIGPIPE by ignoresig() for sfio but not stdio
8499	 fix procopen() to ignore SIGPIPE by ignoresig() for PROC_IGNORE
8500	 sfio sfpopen/popen update
8501	 magic.src: fix ustar entry
850298-07-17 fix ftwalk() short by one malloc()
8503	 add fts_notify()
850498-06-25 sfdcmore,sfdcprefix: add
850598-06-19 tokscan: add %f %g
850698-06-01 disc/sf*.c: memset(0) after disc malloc()
850798-05-11 strelapsed: y==Y
8508	 fts: pathcanon() top list
850998-04-01 error: error_info.time for all msgs, just after cmd id
8510	 error: no sfsync(sfstdin)
8511	 sfio: sfpool, Sffmt_t update
8512	 magic.tab: sgi core dumps -- why aren't these elf?
8513	 stropt: (v+n) for unknown option is option value if n!=0
8514	 procopen: fix setsid() for spawnveg() only
851598-03-19 malloc: add realloc foreign region check
8516	 sfdisc.h: rename to match kpv disciplines
8517	 fastfind: fix strcasecmp/strcmp directory prefix mixup
851898-03-17 features/fcntl.c,pathtmp,sftmp: add O_TEMPORARY
851998-03-01 pathcanon: fix PATH_LEADING_SLASHES to stat() both slashes
8520	 pathcanon: add PATH_VERIFIED
8521	 tmdate: add skip[] to expand separator char set
8522	 fastfind: FIND_OLD for old 7 bit db, FIND_TYPE for new 8 bit typed db
8523	 fastfind: default generates gnu LOCATE02 8 bit db
8524	 magic: handle %s in mime description
8525	 cdt: kpv update
8526	 sfio: kpv update
8527	 stdio: fpos64_t fseek64(), ftell64(), fgetpos64(), fsetpos64()
8528	 stdio: fseek() => sfseek(SF_PUBLIC) to avoid locking
8529	 fts: initialize parent stat[bp] from top level *after* statf done
8530	 astmath: add -lm requirement test
8531	 *: Astlong_t => _ast_*_t
8532	 regex: simplify regcollate() (from doug)
8533	 tmtime: preserve Tm_t*tm when calling tminit()
8534	 astconf: add readonly PATH_ATTRIBUTES=[cirw]
853598-02-14 fastfind: add FIND_ICASE to ignore case
8536	 tmdate,tmgoff: handle (+|-)hh[[:]mm[[:]ss]] absolute timezone
8537	 tmdate: `<n> <part>' now assumes `next <n> <part>' instead of `this'
8538	 tmfix: fix leap year bug that forgot to add 1900
8539	 proc: add PROC_ZOMBIE
854098-02-06 strmatch() char class range bug fix
8541	 regex char class range bug fix
854298-01-23 _WIN32: changed the #if logic again to accomodate _GNUC_
8543	 mnt: grab the mount options too
8544	 ast_std.h: hide getopt,getsubopt from stdlib.h
8545	 features/limits.c: add gnu guard macros to avoid limits.h recursion
8546	 features/mode.c: include "limits.h" instead of "FEATURE/limits.lcl"
854798-01-11 sfio.h: use Astlong_t, move Sfio_t Sfdisc_t typedef to top for stdio.h
8548	 sfhdr.h: #undef SETLOCAL for hpux
8549	 sfvprintf,sfvscanf: %I*x for sizeof(int_arg)
8550	 handle ftruncate64 and truncate64
8551	 dtopen.c: __hppa dll needs Dtset Dtlist Dttree refs here
855297-12-18 fmtnum: add
855397-12-11 magic: handle sgi 64 bit core dumps
855497-12-07 pathtmp: add override for TMPPATH,TMPDIR and cycling
855597-11-11 tm: handle 0 return from gmtime(),localtime() (dos negative time_t)
8556	 features/stdio: fix fflush() macro to do physical sync
855797-10-31 astconf PATH_RESOLVE is logical if 3d&&!std, metaphysical otherwise
8558	 magic: fix #! mime bug
8559	 tm: tmtime() now calls tmfix() and adjusts tm_isdst too=>mtime() works
856097-10-11 dllfind,dlfcn: move to separate -ldll so -last can link static, duh
8561	 Makefile,state.c: move forced header generation state.c => Makefile
8562	 sfio: update including SF_WHOLE
856397-10-01 sfdostext: add \r\n => \n sfio discipline
8564	 stropt: NiL table => p=name for all name=value
856597-08-11 pathtmp: check pid to note forks
8566	 procopen: FD_CLOEXEC rfd && wfd
8567	 fts: fts_close() after fts_children() with no fts_read() now works
856897-07-17 error: sfsync(sfstdin,sfstdout,sfstderr) instead of sfsync(NiL)
8569	 _sfcvinit: add sfio internal interface to base conversion tables
8570	 strton: use _Sfcv* base conversion tables instead of sfsscanf()
8571	 sfvscanf: use _Sfcv* base conversion tables
8572	 mime: x- permutations now matched if exact fails
8573	 mime: original- stripped from content-* headers
8574	 tmdate: add yyyy-jjj, yyyy-mm-dd
8575	 dllfind: add
8576	 ccmapid: fix buf copy loop limit
8577	 ccmapname,ccmapcpy: add
8578	 sfstrtmp: add
857997-05-09 streval: fix up casts for pseudo-ansi cc
8580	 features/types: use _ast_int_8 vars to verify support
8581	 string/modedata: check for mvs.390 S_IFMT
8582	 include/ast(_std).h: add #define __FILE_typedef
8583	 magic: add ccode text check
8584	 include/ftwalk.h: FTW_PATH=>FTS_NOCHDIR to avoid FTS_AGAIN (duh)
8585	 fts: clear status for FTS_AGAIN (fixes rm -r bug)
8586	 mnt: add mvs openedition w_getmntent()
8587	 sfhdr: _hdr_float && <float.h> for correct MAXDOUBLE
8588	 vmalloc/vmbest: if _std_malloc then use malloc()/free() not sbrk()
8589	 remove: check _std_remove
8590	 procopen: handle pio[{0,1}]=={0,1}
8591	 setenviron,features/uinstd: test for mvs.390 dll environ hacks
859296-12-25 <sfio_p.h> -> <ast_common.h>
8593	 __EXTERN__(type,object)
8594	 __DEFINE__(type,object,value)
8595	 magic: check strings in !CC_NATIVE code set too
8596	 system: cmd==0 means check for shell access (xopen)
8597	 sfhdr.h: fix sfrsrv prototype
8598	 add __libc_malloc etc for gnu/linux
8599	 astconf(NiL,path,name) == astconf(name,path,NiL) + no liberror
8600	 fts_open: if toplist() stat fails return 0
8601	 ftwalk: handle fts_open()==0 via one phony userf() call
8602	 sfmode: S_ISFIFO default is SF_SHARE=0
8603	 features/lib: _WIN32 _lib_vfork=1 by default
8604	 unsigned<0 comparison and other fixes via sgi.mips4 cc
8605	 stk.c: use <align.h> ALIGN_BOUND for stkalloc()
8606	 features/lib,vfork: uwin fix
8607	 ast_std.h: fix strto[u]ll prototypes with features/types _ast_int_8
8608	 getsubopt: add for xopen 4.2 compatibility
8609	 drop function __IMPORT__
8610	 magic: more magic
8611	 change #define FILE from Sfio_t to struct _sfio_s
8612	 state.c: add generated includes that may be hit by std for MAM
8613	 bytesex: forgot about sizeof(long)=>7; could we fix the name too?
8614	 vmalloc.h: fix vmnewof() definition
8615	 sfio.h,stdio.h,ast_common.h: pollution cleanup
8616	 magic.c: add | op for switch
8617	 Makefile: stdio.h was on both HEADERSRC and HEADERGEN -- don't do that
8618	 drop pp:notice to get <sfio.h> ... <ast.h> to work
8619	 regex: add [[:<:]]==\< and [[:>:]]==\> for bsd compat
8620	 mime.c: ignore X-* headers while scanning for Content-*
8621	 magic.c: check for negative indirect offsets
8622	 magic.tab: fix dos entry that generated negative indirect offsets
8623	 vmalloc.h: add vmstrdup() prototype
8624	 hash.h: add hashgetbucket() macro
8625	 magic.c: MAGIFILE is now a : file list
8626	 mnt.c: another 4.4 bsd fix -- users must include <sys/crap.h>
8627	 common: fix _WIN32 chicken&egg with va_copy
8628	 sfio: forgot to set f->val along with _Sfi in sfexcept()
8629	 Makefile: add mini target for uwin libmini.a
8630	 sfcvt.c: workaround for flaky long double optimizers
8631	 features/common: fix to work with va_list==void*
8632	 regexec.c: fix REG_STARTEND subexpression offsets
8633	 strmatch.c: don't forget <wctype.h>
8634	 regrexec.c: fix REG_INVERT end boundary bug that missed last record
8635	 astconf.c: notify(0,0,"a=b") called for each setenviron("a=b")
8636	 pathcanon.c: check astconf(PATH_LEADING_SLASHES) to preserve //*
863796-11-28 _LARGEFILE64_SOURCE by default if possible: NOTE: assumes xopen
8638	 regerror: fix for xopen
8639	 getopt: fix for xopen
8640	 magic: add ciao virtual database
8641	 astconf: posix/strict/xopen implies "standard" conformance
8642	 fs3d.h: hide mount prototype
8643	 ast_std.h,mnt.c,features/fs: ncr port tweaks
864496-10-31 version 5.0
8645	 add strtoll() strtoull()
8646	 sfkeyprintf: upgrade to int_max args
8647	 ast.h: add ssizeof() to work around unsigned botch
8648	 conf.sh: add shell actions to conf.tab
8649	 _DLL*: drop for _BLD_<lib> + __EXPORT__ + __IMPORT__
8650	 sfio,cdt,vmalloc: kpv update
865196-10-11 <ccode.h>: add character code map support
8652	 procclose: return shell style exit status
8653	 features/fs: pun statvfs.f_basetype to statvfs.f_reserved7 for mvs
8654	 uwin: add subdir for uwin additions
8655	 ast_std.h: swab() is from <stdlib.h>
8656	 sfio.h: <ast_std.h> if _PACKAGE_ast
8657	 magic.tab: add mips[1-4], 64-bit
8658	 port tweaks for sol.sun4 and sun4
865996-09-06 strerror: add
8660	 fmterror: uses strerror
8661	 str*search: use sfiso646() order
8662	 strpsearch: add
8663	 magic: add Magic_t.mime mime type return for magictype()
8664	 mime.h: add
8665	 strton: use sfsscanf()
8666	 strperm: factor in umask() if no who
8667	 pathtmp: add TMPPATH check
8668	 libevent: add
8669	 magic: add discipline to magicopen()
8670	 mime: add discipline to mimeopen()
867196-08-31 regex: fix BM fail table generator
867296-08-11 mntread: fix mnt.type for SCO variant
8673	 conf.tab: add SCO KERNEL_* sysconf() vars
8674	 fastfind: add findwrite(), fix findread() FF_OFF omission
8675	 ftwalk: reimplement on top of fts
8676	 fnmatch,re_comp,regexp: reimplement on top of regex
8677	 basename,dirname,fmtmsg,fts,ftw,getdate,getsubopt,glob: add
8678	 hsearch,nftw,realpath,strftime,strptime,swab,tempnam: add
8679	 tsearch,wordexp: add
8680	 getcwd: cache last path for easy test
868196-07-17 error: sfsync(NiL) ... write ... sfsync(sfstderr)
8682	 astconf: handle readonly *(DEV|DIR) vars
868396-04-01 swapop: fix stupid return value bug
8684	 features/int.c: fix int_swap generation bug
8685	 regnexec,regrexec: fix unsigned underflow init error
8686	 ls.h: fix iblocks() to be in units of LS_BLOCKSIZE
868796-02-29 magic: space before function is definition with no call
8688	 hash: drop hash_info from public interface
8689	 hash: OBSOLETE hashlast()
8690	 hash: add Hash_root_t.Hash_last_t to public interface
8691	 add strsearch() and strnsearch() to complement strlook()
8692	 add hashkey.h for keyword->long hash
8693	 pathpath: pathpath(0,0,"",0) disables $0 $_ $PWD relative search
8694	 sfio: sfstrtod+sfhdr update
8695	 regex: fix REG_LENIENT to map BRE \[+?|] to ERE [+?|]
8696	 change _std_malloc iffe test so it doesn't hang on alpha
8697	 sfhdr.h: features/sfio generates _lib_cvt instead of _i386_cvt
8698	 ast_hdr.h: add va_copy(a,b) to copy va_list b to a
8699	 getopt: fix stupid getopt() -> optget() bug
8700	 sfvprintf: %h? now downcasts
8701	 regex: handle strto?l() errno in regcomp()
8702	 sfstrtod: _Sfstrtod_already_defined -> _STUB_sfstrtod
8703	 ast_std.h: hide valloc() and ignore <strings.h>
8704	 sfkeyprintf: pass phony va_list for '2'
8705	 regex: change HIT var type from int to size_t in special()
8706	 ast.h: add EXIT_STATUS(x) to convert wait() status to sh exit status
870796-02-14 regex: add _ to \<...\> isalnum test
8708	 regex: fix BM inner loop breakout
8709	 features/types: size_t is signed on some systems! => _ast_size_t
8710	 sfio: sfrd discipline peek optimization
8711	 vmalloc: vmalloc.h malloc family macro upgrade
8712	 tokopen: fix newline bug for non-restore open
8713	 sfio: no inline for gcc until it emits for -g too
871496-02-12 sfio: internal upgrade
871596-02-09 regex: Boyer-Moore boundary fix
8716	 vmalloc: snarf latest
871796-02-06 regex: add regrecord() and regrexec() for Boyer-Moore record filtering
8718	 regex: rearrange regnexec() args to match buffer,count arg style
871996-01-31 stk: add STK_NULL to stk.h and stk.c
8720	 regex: privatize regex.h and fix min re length computation
8721	 workaround lazy strdup() implementations in features/lib _std_malloc
8722	 fix stkclose() to free(stream) -- purify missed because of sfio links
8723	 unused var cleanup
8724	 port/mnt.c must include <ls.h> to get <ast_fs.h>
8725	 add SF_FINAL to sfio and stk
8726	 sfio reads now on natural block boundaries
8727	 add #!!! <level> <message> !!! to tokline()
8728	 add REX_BM pre-filter to regcomp/regnexec
872996-01-22 add regcomp env.paren overflow checks
873096-01-11 add Doug McIlroy's regex (converted to C from C++ by gsf)
8731	 AT&T Research now
8732	 sfgetr optimization
8733	 regex buglets
873496-01-05 tweak magic.tab for win32
873595-12-25 add !(...) -> (...)! to fmtre()
8736	 nt tweaks -- functions with no header proto must be defined extern
873795-11-24 version 4.1
8738	 add mnt.h mntopen mntread mntclose
8739	 convert fmtfs to mnt.h
8740	 add RE_LEFTANCHOR and RE_RIGHTANCHOR
8741	 gcc inlines must also have global library function instantiation!
8742	 add hashview()
8743	 fix strtape() internal buffer flow
8744	 fix mntread() fs/dir transposition for uts mnttab
874595-10-31 change features/unistd.c includes to break limits-param cycle
8746	 add cdt from kpv
8747	 sfio snarf from kpv
8748	 add [ht]search for _WIN32
874995-10-11 clarify PARANOID pathcheck() warning
8750	 fix procopen() LIB_SPAWN environ bug with setenviron() cache
8751	 fix setenviron() bug that forgot to reset environ if == 0
8752	 add %Z '\0' output format to sfkeyprintf()
8753	 sfio snarf for sfvprintf fix
8754	 allow multiple hashscan() with scope caveat
8755	 add comp/fakelink.h to synthesize a few symlink text patterns
8756	 add !<xxx> magic to misc/magic.tab
8757	 add FTW_TOP to inhibit recursion (for ftw side effects on top level)
8758	 add memfatal() common malloc fatal exception message
8759	 add dos \r\n test to misc/magic.c/cklang()
8760	 sftmp() O_EXCL+random to avoid collisions
8761	 pathtemp() uses sftmp() randomizing
8762	 features/fs uses SF_APPENDWR
8763	 sftmp() uses pathtemp() -- don't worry, its not circular
8764	 a few more _WIN32 compatibility additions
8765	 realloc fixed to use VM_RSCOPY|VM_RSMOVE instead of obsolete 1
8766	 add hashlook(tab, oldname, HASH_RENAME, newname)
8767	 a few more tweaks to satisfy port warnings
8768	 add _SFIO_INLINE_PRIVATE to provide real function too
8769	 fix <dirent.h> installation test
8770	 oops object / shared library compat with _sfgetl2 _sfgetu2
877195-09-11 add getopt() compatibility
8772	 add fstat,lstat,mknod,stat fixes for _x versions in sys/stat.h
8773	 add getconf CONFORMANCE - posix for things that aren't ast default
8774	 sfio_t.h: #ifndef _SFIO_H #include "sfio.h" #endif
8775	 snarf vmalloc from kpv
877695-08-11 fix malloc bug in magic
8777	 update linux and bsd 386 magic entries
8778	 error_info.auxilliary returns new level, |=ERROR_OUTPUT if msg done
8779	 drop fnmatch from strmatch for sparc (solaris) until it collates
878095-07-17 fix port/astconf universe initialization
8781	 fix misc/optget opt_info.nopt initialization
8782	 drop tmset() TZ=... because it only worked when TZ=... was ignored
878395-05-09 mongo <ast.h> namespace cleanup
8784	 drop > 2 year old obsolete interfaces
8785	 sfvprintf.c fix for (char:8 short:16 int:32 long:64) architectures
8786	 TMP_MAX back into conf.tab
8787	 pathbin() and pathshell() now use astconf()
8788	 fix pathtemp() to not cache getenv("TMPDIR")
8789	 fix ftwalk() metaphysical to handle non-dirs too
8790	 initialize *_info = { 0 }; for ancient ld semantics (NeXT)
8791	 fix magic() to do vmfree()
8792	 astconf(X_OK) must prefix lines with "getconf"
8793	 use <wchar.h> and wctype in strmatch() if available
8794	 _lib_utime_now checks utime(path,0)
8795	 _lib_poll_notimer checks poll(x,0,timeout)
8796	 add another _lib_utime_now check to port/touch.c
8797	 fix dd_buf cast in dir/opendir.c
8798	 split getconf.h into conftab.h and conftab.c for :READONLY:
8799	 use mbtowc() only if MB_LEN_MAX>1
8800	 sfio char* -> Void_t* cleanup
8801	 handle old syntax in misc/magic.c
8802	 sigdata.c holds readonly signal strings
8803	 pathcheck() does AT&T checks for tools matching PARANOID - yuk
8804	 unused var cleanup
8805	 deprecate hash_info in favor of hashlast()
8806	 fix bad conf.sh ksh integer interactions
8807	 dll cleanup
8808	 magic.c falls back to malloc for now
8809	 add environ to <ast.h> -- C library global data syms are *RESERVED*
8810	 sfhdr.h memccpy(1,2,3,size_t) prototype
881195-04-01 version 4.0
8812	 convert to vmalloc
8813	 allow sigcritical() nesting mismatch to work around vfork() bug
8814	 add strexpr() primitive for streval() with user handle (like ftwalk)
8815	 add <magic.h> and magic.c file command magic interface
8816	 update magic mail message entry
8817	 fix keyprintf() invisible char count nesting bug
8818	 add sfstrnew(SF_READ|SF_WRITE) for alternate sfstropen() modes
8819	 sfstrnew(SF_READ) but reading requires sfseek(), sfreserve()
8820	 add conf.tab and conf.sh to nail C/POSIX limits/unistd macros
8821	 add getconf() string interface to *conf*
8822	 _DLL_INTERMEDIATE_DATA for systems that require indirect globals
8823	 _DLL for building shared libraries with _DLL_INTERMEDIATE_DATA
8824	 vecfile() restricted to S_ISREG()
8825	 add spawnveg() for job control
8826	 convert procopen() PROC_PGRP(id) to spawnveg()
8827	 fmterror() returns error text given errno (strerror() does same)
8828	 fmtsignal() returns signal text given errno (strsignal() does same)
8829	 {sig_name,sig_text,SIG_MAX} -> sig_info.{name,text,sigmax}
8830	 liberror("",...) omits [%s library] prefix
8831	 update features/signal.c table
8832	 add vmdisc() and change vmnewof() to use vmresize()
8833	 fix conf.sh to allow refs to previously defined limits
8834	 fix undefined entries in getconf()
8835	 magic data in magic.tab
8836	 fix stropt() pointer cast
8837	 vmalloc() exception handler replaces nomalloc()
8838	 merge sigdata.c into fmtsignal.c -- sun link needs function w/ data!
8839	 sftmp() bug fix
8840	 drop local <unistd.h> even with _POSIX_SOURCE
8841	 fix vmstrdup() macro arg miscount
8842	 fix conf.sh to handle enum'd symbolic constants in unistd.h
8843	 drop malloc() et.al. prototypes from vmalloc.h
8844	 fix sfvprintf() %d argument reference
8845	 add OSF/1 AES symbol(s) to conf.tab
8846	 determine standards prefix from conf.tab
8847	 add _CS_SHELL to conf.tab
8848	 getpath() default is confstr(_CS_PATH)
8849	 getshell() default is confstr(_CS_SHELL)
8850	 unify keyprintf user function args (should have learned by now!)
8851	 add quad type to magic
8852	 add astfeature() to unify universe style dynamic features
8853	 add ftwflags() to determine FTW_* flags from astfeature()
885495-03-11 fix stropt() to not modify its *const* arg
8855	 handle "'\ quotes and chresc() in stropt() values
8856	 , treated like :space: between stropt() options
8857	 fix procopen() fd dup to ignore self-dups
8858	 add library id[] to misc/state.c
8859	 add ftwalk(FTW_METAPHYSICAL) for posix -H
8860	 sfvprintf() now handles balanced () in %()
8861	 add tmfmt() with buffer size check to replace tmform()
8862	 add fmttime() calling tmfmt() to fit fmt*() mold
8863	 add <keyprintf.h> and keyprintf() to support %(...)? in commands
8864	 add Hash_table_t for size==0 in stropt()
8865	 add EXTTYPE extended header to tar.h
886695-02-14 sfmove() buffer size overflow fix
8867	 add _SFSTDIO_H to sfio.h
8868	 rename setenv() to setenviron() -- posix finally decided
8869	 rename <option.h> opt_* to opt_info.*
8870	 update features/unistd.c for _SC_* and _PC_* posix additions
887195-01-19 (char*)uchar cast in fmtesc()
8872	 fix hash bucket memory leak in hashlook() [via John Mocenigo]
8873	 update strings/strtape()
8874	 fix optget()/optjoin() to handle leading +
8875	 add ALIGN_ prefix to <align.h> identifiers
887695-01-11 change tm/*.c tmset(0) to tmset(tm_info.zone) to keep user setting
8877	 fix tmform() %Z null pointer dereference
887895-01-01 add this RELEASE file
8879	 fix strperm() to properly handle "644 file"
8880	 fix tokline() to return last '\0' terminated line in string
8881	 fix tokscan() to properly handle \\n splice
8882	 add fmtesc() to complement stresc()
8883	 add LS_NUMBER to fmtls()
8884	 drop spurious optusage() ' '
8885
8886:::::::: libardir ::::::::
8887
8888111-08-31 ar-omf.c: fix FILENAME #pragma prototyped incompatibility
888903-09-17 ardir.c: rewind initial peek to open position in case its /dev/stdin
889003-04-05 ar-port.c: fix bug that skipped initial long name entry
8891	 ar-port.c: handle netbsd.i386 ' <long-index>' vs. '/<long-index>'
889203-02-05 ar-port.c: handle solaris TYPE_port variation
889303-01-30 ar-port.c: handle member name length == 16 (no terminator)
889402-10-20 ardir.c: add ardirlist()
889502-08-09 ardir.c: ardiropen() fails if !S_ISREG unless ARDIR_FORCE
889602-06-11 ar-port.c: handle 4.4BSD `#1/size' long names
889702-06-06 #ifndef EILSEQ => EINVAL
889802-05-07 first release
8899
8900:::::::: libcmd ::::::::
8901
890212-06-25 getconf.c: don't defer to native getconf if we are it -- doh
890312-06-19 tail.c: be nice and use sh_sigcheck() and tvsleep() to verify interrupts
890412-05-31 cat,head,tee: use errno==EPIPE => ERROR_PIPE(errno)
890512-05-25 vmstate.c: #include <sfdisc.h> for sfkeyprintf() prototype
890612-04-20 chgrp.c,chmod.c,cksum.c,cp.c: default fts_flags()|FTS_META (to disable pure FTS_PHYSICAL)
890712-03-26 cp.c: fix --interactive astquery() logic that ignored no&quit!
890812-02-14 rm.c: --force ignores no file operands specified
890912-01-10 b_* (int, char**, void*) => (int, char**, Shbltin_t*)
891011-08-27 pids.c: add getsid() iffe test
891110-08-16 chmod.c: add -l alias for { -h --symlink }
891211-08-16 chgrp.c: change lchmod() ref to lchown()
891311-05-03 cp.c: do not delete src if mv to dest fails -- doh
891411-03-28 chmod.c,chgrp.c: fix --symlink logic
891511-03-26 rm.c: don't eaccess() check symlinks!
891611-01-27 date: add { -R, --rfc-2822, -T, --rfc-3339=type }
891711-01-03 chgrp.c: --symlink => --physical
891810-12-10 rm.c: fix not-writable logic
891910-12-01 tee.c: add iterrupt logic for slow open(1) -- needs to be generalized
892010-11-30 chgrp.c: add -N,--numeric to bypass name lookup
892110-10-20 cp: add --timestamps (preserv timestamps and permissions)
892210-10-20 ln: fix 'cannot replace existing file' logic
892310-10-10 cp,mv: add --remove-destination
892410-08-11 cp.c,expr.c: use conformance("standard",0) test
892510-08-11 cut.c: use mbnsize() instead of mblen() (for ast C.UTF-8)
892610-07-28 chgrp.c,chmod.c,cksum.c: fts_path for diagnostics, not fts_accpath!
892710-06-14 rm.c: fix -rfu logic
892810-06-12 paste.c: repeat after me: do not modify argv[i]
892910-06-01 sync with ast api 20100601
893010-05-09 tail.c: fix -0f bug that inially listed the entire file
893110-05-06 basename.c: add { -a,--all -s,--suffux=suffix } from BSD
893210-04-12 cat.c: fix -v bug that dumped core and make consistent with cmp --print-chars
893310-04-11 cmp.c: add --print-bytes, --count=n, --differences=n
893410-04-08 vmstate.c: add { method flags } vars for Vmstat_t.mode
893510-04-08 mkdir.c: fix check for { S_ISUID S_ISGID S_ISVTX } after successful mkdir(2)
893610-04-01 stty.c: add --fd=fd option
893710-03-23 tail.c: fix -f large initial offset bug that didn't copy all data
893810-03-07 tail.c: sfsync(sfstdout) after all -f done, fix -f partial line
893910-03-05 mktemp.c: add --regress=seed for testing
894010-03-05 vmstate.c: add
894110-01-26 tail.c: -f sleep(1) only if no progress from last round of checks
894210-01-20 fts_fix.[ch]: use <fts_fix.h> instead of <fts.h> (see fts_fix.c)
894310-01-20 cp.c: free(state) if called from old shell
894409-12-10 join.c: <wctype.h> for iswspace()!
894509-12-04 cmd.h: fix CMD_DYNAMIC logic
894609-12-04 cut.c: handle -d mb
894709-12-03 mkdir.c: add --verbose
894809-11-30 cat.c,date.c,cksum.c: drop setlocale() call already done by optget()
894909-11-30 join.c: handle -t mb
895009-11-28 wclib.c: { -w -L } mb independent of -m
895109-11-28 paste.c: handle -d mb
895209-11-28 uniq.c: handle -s mb
895309-11-28 cksum.c: FTS_SEEDOTDIR by default
895409-09-09 fds.c: add --unit=fd
895509-08-25 tail.c: initialize Tail_t.fifo=0 !!
895609-08-15 tail.c: fix fifo logic
895709-08-11 wc.c: add setlocale(LC_CTYPE,"C") cleanup, add utf8 optimzations
895809-08-10 uniq.c: replace -c 1..9999 sfsprintf() with inline conversion
895909-08-01 join.c: fix empty field null pointer deref
896009-07-23 pathchk.c: add -P,--path and -a,--all
896109-07-02 chgrp.c,chmod.c,cksum.c: fts_flags() default only if not --recursive
896209-06-19 cmd.h,cmdinit.c: add ERROR_CALLBACK for ERROR_NOTIFY main() callback
896309-06-19 mktemp.c: --unsafe now checks and prints path but does create
896409-06-19 tee.c: add ERROR_CALLBACK for tee_cleanup() sfio discipline pop
896509-06-18 rm.c: handle interrupts during interactive query
896609-06-18 cp.c: handle interrupts during interactive query
896709-05-25 tail.c: fix old style option logic to handle --invalid-long-option
896809-05-24 tail.c: -r == +1r
896909-05-01 mktemp.c: handle foo/prefix, add -p dir and -u
897009-03-31 cat.c: handle --no* options
897109-03-15 tail.c: fix --timeout termination logic
897209-03-03 tee.c: clean up sfio disciplines on error
897309-03-03 cat.c: fix -v|-e|-n|-B interaction bugs
897409-02-14 tail.c: fix VSC failures
897509-02-14 join.c: fix VSC failure
897609-02-02 uniq.c: document -number == -fnumber, +number == -snumber
897709-02-02 tail.c: fix usage[] for negative offsets, add sun -b
897809-02-02 mktemp.c: add
897909-02-02 features/utsname: UWIN _UNAME_os_DEFAULT => UWIN
898009-01-31 dirname.c: add experimental { -f -r -x } for pathpath(3)
898109-01-05 cmp.c: fix EOF diagnostic to conform to posix
898209-01-03 mkfifo.c: fix --mode=mode logic
898308-12-07 date.c: add %[_][EO]K for [space pad] [full|long] iso docs
898408-11-10 stty.c: check for -t grouping so -tostop != -t -ostop
898508-10-15 rm.c: handle 'rm -f x x' => exit 0
898608-09-08 stty.c: #ifdef guard TAB[012] -- freebsd: damn the posix, full speed ahead
898708-06-17 shcmd.h: move to libast
898808-04-24 uniq.c: add optget() 'n' option for -1 => -f1
898908-04-24 getconf.c: clarify diffs between "name - value" and "name = value"
899008-04-01 cut.c: add write error check
899108-04-01 paste.c: fix --noserial stream vector access bug
899208-04-01 pids.c: add ls/ps style --format=format
899308-04-01 stty.c: fix off2 unitialized reference
899408-03-28 chgrp.c: add --before=file
899508-03-14 pids.c: add
899608-03-11 chgrp.c: fix -m to use uid:gid as lookup key
899708-02-11 Makefile: add -lmd possibly required by sumlib.o -- hack alert
899808-01-30 expr.c: fix <=0 type that broke substr * 1 * -- wow
899907-12-13 cp.c: fix builtin state reinitialization
900007-11-29 rev.c: honor multibyte locales
900107-11-27 cp.c: open non-existent destination with O_EXCL
900207-11-27 stty.c: add -t,--terminal-group to list tty pgrp
900307-11-27 cksum.c: --silent -s => -S, -s == -x sys5 for gnu compatibility
900407-11-11 tee.c: drop ancient bsd compatibility "-" operand => SIGINT
900507-10-29 cksum.c: add SUM_LEGACY for -r
900607-10-12 cp.c: plug usage string memory leak by using per-builtin state
900707-09-21 cksum.c: add sumprint() default scale arg, --scale, --bsd for solaris
900807-09-10 chmod.c: add --show,-n
900907-07-27 wclib.c: bias <wchar.h> checks for modern unix
901007-07-17 cat.c: fix --squeeze-blank to reduce multiple blank lines to *one*
901107-05-20 cmd.h: handle msvc's balk at if(0)0=0;
901207-05-20 cksum.c: #include <modex.h>
901307-05-11 cmd.h: add _CMD_CONTEXT_OK() to verify >= 20070511 context
901407-05-09 fds.c: handle ipv6 sockets
901507-05-09 cmd.h: <shbltin.h> : cmdquit() => sh_checksig(context)
901607-04-25 mkdir.c: force (S_ISVTX|S_ISUID|S_ISGID) after mkdir(2)
901707-04-24 procrun.c: add -last intercept => sh_run() and whence -q
901807-04-19 uname.c: name operands first checked for CS_NAME, then NAME
901907-03-28 date.c: add --unelapsed=scale, -U: fmtelapsed() => strelapsed()
902007-03-25 wclib.h: iswspace() requires <wctype.h>!
902107-03-11 tty.c: add sysV --line-number, -l
902207-02-26 Makefile: sumlib.o: direct extract from +lsum (vcodex someday)
902307-02-24 Makefile: tweak cmdext.h action for --mam bootstrap
902407-02-09 Makefile: { cmdext.h cmdlist.h } depend on *.c list!
902507-02-09 Makefile: +lsum to bring in static -lsum (no dynamic right now)
902607-02-07 cksum.c: move from src/cmd/std with ftwalk => fts
902707-02-07 getconf.c: handle /bin == /usr/bin in defer logic
902807-01-26 chmod.c: don't FTS_FOLLOW if !FTS_PHYSICAL
902907-01-23 cut.c: Cut_t variable dimension list[] must be last member
903007-01-22 uname.c: fix -h typo that clobbered astconf() state -- ouch
903107-01-02 fmt.c: fix buffer splice off by one bug -- what else
903206-11-23 cmd.h: because of proto cmdinit cannot be a function like macro
903306-11-21 cp.c: fix 06-10-31 const dot[] readonly assignment
903406-11-15 cp.c: fix 06-10-31 ln -s enoent bug
903506-11-11 getconf.c: let astconf() handle "undefined" vs. ""
903606-11-11 getconf.c: fix deferred getconf path search
903706-11-11 fmt.c: handle two char { \t \n } in --usage ouput
903806-10-31 global edit to eliminate most non-const static data0
903906-10-31 use <cmd.h> for all b_*() implementations; drop <cmdlib.h>
904006-10-31 cmd.h: add CMD_ prefix to { BUILTIN DYNAMIC STANDALONE }
904106-10-31 join.c: tone down /tmp usage vi SFSK_DISCARD
904206-10-31 cp.c,rm.c: update to <fts.h> to accomodate non-static data
904306-10-29 date.c: "...%H%..." => "...%H" "%..." to avoid SCCS conflict
904406-10-26 fds.c: handle sctp
904506-10-18 tail.c: fix invalid suffix infinite loop
904606-10-11 chgrp.c,cp.c: add sfstruse() error checks
904706-10-10 tee.c: add --linebuffer, -l
904806-10-06 getconf.c: preserve native getconf(1) known variable behavior
904906-10-04 sync.c: add (thanks to Roland Mainz)
905006-10-04 getconf.c: add -v specification => run native getconf(1)
905106-09-28 stty.c: static setmode() => set() for darwin.i386
905206-09-27 head.c: handle -1c => -c1
905306-09-19 pathchk.c: pathconf() => astconf()
905406-09-11 tail.c: handle compatibility corner cases
905506-09-08 date.c: add output write error diagnostic
905606-09-04 tail.c: fix initial position for -n0, no args => no -f
905706-08-28 uniq.c: add -D,--all-repeated
905806-08-25 wc.c,wclib.c: add -L,--longest-line,WC_LONGEST
905906-08-24 wc.c,wclib.c: implement -m and WC_MBYTE
906006-08-24 rmdir.c: -sp applies to every message, add gnu -e
906106-08-23 rmdir.c: add solaris --suppress, -s
906206-08-23 mkdir.c: don't add 0300 to -p final dir mode
906306-07-17 cut.c: handle last line with no newline
906406-07-17 cut.c: --output-delimiter == --line-delimiter
906506-06-25 chmod.c: mask -c output with S_IPERM
906606-05-09 uname.c: add -o; change -a to match linux
906706-05-03 date.c: add --last -L to list last of multiple time args
906806-02-14 tail.c: fix -f bug that lost fast stream data
906906-02-11 getconf.c: exit 1 if name invalid -- duh
907006-01-28 cp.c,rm.c: fix astquery() 'q' to return and not exit()
907105-08-11 fmt.c: fix -o to handle raw --usage strings
907205-05-17 cat.c,head.c: disable EPIPE error messages
907305-04-14 chgrp.c: -f means all non-syntax error messages
907405-04-11 fds.c: add from old internal open(1)
907505-04-09 cmdext.h,cmdlist.h: generate from source -- about time
907605-03-24 features/symlink: verify { lchmod lchown } implementations
907705-03-07 date.c: add --listzones to list the time zone table
907805-02-14 chmod.c: add --reference=file
907905-01-11 cat.c: restore output stream to binary mode on exit
908004-12-15 cp.c: add --preserve high resolution time support
908104-12-08 date.c: add high resolution time support
908204-12-01 cmp.c: fix %6I*ld => %6I*d -- doh
9083	 fmt.c: handle "\n\n operands \n\n"
9084	 head.c: handle -cN -nN, N > 4Gb
908504-11-22 cmp.c: handle >2G chars/lines
908604-11-18 fold.c: add --prepend=text, --append=text
908704-10-31 tail.c: use SF_LOCKR macro
908804-10-28 tail.c: use strtol() for old stype [+-]number[suffix] -- doh
908904-10-22 cp.c: check rename() errno==ENOENT to retain destination
909004-10-11 fmt.c: fix -o,--optget sublist bugs
9091	 tail.c: use strton() for number conversion
909204-10-08 pathchk.c: add empty path and -p - first component char
909304-10-01 fmt.c: add -o,--optget concatenated usage string format
9094	 stty.c: context is ERROR_INTERCATIVE
9095	 rm.c: restore 3d before exit
909604-09-24 pathchk.c: fix docs
909704-09-14 date.c: add %| and %& --parse docs
909804-08-27 cp.c: add FTW_DC check -- duh
909904-08-01 fmt.c: handle last char != '\n'
910004-07-22 date.c,uname.c: access() => eaccess()
910104-07-01 fmt.c: handle large input lines -- ouch
910204-06-11 id.c: fix -r to output something!
910304-05-27 expr.c: fix `:' op subexpression output
910404-04-15 chmod.c: follow symlink for relative mode
910504-04-12 Makefile: add STDCHMOD (for osf.alpha)
910604-03-19 tail.c: handle -f sfreserve() large chunk failure
910704-02-29 cp.c: decouple -f and -i for standard CONFORMANCE
9108	 cp.c: mv now attempts rename() before remove()+rename()
9109	 date.c: -f format or +format disables system clock set
911004-02-14 cp.c: add -F --fsync to call fsync(2) for each copied file
911104-01-05 head.c: -s now uses opt_info.number for >2Gb skip
911203-09-18 tail.c: add --log
911303-09-11 rm.c: add --unconditional
911403-08-11 fold.c: add --delimiter=c to break at c
911503-07-28 features/time: change settimeofday() test to 2nd arg of (void*)0
9116	 expr.c: add {match,substr,index,length,quote}
911703-07-15 fmt.c: fix trailing space bug
911803-06-20 uname.c: fix -p constant string overwrite
911903-06-04 stty.c: add undef to control assignment docs
912003-05-31 uname.c: add -f and sysinfo()/confstr() compatibility via astconf()
912103-05-27 rm.c: fix inappropriate "/.." append path overflow
9122	 cut.c: snarf from dgk
912303-05-18 rm.c: check st_nlink to verify progress w.r.t. ftwalk/fts
912403-05-15 join.c: fix stealth -v2 bug (thanks ahs)
912503-05-04 wc.c: drop trailing space for `wc -l < file'
912603-03-21 date.c: add %Q/recent/distant/ docs
912703-02-19 date.c: fix %+|!flag docs
912802-11-14 update for cmdinit() 4th arg and ERROR_NOTIFY for interrupt cleanup
912902-10-02 date.c: tmform() => tmfmt()
913002-09-30 date.c,uname.c: change execv() calls to procrun(): exec|exit => bad
913102-09-06 wclib.c: fix 1 char-at-a-time miscount bug
913202-08-19 chgrp.c: convert to use <cdt.h>
913302-07-23 join.c: fix comm snarf typo
913402-04-05 date.c: add %u
913502-01-24 stty.c: ifdef a few more macros for uts (yes, its still running)
913601-12-14 date.c: clarify %z doc
913701-10-31 mkdir.c: mkdir() on existing dir could fail with errno!=EEXIST
9138	 uname.c: add execve() loop check for unknown options
913901-10-29 tail.c: SF_SHARE on only if not reading through EOF
914001-10-11 getconf.c: fix usage typos
914101-09-11 cp.c,cmd.h: handle . in argv[0]
9142	 cp.c: add O_BINARY to all open() calls
914301-09-06 tail: input streams must be SF_SHARE -- duh
914401-07-16 stty: fix cntl() macro for CC_NATIVE!=CC_ASCII
914501-05-31 date: fix /bin/date fallback logic
9146	 stty: fix a few mismatched flags, -a and -g option logic
9147	 stty: tone down sane to modify current settings rather than from zero
914801-05-01 uname: -i => -h, add sol.sun4 -i, add sgi -R, punt to /usr/bin/uname
914901-04-17 date,rm: add
915001-03-07 cp: fix readonly string mod on "."
915101-01-23 cp: `cp foo' => `cp foo .' only for CONFORMANCE!=standard
915200-12-01 cut: multibyte support
915300-10-31 mkdir: handle races by checking EEXIST
915400-09-20 cp: copy argv to stack before modifying in place
915500-05-18 add setlocale(LC_ALL,"")
915600-04-30 join: drop weird opt_info.argv reference
915700-03-17 expr: add == operator -- duh
9158	 cp,ln,mv: delay pathcanon() on destination to verify `cp a b/.'
9159	 getconf: use astgetconf for proper message control
9160	 ERROR_translate: dictionary update
916100-03-08 tail: handle multiple -f files
916200-03-07 fmt: add
916300-03-07 dirname: handle PATH_LEADING_SLASHES as documented
9164	 tail: accept + options
916500-02-14 chmod: --ignore-umask to ignore umask(2) in symbolic expressions
9166	 chmod,chgrp,cp: use FTS_NOSEEDOTDIR for correct path construction
9167	 cat: fix -n (was ignored, wow)
916800-01-27 getconf: add "-a" and "-v spec" for sol7.* compatibility
916999-09-09 join: fix -j1 vs. -j 1, add --ignorecase
917099-06-22 paste: defualt delim in writable string
917199-06-16 cat: fix --dos-ouput typo
917299-06-11 cp: tighten chown() diagnostics
917399-06-08 expr: nothing for NULL string bug fix
917499-05-21 paste: fix missing newline columnize bug
917599-05-20 mv: do not check for `mv foo foo' since rename() handles it
917699-05-01 cmp,comm,cp/mv/ln,expr,fold,getconf,head: long options
9177	 join,logname,paste,pathchk,tail,tee: long options
917899-04-10 uname: long options, stdize -a
9179	 chmod,head,tail,rev: long options
9180	 cut: long options, pass regression test 02
918199-04-07 cat: long options, fix O_TEXT modes
918299-01-11 tail: fix +n
9183	 join: another ggs/psm bug
9184	 join: all 1 and/or 2 to be unseekable
918599-01-01 cp: fix -p
9186	 chmod: drop -l option because of clash with l (lock) mode
918798-12-25 cat: add -T to sfopen(,,"rt")
918898-11-11 chgrp,chmod: cannot open file stream => not found
9189	 join: fix another ggs/psm bug; thanks guys
919098-10-20 cp: fix cp -rp to update dir times too
919198-09-22 join: fix ggs null field bug
919298-08-11 join: fix last regression test bug
919398-05-29 join: add jp->common to handle boundary conditions
919498-03-11 cat,cp,rev,tee: fix sfmove() error checks
919598-03-01 join: fix bug that emitted records more than once after eof
9196	 cp: fix sfmove() error check
919798-02-14 cp: -R physical, -[HLP], -r getconf(PATH_RESOLVE)
919898-01-11 cp: check sfclose() return value
919998-01-07 chown,chgrp,chmod: use fts for -R
9200	 mkdir: fix -p default mode
920197-12-07 mkdir: fix umask() reset
920297-11-11 chown,chgrp: proper interpretation of -h,-l for lchown()
9203	 chown,chgrp: only chown() if uid or gid change
920497-10-31 mkdir: do umask right
920597-08-11 cmdinit: clear opt_info.index to allow multiple calls
9206	 cp,ln,mv: add
920797-07-17 join: fix a few more -a bugs
920897-05-31 expr: optget() only if CONFORMANCE==standard
920997-04-01 join: fix a few bugs that make it work!
921096-12-25 head: sfset(sfstdin,SF_SHARE,1)
9211	 Makefile: add -last to cmd lib list
9212	 drop function __IMPORT__
921396-08-11 tail: check for truncated file and rewind for -f
921496-04-08 update <cmd.h>
921596-02-29 uname: -a like std, -l for everything
9216	 id: add -a (default)
921796-02-14 wc: speed up inner loop newline breakout
921896-01-30 unused var cleanup
921996-01-01 AT&T Research now
9220	 pathchk: handle getcwd(0,0) error
9221	 expr: switch to <regex.h>
922295-11-11 add expr.c
9223	 fix cut exit code and -s optimization
922495-10-11 add extern b_* to cmd.h
9225	 add void* context 3rd arg to b_main()
922695-05-09 add getconf
9227	 cat -u avoids mmap
9228	 add chown|chgrp -m uid|gid map file
9229	 add chown|chgrp -P for systems with lchown(2)
9230	 chown|chgrp -P => lstat() too!
9231	 chmod|chown|chgrp -HLP
923295-04-01 version 1.2
9233	 add rmdir
923495-02-14 fix mkdir -p symlink bug
9235	 fix mkdir '/' skip bug that went one too far
9236
9237:::::::: libdll ::::::::
9238
923912-07-25 add debug diagnostics
924011-10-11 dll_lib.c: add { dllnames() dll_lib() }
924110-10-20 dllscan.c: version arg "-" => 0
924210-10-19 dllplug.c: fix bug that wiped out dlopen() error message
924310-10-19 dllplug.c: un-localize lookup names (happens with cut and paste)
924410-10-19 dllscan.c: still no code for implicit libs missed by dlopen()
924510-08-02 dllplug.c: fix local path dllcheck() call
924610-05-28 dllplug.c: add dllplugin() with dllcheck() version check
924710-05-28 dllcheck.c: add dllcheck() to do plugin_version() checks
924810-05-28 dllerror.c: add dllerror(int retain) for dll*() and dl*() messages
924909-11-17 dllscan.c: handle name[-.]version in dlsopen()
925009-04-15 dllopen.c: add, use dllopen() internally to wrap dlopen()
925108-05-12 dllscan.c: LIBSUFFIX==.dylib => default plugin version match 0.0
925206-10-11 dllscan.c: check sfstruse() return values -- doh
925306-01-25 dllplug.c: add errorf() library message for dlopen() error
925405-02-14 dllscan.c: "" || "-" => NiL
925504-10-01 dllfind.c: drop ksh "builtin" workaround
9256	 dllscan.c: directory prefix in name limits search to dir and siblings
925704-07-22 dllscan.c: access() => eaccess()
925804-01-30 dllfind.c: dllplug(error_info.id) then dllplug(0)
925904-01-28 dllscan.c: update for new plugin scheme: lib/foo/bar.xxx
9260	 dllplug.c: add dllplug() for plugin dllfind()
926103-03-12 dllfind.c: dlopen() with RTLD_GLOBAL|RTLD_PARENT defaults
926203-02-11 dllscan.c: change LIBPATH to <dir>[:<env>[:<pat>]][,...]
926303-01-08 dllscan.c: hack version logic again -- is consistency rocket science?
926403-01-07 dlfcn.c: fix darwin.ppc dlopen/dlsym/dlclose
926502-11-18 dllfind.c: add path,size args (with backwards compatibility checks)
926602-11-15 dllfind.c: check for ./path if '.' in path but no '/'
926702-08-30 dllfind.c: fix a bug that returned uninitialized value on not found
926802-08-28 dllscan.c: handle and display bin as a sibling dir
926902-07-31 dllscan.c: add dllsopen,dllsread,dllsclose
9270	 dllfind.c: use dllsopen,dllsread,dllsclose
927102-07-26 dllfind.c: add dllinfo()
927202-06-27 dllnext.c: define _GNU_SOURCE to enable RTLD_NEXT
927302-03-17 dllfind.c: fix dll prefix search (for cygwin)
927402-01-11 features/dll: include <dlfcn.h> only if _hdr_dlfcn&&_lib_dlopen
927501-10-31 dlfcn.c: change hp.pa dlopen() prototype (<dlfcn.h> but no -ldl!)
927601-09-25 dllfind: add LIBSUFFIX
927701-07-17 dllfind: do at least one dlopen() to prime dlerror()
927801-05-29 dlopen: fix dlopen(0,0) for HP
927901-04-20 dllfind: use getconf HOSTTYPE LIBPATH LIBSUFFIX
928001-02-14 features/dll: fix unbalanced ' quote and ancient hostinfo reference
928100-01-26 dlllook: add -- dlsym() with `_' weak prefix fallback
928299-04-01 features/dll: drop <stdio.h> -- iffe protos printf
928399-03-19 static=1 for all but win32.*
928498-06-01 dllfind: fix version search
928598-03-11 features/dll: probe for _DLL_RLD_SYM
928698-03-01 dllnext: fix to work!
928798-01-23 -ldl test moved to lib0ast
928898-01-11 update for astconf("LIBPATH")
9289	 add dllnext(flags) to uncover next layer
9290	 dllfind() and dllnext() in separate files (for 3d)
929197-10-11 move from libast so libast can link static
9292
9293:::::::: libexpr ::::::::
9294
929512-07-18 exgram.h,exeval.c: handle scanf("%[^\n]", &v) -- thanks Philippe
929611-08-25 exparse.y: fix "begin()" frame symbol table check
929711-06-30 extoken.c: enter LABEL: in the parent scope symbol table!
929811-06-26 exparse.y: fix bug that lost function return type
929911-03-16 exparse.y,expr.h: fix statement_list cons tail recursion
930011-03-03 eparse.y: fix function reff node pointer
930111-03-03 exeval.c: function env is args[-1]
930210-11-30 fix "begin" scope logic that caused tw bug
930310-08-18 add static, global and function level variable scopes
930409-02-02 exgram.h: drop function ref in call() to avoid eval in exeval()
930506-10-11 add exstash() and exnospace() for sfstruse()/vmstrdup() errs
930605-10-25 exeval.c: fix I2F unsigned cast
930705-04-20 exeval.c: fix sscanf() runtime argument check logic
930805-01-11 Makefile: fix exop.h generation to handle spurious #define's
930904-12-14 exeval.c: handle printf "%% %x"
931004-04-15 exeval.c: handle scanf %s -- forgot that regression test!
931104-04-01 exparse.y: drop #pragma prototyped
931204-02-26 add scanf() and sscanf()
931302-10-02 exeval.c: tmform() => fmttime(), static nmbuf[] => fmtbuf()
931402-09-11 expr.h: move exbuiltin[] to private exlib.h
931599-09-22 exparse.y,exeval.c: add for(ID[DYNAMIC])
9316	 exparse.y: ref[i].ref
931798-12-25 excc: fmtesq() to handle \"
931898-11-11 expr.h: add disc matchf for strmatch
9319	 exlib.h: fix exeval string mem leak with Expr_t.ve
932098-09-11 expr.h: move Exdata_t to last public element of Exnode_t
932198-07-17 label: return type INTEGER
9322	 add exdump() for debugging
932398-05-22 STRING * STRING == common chars by position, ' ' for diff
932498-05-11 add function args; NOTE: auto's still global
932598-04-01 sfprintf Sffmt_t update
932698-02-14 fix aggressive freenode
932798-02-04 finally drop exstr*() for vmalloc regions
932897-12-07 preprint adjusts l count for %[doux]
932997-10-31 tweak INTEGER <=> auto conversions
933097-10-01 INTEGER is now Sflong_t
933197-08-11 add pathfind()
9332	 add '$' to identifier set
9333	 eliminate S2B at PROCEDURE level
933497-07-17 discipline interface (incompatible but only tw,cql affected)
9335	 add excc() to generate C expression code
9336	 drop exinclude()
9337	 add printf base param (%width.precision.base<format>)
933896-12-25 rearrange exparse.y to keep yacc and bison happy
933995-08-11 drop exseek(), add exstatement(), exrewind()
9340	 tune excontext()
934195-05-09 drop %token for tokens in %binary,%left,%right to avoid redef errors
9342	 add EX_CALL and EX_SCALAR to refval|getval|setval elt arg
9343	 excomp with sp==0 and fp==0 resumes from previous context
9344	 fix exseek()
9345	 loosen excast() restrictions
9346	 fix Oexparse.[ch] generation
934795-04-01 add solaris yacc bogus yyact index makefile workaround
9348	 fix switch newof() size=0!
934995-03-19 fix exstore() alignment bug
935095-01-11 prepare extoken.c for TRACE_lex==debug-level
9351	 add exseek() for backup
9352
9353:::::::: librecsort ::::::::
9354
935512-05-28 rskey.c: fix unsigned comparison to 0
935611-10-11 recsort.h,rskeyopen.c: RSKEY_VERSION=20111011, add Rsdisc_t* argument
935711-09-27 rsopen.c,rsmerge.c: drop obsolete VM_TRUST
935810-05-25 rskey.c: locale-ize Rskey_t.tab and key_m_code()
935910-04-22 rskey.c: 'C' codeer => 'E' to make way for posix -C
936009-12-09 rskey.c: add h option for key_n_code (IEEE 1541-2002 scales)
936109-05-11 rskey.c: add collation mbxfrm() overflow panic (yes I know)
936209-05-11 rskey.c: fix mbxfrm() return value logic
936307-12-14 rskey.c: fix mb fixed field offset >= 99 key gen
936407-10-30 rshdr.h: default INSIZE == PROCSIZE -- worth ~25% time!
936507-10-30 rskey.h,rskeyopen.c,rskey.c: honor locale collation order
936607-10-10 rskey.c: handle ascii signed zoned decimal (0x70 => negative)
936707-04-16 recsort.h,rskey.c: add RSKEY_KEYS
936806-12-15 rskeyhdr.h: increase MAXFIELD to INT_MAX
936906-07-17 rsprocess.c: re-key after RS_READ calout
937006-06-29 rsprocess.c: set obj key,keylen before RS_READ
937106-05-10 rsmerge.c: (car) caught 2 more missing RS_WRITE callouts!
937206-04-20 rsmerge.c: no RS_WRITE events for intermediate merge -- doh
937306-04-19 finally fixed multi-level merge v record format bugs
937406-02-14 recsort.h: always __EXPORT__ rs_disc()
937506-02-09 rstemp.c: sfset(SF_READ|SF_WRITE) not needed
937605-12-01 -lsync event callout bug fixes -- finally working?
937705-11-28 rswrite.c: honor RS_OTEXT
937805-11-09 rsmerge.c: fix RS_ITEXT+notify logic
937905-10-18 rsprocess.c: RS_READ callouts finally in the right place
938005-10-12 rstemp.c: keep temp write SF_WRITE and temp read SF_READ
938105-08-22 rsmerge.c: fix RS_WRITE callouts
938205-06-30 rsmerge.c: handle all RS_TEXT record formats
938305-06-28 add rsnew()+rsinit() to split rsopen() for rsfile*()
938405-06-27 rstemp.c: add temp file support and RS_TEMP_* events
9385	 rsfile.c: add input/output file open RS_FILE_* events
938605-06-11 rskey*.c: initialize disc->data via REC_*_TYPE macros -- doh
938705-05-15 handle disc->data Recfmt_t
938804-10-31 rsmerge.c: fix EOF detection
938904-10-15 rs-copy.c: add
939004-10-11 recsort.h: change int count to Sfulong_t count
939104-09-28 recsort.h: add { RS_TERMINATE RS_DELETE RS_ACCEPT RS_INSERT }
9392	 rsprocess.c,rswrite.c: initial RS_INSERT code -- not right yet
939304-08-11 rskeydump.c: list key.nproc if >1
939404-06-15 rsprocess.c: fix V format record read
939504-02-11 rskey.c: fix old ast reclen:fieldlen:offset parse
939603-10-11 recsort.h: add RS_IGNORE Rs_t.type hint
939703-09-18 rswrite.c: fix RS_WRITE exceptions
939803-09-06 rskey.c: add 'Z' key_z_code for zoned decimal
939903-09-04 rsprocess.c: rs->disc->data==-1 => ibm v format records
940003-09-03 rslib.c: rslib() separator expanded to [,\t\r\n]
940103-09-01 recsort.h: add rslib(), discipline stack, extra event arg
940203-08-29 recsort.h: add RS_READ and RS_WRITE events
940303-08-15 rskey.c: add -Jseed for random shuffle (jumble)
940403-05-27 rskey.c: add Ci[o] code set [conversion]
940503-05-26 rskey.c: add 'p' packed decimal (bcd)
940603-05-23 recsort.h: add Rskey_t.code for global ccode index
940703-05-22 rskey.c: handle -k.reclen -k.position.length
940803-05-21 recsort.h: add events mask to Rsdisc_t, change Rskey_t disc to pointer
9409	 rsnotify.c: add
941003-03-07 Makefile: generate dll for dr. ek
941103-01-21 rsmerge.c: fix typo that kicked in on large (~100K) record sizes
941201-01-01 recsort.h: _RSHDR_H => _BLD_recsort; should have been done years ago
941300-08-31 rskey.c: fix code() buffer off by one (too far)
941400-03-17 rskey.c: consult RLIMIT_DATA for size limits
941500-01-25 rskey.c: win32.i386 optimizer generates bad code for key_n_code
941699-11-19 rskeylist.c: add usage
941799-07-28 rskey.c: factor number of key fields into rs.disc.key
941899-03-03 recsort.h: add RSKEYDISC() to get Rskey_t.keydisc from Rsdisc_t*
941998-08-11 add rsmerge() write error detection
942096-12-25 add (ulong) for alpha 64 bit << bug (ahem..correct stdc interpretation)
9421	 add (int) for unsigned char subtracts
9422	 drop function __IMPORT__
9423	 use vmalloc() for all allocations
9424	 we're getting sick of bsd: <stdlib.h> has a radixsort() prototype!
9425	 unroll rs-rasp.c for the hp.pa compiler; don't trust it!
942696-10-31 sfio,dll update
9427	 drop MAXFIELD restriction by converting to linked list
9428	 add -k*a to accumulate fields from dup keys
942996-10-22 K&R cast cleanup
943096-10-17 iffe test for sizeof(long)==8
943196-10-15 oops -- regression test bug let rswrite() bug through
943296-10-11 all regression tests pass for all methods
943396-10-01 rskey discipline and eventf; remove libast dependencies
943496-09-20 rskey(kp,s,obsolete)
943596-09-18 first working version with -lsort (ok, so -c and -m don't work yet)
9436
9437:::::::: libsum ::::::::
9438
943912-02-29 sum-sha2.c: bitcount[] order reversed to allow a single noalias buffer copy
944009-09-28 sumlib.c: use simple (faster) method name match function
944108-06-05 sum-lmd.c: align context to largest int
944208-05-01 sumlib.c: add some -lmd verification checks
944308-02-11 sum-lmd.c,features/sum: add wrapper for solaris -lmd
944407-10-29 sum.h,sumlib.c: add SUM_LEGACY for legacy output format
944507-09-21 sum-sha1.c: reinstate Steve Reid's public domain implementation
944607-07-26 sumlib.c: drop GPL sum-sha1.c
944705-02-14 sumlib.c: split into sum-*.c
944805-02-14 sum-sha2.c: add SHA { 256 384 512 }
944904-02-29 Makefile: compile with $(CC.PIC) for codexlib/sum $(CC.DLL)
945003-12-16 add { crc prng } generic methods and maps[] to these methods
945103-12-16 sum.h,sumlib.c: add sumdata()
945203-09-29 sumlib.c: fix FNV to use ^ instead of +
945303-04-28 sumlib.c: drop md5 `zeroize' for performance
9454	 sumlib.c: add FIPS 180-1 SHA-1
9455
9456:::::::: libuu ::::::::
9457
945809-09-24 uulib: add cat method for mail sevenbit|7bit encoding
945903-01-07 uulib: check UU_HEADER in bx_header()
946001-03-27 uulib: add UU_LOCAL for local path conversion
946100-03-06 uulib: !UU_HEADER decode checks for candidate encodings
946200-03-04 uulib: add posix decode size check
946398-12-25 uu_encode: fix dp->fill usage
946498-11-11 uulib: add binhex encode
9465
9466:::::::: libvdelta ::::::::
9467
946812-02-14 vdelhdr.h,vdio.c: apply patch from philippe.bergheaud
946904-03-14 vdelta.h: #if !_DLL => #if !defined(_DLL) to handle empty value
947008/11/95 version 2.0 -- new delta layout but old update recognized
947104/24/95 back out of latest version -- incompatible deltas generated
9472
9473:::::::: libbz ::::::::
9474
947510-11-08 bzlib.[ch]: change bzReadGetUnused 3rd arg to void* for strict aliasing
947609-04-15 bzlib.c: add bzfopen()
947703-05-13 sfdcbzip.c: add SF_DBUFFER exception, SF_SHARE before sfreserve()
947802-02-14 blocksort.c: drop -O for msvc
947902-01-24 bzhdr.h: rename from bzlib_private.h for 14 char fs
948001-01-01 bzlib.h: add _PACKAGE_ast checks
948199-09-11 sfdcbzip: return >0 if discipline pushed
948299-07-17 sfdcbzip: don't free disc on SF_CLOSE
948399-03-17 split library from command, sfdcbzip.[ch]
9484
9485:::::::: libz ::::::::
9486
948707-11-29 sfdcgzip.c: add seekf() for first buffer rewind
948807-06-11 rename ARCH macros to ZLIB_ARCH to cut down namespace pollution
948907-05-09 Makefile: :INSTALLPROTO: zconf.h for win32 <ast_*> post edit
949007-01-25 zlib.h,gzio.c: add gzbopen() to handle buffered unseekable data
949107-01-25 sfdcgzip.c: use gzbopen() to handle buffered unseekable data
949205-07-25 __MVS__ tweaks
949305-03-21 snarf and merge zlib 1.2.3, drop gzseek64() gztell64()
949405-05-11 sfdcgzip.c: change return value to [cgv], add vcunzip read check
949504-02-14 sfdcgzip.c,sfdclzw.c: add SFDCNEXT()/SFDCPREV() calls
949603-05-13 sfdcgzip.c,sfdclzw.c: add SF_DBUFFER exception, SF_SHARE+sfreserve()
949703-03-13 gzio.c: eliminate fixed gzprintf() buffer size via sfio string stream
949803-01-20 zlib.h,gzio.c: add gzreopen()
949902-09-11 zlib.h: move 64 bit counts to internal_state
950002-08-05 add z_off64_t, gzseek64() etc. to preserve old binary interface
9501	 work around 2^32 file size limitations
950202-06-11 add uSize == unsigned _ast_intmax_t; fix header size check
950302-05-22 zconf.h: fix __32BIT__ logic
950402-03-11 infblock.c: apply double free patch
950502-03-09 gzio.c: add stream->fatal to mark fatal errors previously ignored
9506	 sfdcgzip.c: fix exception return values and mark SF_ERROR on fatal
950702-01-30 minigzip.c: error() => mgzerror() to avoid ancient ld dup sym error
9508	 minigzip.c: [uU] in executable base name => gunzip, otherwise gzip
950901-09-18 zconf.h: include <ast_std.h> for __IMPORT__ and __EXPORT__
951000-09-11 gzio: don't set verified=1 in check_header() for concatenation
951199-11-19 gzio: add missing _PACKAGE_ast
951299-09-11 sfdcgzip,sfdclzw: return 1 if discipline pushed
951399-08-11 gzio: fix gzread() z_err to keep Z_STREAM_END after check_header()
951499-07-17 sfdclzw: don't free disc on SF_CLOSE
951599-06-23 fix gzread/gzwrite to return -1 on error (fixes sfio disc loop)
951699-02-14 fix SFGZ_SETPOS to flush/sync for mode=='w' only
951799-02-04 add SF_CLOSE to output trailer before the underlying stream is closed!
951898-12-01 drop lzwWrite and lzwSeek in sfdclzw
951998-11-01 pushed stream buffer size is SF_BUFSIZE
952098-10-01 add SFGZ_GETPOS and SFGZ_SETPOS
952198-03-19 sfgzip => sfdcgzip
9522
9523:::::::: libcoshell ::::::::
9524
952512-02-22 coinit.c: handle non-identifier export var names
952611-12-13 cowait.c: handle sfpoll() error return on interrupt
952711-11-21 cowait.c: poll before blocking read to weed out killed jobs (no 'x' message)
952811-08-30 codata.c,coopen.c: drop macro "..." catenation for old cc
952910-08-11 coinit.c: force _BLD_DLL for environ intercept
953010-06-01 sync with ast api 20100601
953110-05-19 cokill.c: do cowait(co,co,0) to drain pending messages
953210-05-15 coshell.h,coopen.c: add CO_ORPHAN for PROC_ORPHAN
953310-05-11 coopen.c: add PROC_ORPHAN for CO_SHELL
953410-05-10 coopen.c: no atexit() for CO_SHELL
953510-04-15 first ksh93u local job pool tests work (service daemon tbd)
953610-04-14 cowait.c: add 3rd cowait() arg timeout; 0 Coshell_t* operates on all open coshells
953710-04-10 coshell.h: add CO_SHELL for shell using coshell!
953809-12-09 coexport.c: add runtime CO_ENV_EXPORT hook that avoids changing environ
953908-10-28 coopen.c: close write side of parent msgfd -- doh
954008-04-28 coexec.c: check for fd 1,2 equivalence before CO_SERIALIZE 2>&1
954107-10-29 coshell.h,coexec.c: fix procrun()/system() intercept logic
954207-08-15 add CO_SEPARATE,CO_MODE_SEPARATE for separate shell+wait per action
954307-04-09 Makefile: $(CC.PIC) to allow archive to be pulled into other dlls
954406-08-22 coshell.h: procrun => coprocrun, system => cosystem
954506-08-09 coshell.h: export CO_ENV_MSGFD for COSHELL=coshell
954606-08-02 coexec.c: Cojob_t.flags&CO_SERVICE for service requests
954706-08-02 cokill.c: cokill() signal==0 => kill CO_SERVICE jobs
954806-07-27 coexec.c: drop server cowait() that bypassed caller
954906-06-21 coexec.c: add non-block cowait() to drain responses
955006-06-11 fix service intercept cleanup
955106-05-24 add service=name:init lightweight service intercepts
955205-04-19 cowait.c: beef up invalid message tests and diagnostics
955305-04-11 drop fixed CO_MSGFD for $_coshell_msgfd
955405-04-07 coexec.c: fix !_lib_fork&&_map_spawnve close-on-exec redirection
955504-09-22 cowait.c: remove CO_SERIALIZE temporaries after listing -- duh
955604-09-01 co*: add CO_SERIALIZE
955704-07-22 system.c: access() => eaccess()
955804-02-11 coinit.c: fix CO_CROSS PATH initialization
955902-10-30 coclose.c: fix reference-after-free bug in coclose()
956002-01-31 codata.c,coopen.c: fix CO_MSGFD parameterization
956102-01-24 coopen.c: fix small memory leak
956201-10-26 coopen.c: hung sfclose(fp) -> close(sffileno(fp)) -- wow
956301-09-11 coinit.c: fix coident[] for ancient bsh that die on `test == 1'
9564	 coinit.c: and fix coident[] to weed out buggy ksh88i trap on exit
956501-05-31 co*: add CO_CROSS, expose CO_DEVFD
956601-04-23 coquote: add state.type to avoid getenv() overwrite on some systems
956701-01-01 cokill: killjob => cokilljob, killshell => cokillshell
956800-12-18 coinit: CO_OSH ? "${!-$$}" : "${!:-$$}"
956900-10-25 codata: $ZSH_VERSION is not ksh
957000-02-14 procrun,system: system(3) returns wait() status (not shell status)
957199-11-19 co*: add CO_OSH for bsdi lack of times(1)
9572	 coexec: CO_IGNORE for all but real ksh
957398-06-22 coinit: quote cd path arg
9574
9575:::::::: libcs ::::::::
9576
957710-06-01 sync with ast api 20100601
957810-04-12 Makefile: defer share and local generation to first use
957908-04-09 csopen.c: fix mkmount() path cleanup
958008-04-09 csopen.c: add debug=-1 mkmount() error message
958107-06-05 csclient.c: add CS_CLIENT_SEP
958206-09-19 css.c: sysconf() => astconf()
958306-08-15 csclient.c: fix prompt logic
958406-08-14 csopen.c: fix group=name logic
958506-08-04 csclient.c: fix CS_CLIENT_ARGV
958606-06-11 csclient.c: add
958706-05-31 csopen.c,cs.h: add csattach() for non-/dev/fdp/ streams
958805-02-04 Makefile: drop -lnetinet (for lynxos)
958904-07-22 csopen.c,cssend.c,csauth.c,cslocal.c: access() => eaccess()
959004-07-19 cslocal.c: call spawnveg() for standalone 3d
959104-03-25 csrecv.c,cssend.c: OPEN_MAX_CEIL => OPEN_MAX
959203-08-01 csdata.c: add NoF pure data workaround, drop const + prototyped
959303-03-28 msglib.h: add D_FILENO ifdef
959402-10-02 features/lib,genlocal.sh: add ssh, pid to hang warning
9595	 msglist.c: tmform() => fmttime()
959601-12-12 cssfd: CS_POLL_CLOSE now close()'s if not dropped -- double duh
9597	 csstat: change down test to avoid unsigned long overflow
959801-10-31 cssend,csrecv: use msg_accrights over msg_control
9599	 cspath: don't check /dev/fd/* -- duh
960001-05-11 csserve: sync cs.* with css->*
9601	 csspoll: handl cspoll() EINTR that doesn't set cs.interrupt
960201-01-01 cspoll: fix getmsg() flag arg
9603	 csaddr: fix local host addr initialization
960400-06-01 csopen: handle dynamic ip assignment underfoot
960500-05-11 csopen: handle /dev/tcp/local/9876/FOO/other
960600-05-09 cssfd: CS_POLL_WRITE implies O_NONBLOCK
960700-02-14 cschallenge(): add stat() to verify touch()
960800-02-03 features/lib: add sys/types.h to htons etc. header refs
960900-01-25 genlocal: use package instead of hostinfo
961099-10-07 csbind: NODELAY for CS_ADDR_NOW only
961199-09-22 cs*: add CS_MNT_TAIL for multi-char mount files
9612	 css: _UWIN workaround for st_ino verification
961399-07-17 csaddr: clear more state->flags bits to avoid prev csopen() carryover
961499-05-20 msg*: handle f_basetype and f_fsid for redhat 6.0 linux -- boo
961599-05-13 css: fix disc.wakeup logic
9616	 cspoll: add debug=6 poll trace
961799-04-23 csaddr: check for 127.0.0.[01] from hostname lookup == local
961898-06-29 cs.h: add Cs == (&cs)
961998-06-03 csserve: fix SIGCHLD exit bug
962098-02-14 csopen: add PROC_ZOMBIE for systems that don't fork() in csdaemon()
962197-11-27 csopen: /dev/tcp/*/inet.*/user for client inet.* authentication
9622	 css.h: add CSS_AUTHENTICATE for server inet.* authentication
962397-11-11 csread: add CS_RESTART to restart on interrupt
9624	 cslib: CS_AUTH_MODE for authentication file mode
9625	 cs.h: drop CS_SVC_SERVICE, add CS_SVC_SUFFIX
9626	 SERVICE.mk: executable name changed from server => `service'.svc
9627	 csopen: rm CS_MOUNT_PROCESS if no connect and pid invalid
962897-07-17 add css.h, csserve() on top of css
9629	 CS_INTERFACE=2 for thread safe state instead of global cs.*
9630	 cspoll(CS_POLL_WRITE) events cleared on write
9631	 csspoll(timeout,CSS_INTERRUPT|CSS_ERROR)
9632	 cs.h,msg.h: fix dll import/export
963397-05-09 cslib.h: check _hdr_netdb,_hdr_netinet_in,_hdr_netinet_tcp
9634	 features/lib: statvfs.f_fstr
9635	 msglib.h: <ast.h> before "cs_lib.h"
963697-04-01 csport: htons() done too soon
963796-12-25 genlocal: add correct nslookup query
9638	 fix sizeof(long)==4 assumptions
9639	 install genlocal and genshare in $(INSTALLROOT)/lib/$(ID)
964096-02-29 use <hashkey.h>
9641	 add csport()
9642	 drop CS_MOUNT_*; use csvar(CS_VAR_*,trust) instead
9643	 CS_VAR_PROXY ($CS_MOUNT_PROXY) names proxy connect stream
9644	 csopen() attempts proxy open on local failure
9645	 hold CS_PROC_FD_TST cssend() fds until next cssend()
9646	 csread(CS_LINE) really means 1 line
9647	 fix cslocal() and csopen() fdp initiate timing bug
964896-01-31 add warning to local rather than generate on install
964996-01-22 no <sys/uio.h> on linux (defined(MAX_IOVEC))
965095-11-11 trap 127.0.0.[01] local address alias in cspath() and csntoa()
965195-10-31 CS_MNT_OTHER '.' -> '#' to placate NT (trailing . ignored -- thanks)
965295-10-11 export -> coexport
9653	 add dirsize() to cslib.h
9654	 check _mem_d_reclen_dirent for d_reclen
965595-08-11 (done)(handle,EXIT_TERM(signal)) called on csserve() interrupt
9656		0 return ignores signal
9657	 csserve() now creates local auth dir if not there, duh
9658	 fix genlocal hostinfo timeout
965995-07-17 fix remote auth off by one error
966095-05-09 add linux /proc/<pid>/fd/<fd> to cssend()-csrecv()
9661	 add bsd4.4 msghdr.msg_accrights -> msghdr.msg_control mods
9662	 bsd4.4 thinks S_ISFIFO() and S_ISSOCK() are the same!
9663	 features/cs.c now uses sfio
966495-04-01 convert genlocal.sh to hostinfo
966595-03-19 bsd4.4 stole devname(), so use devpath() in cspath()
966694-12-15 csinfo("-",0) gets standard info
9667
9668:::::::: libmam ::::::::
9669
967010-06-01 sync with ast api 20100601
9671
9672:::::::: libpp ::::::::
9673
967412-06-06 ppline.c: preserve hosted sync even for normal sync
967512-02-29 pp.probe: handle predefined function-like macro definitions
967612-02-14 ppproto.c: fix "already noticed" logic
967711-08-30 ppproto.c: bump BLOCK to 16*1024 for (ppargs.c self-doc!)
967811-03-15 ppop.c: add ppok() readonly check for subset of ppop(PP_*)
967911-03-02 ppop.c,ppcontrol.c: use ppset() to handle readonly values
968010-09-01 RE errors => exit(2)
968110-09-01 ppcall.c: no disgnostic for 0 actual args for 1 formal arg
968210-06-29 ppargs.c: ignore -H<number> (hpux /opt/langtools/lbin/cpp.ansi)
968310-06-16 ppsearch.c: try parent prefix if -I- include search fails
968410-06-01 sync with ast api 20100601
968509-02-02 pp.probe,probe.win32: check for compiler supplied __FUNCTION__
968609-02-02 ppop.c: include pp_default.h/probe at end of builtin script
968709-01-20 probe.win32: elide #pragma comment.*linker.*manifest
968809-01-06 ppcall.c: fix macro definition overwrite bug -- I know
968909-01-05 ppcontrol.c: fix multiple include guard for #include outside guard
969008-12-07 pp.h,ppdata.c: fix ancient pptype and ppctype[] off by one
969108-11-15 ppsearch.c: '\\' => '/' in first step; msvc complains about '\\' in #line!!
969208-10-31 ppsearch.c: relax pp:nomultiple pedantry
969308-10-30 pplex.c: handle =#x S_CHRB|SPLICE bug
969408-05-11 ppproto.c: fix proto test 10 regression
969507-09-21 ppproto.c: add "Public Domain" to the noticed list
969607-08-11 probe.win32: add cl.exe setuid workaround, CC.VERSION[.STRING]
969707-06-12 pplex.c: finish -D:preserve logic update for imake
969807-06-07 pplex.c: handle -D:preserve S_CHRB splices
969907-06-04 ppsearch.c: only apply pp:chop ?old?new? if original not found
970007-03-11 add -D-Y pp:pedantic, PP_WARN macro formal parenthesis checks
970107-01-26 pp.def,probe.win32: add _WCHAR_T_DEFINED
970206-09-23 ppop.c: check -I <dev,ino> for c and TYPE_HOSTED|TYPE_VENDOR attrs
970306-09-23 pplex.c: add HOSTED check for "/* appears in // comment" -- doh
970406-09-05 pp.probe: add version stamp comment
970506-06-29 pp.probe: gcc pp:linefile probe (otherwise it can dump!)
970606-06-28 ppproto.c: fix inappropriate __PARAM__ insertion
970706-05-09 pp.tab,ppcontrol.c,ppproto.c: add externalize
9708	 ppfsm.c: handle compatibility ul numeric qualifiers
970906-02-28 probe.win32: add wchar_t probe
971006-01-11 pplex.c: fix rpcgen pp:passthrough header splice bug
971105-12-16 pplex.c: fix imake pp:passthrough comment splice bug
971205-09-16 pplib.h: add <string.h> for standalone proto
971305-07-31 pplib.h: finally trust __STDC__ headers
971405-04-11 pplex.c: fix '"a" #s' catliteral + stringize bug
971505-03-29 pp.probe: check $? and stderr messages for pp:lineid
971605-02-20 probe.win32: handle /platformsdk mount
971705-01-11 ppargs.c: fix -I-S docs
9718	 ppinput.c: ppproto() only for COMPATIBILITY or PLUSPLUS
971904-10-22 ppproto.c: handle `type var[x][y]' arg prototype
972004-10-01 pplex.c: really fix directive hidden newline logic
972104-08-31 pplex.c: fix directive hidden newline logic
9722	 ppcall.c: fix '(' peek bug that missed the MARK
972304-08-30 add pragma pp:pragmaflags PP_PRAGMAFLAGS, pp:system_header
972404-08-11 ppproto.c: intercept "#(define|undef) extern" for __(EX|IM)PORT__
972504-07-23 probe.win32: generalize #include dir order search
972604-07-22 ppsearch.c: access() => eaccess()
972704-05-20 ppproto.c: don't __PROTO__ `int fun __P((int));'
972804-04-15 probe.win32: sync up with uwin 2003-08-06 master -- oops
972904-04-01 pp.probe: add stdinclude usrinclude path cleanup
973004-02-29 ppproto.c: fix bug that skipped prototyped check during notices check
9731	 ppproto.c: recognize `Copyright nn'
973204-02-14 ppproto.c: comment[0]==0 => no notice
973304-02-11 Makefile: fix %.yacc to handle cross-compile
973404-01-28 pp.h,pplib.h,ppop.c: add PP_RESET to restore original pp.symtab scope
973503-12-12 ppcall.c: missing macro actual warned but expanded
973603-11-12 ppexpr.c: fix premature #if expression token strip
973703-06-21 ppproto.c: fix T_INVALID ? splice bug that did 0?val => 0?vaL
973803-06-10 ppargs.c: add -D-d and -D-m
9739	 ppargs.c: add gnu options { -dD -dM -imacros -include -lang-* -lint }
974003-05-19 pplex.c: fix stray SKIPMACRO bug
974103-05-18 ppcall.c: add SYM_FUNCTION '(' peek to avoid inappropriate ungetchr()
974203-04-30 pp:mapinclude hosted <std.h>="." will search only hosted dirs
9743	 pp.probe: add pp:mapinclude probe for namespace incursions
974403-04-29 ignore()=>ppmapinclude(), add pp:mapinclude
974503-03-25 ppop.c: PP_RESERVED now deletes old symbol before redef with lex value
974603-03-14 pp.probe: fix the #include_next probe
974703-02-28 ppsearch.c: fix -MM bug that missed prefix include hosted mark
974803-02-18 pplex.c: handle COMPATIBILITY \" and \' in macro actuals
974903-01-23 probe.win32: mingw32 tweaks
975002-12-17 ppargs.c: document -I-!
975102-12-06 -I- pp:noprefix otherwise pp:prefix default
975202-11-29 probe.win32: added __INTSIZE, drop dm pp:noallmultiple
975302-11-26 pp.def: add STDC_HOSTED
9754	 probe.win32: add C95 and C99 STDC predefined macros
975502-10-30 ppfsm.h: add boundary check to IDSTATE()
975602-10-18 probe.win32: update for mingw
975702-10-15 ppsearch.c: if PLUSPLUS && not found && no suffix then try with .h
975802-10-10 pplex.c: fix does not end with `newline' bugs
975902-10-01 ppop.c,ppargs.c: -I-I => -I-M with proper docs; -I-I for PP_IGNORE
976002-09-21 pp.probe: add pp:nocatliteral test
976102-09-10 pp.tab: add pp:passthrough to match -D-P docs
976202-08-30 probe.win32: fix for borland cc -E
976302-08-22 ppexpr.c: add __SOURCE__ and #match(string,pattern)
976402-06-25 ppproto.c: fix pragma search bug that stopped after 8 comment lines
976502-06-11 ppsearch.c: fix ... next include search to skip *all* intermediates
976602-05-28 probe.win32: updates for { mingw }
9767	 ppsearch.c: don't use inherited prefix for <...> -- duh
976802-05-24 ppcontrol.c: simplify getline() space canonicalization
9769	 probe.win32: updates for { digital-mars borland lcc }
977002-05-20 ppcontrol.c: update to use regsubcomp(),regsubexec()
977102-05-09 ppcontrol.c: inhibit `EOF in directive': newline warning will catch it
9772	 pplex.c: inhibit `newline in character constant' for hosted directives
977302-05-06 probe.win32: add more win32 compilers
977402-04-15 probe.win32: handle long long unsigned int
977502-04-12 ppproto.c: fix NOTICED check
977602-03-15 ppproto.c: fix cpp pp:compatibility double line sync memory fault
977702-03-11 pplex.c: add pp:modern to emit \a \v instead of octal forms
977802-02-14 ppargs.c: fix -D or -U as last arg core dump
977902-01-24 pplib.h: use vmalloc(Vmregion) if _std_malloc
978002-01-23 probe.win32: add more msvc predefined macro candidates
978102-01-14 ppproto.c: #pragma prototyped noticed -- has notice comment
978202-01-10 ppproto.c: fix PROTO_FORCE|PROTO_PASS bug that disabled PROTO_FORCE
978302-01-08 pplex.c: fix HEADEREXPAND|HEADEREXPANDALL logic
978401-11-22 pplex.c: add pp:headerexpandall for gcc vs. msvc <...> expand diff
9785	 pp.probe: add pp:headerexpandall test
978601-10-20 pplex.c: fix pp:splicespace inside "..."
978701-09-11 ppinput.c: use pathnative() for native fs representation
978801-08-31 pp.probe: handle -Dmacro(args)=value
978901-08-11 ppcontrol: fix ... and __VAR_ARGS__ for C99
9790	 ppsearch: fix SEARCH_NEXT bug that skipped the include stack
979101-08-06 ppproto: preserve #! first line for # comments
979201-07-17 gentab.sh: fix ksh test to omit pdksh (typeset -u fails)
979301-06-26 ppproto.c: fix another buffer boundary bug that didn't preserve OTHER
979401-06-06 ppsearch.c: list PP_FILEDEPS headers once
979501-06-01 pp.h,ppop.c,ppsearch.c: allow multiple PP_FILEDEPS (-M)
979601-05-24 pp.probe: fix pp:hostedtransition probe: only suncc can __STDC__==1?
979701-04-25 pp.probe: split macro probe files for compilers that have #line limits
979801-04-19 pp.h,pplex.c,ppproto.c: fix { \a \E \v } EBCDIC translations
979901-04-16 pp.tab: add pp:splicespace for mvs jcl decks -- the 60's live on
980001-04-13 ppbuiltin: add __FUNCTION__ cache for functions that span the buffer
980101-03-08 pp.tab,ppbuiltin,ppcontrol,probe: add pp:hostedtransition
980201-02-22 pp.tab,ppfsm,pplex,pp.probe,probe.win32: add pp:zeof for ^Z => EOF
980301-02-14 ppcall.c: fix macro(tuple*) bug that truncated macro arg expand buffer
9804	 pplex.c: fix # inside pp:pragmaexpand
9805	 gentab.sh: change ksh test for openbsd /bin/sh
9806	 ppproto.c: fix buffer boundary bug that lost call nesting
9807	 ppproto.c: add realloc prototype and memcpy=>memcopy strcpy=>strcopy
980801-02-09 ppsearch.c: fix another pp.include null dereference
980901-02-07 ppcall.c: fix stack inequality checks
9810	 ppcall.c: handle trailing \ in macro args
981101-02-06 fix readonly buffer write (cpp test 07:2873)
981201-02-04 fix -M* to properly handle .cxx .cpp .C input
9813	 fix IN_BUFFER pop bug that did not reset the token pointer
981401-01-01 pp:headerexpand: space ok if not IN_MACRO
9815	 ppcall: hide if IN_FILE|IN_MACRO|IN_EXPAND
9816	 pplex: don't complain about ^L or ^Z as last char in file
9817	 ppsearch: fix #include <.../foo.h> loop
9818	 ppcontrol: manulally increment IN_RESCAN error_info.line
981900-12-25 add EXPOSE to expose hidden macros (for #import ...)
9820	 probe.win32: add cc path *and* args to first line to avoid hash clash
9821	 pp.probe: filter out invalid symbols for predefined macro scan, duh
9822	 pp:headerexpand: limit expansion to IN_MACRO
982300-10-31 __STDC__==0 if HOSTED && _UWIN
982400-10-26 pplib.h: change SEEK_SET to O_RDONLY for aix
982500-10-17 pp.probe: __IMPORT__ => __STDPP__IMPORT__
982600-09-18 add __FUNCTION__=#(FUNCTION), #define <a b> c
9827	 pp.probe: add probe_longlong
9828	 probe.win32: add #define <long long>
982900-09-11 add pp:noproto (NOPROTO pp.option) to disable ppproto()
983000-09-01 ppproto: fix buffer slide bug
983100-08-11 pplb.h: check for <unistd.h> already included for PROTOMAIN
9832	 pragma: add pp:pragmaexpand to expand pragma args
9833	 ppcontrol: always disable pp:* pragma expansion
9834	 ppcall: fix pp:hide buffer clash
983500-06-01 pplex: fix "\\U" and "\\u"
983600-05-22 ppsearch: fix uwin #include <C:/foo/bar.h>
983700-05-16 probe.win32: update reserved word list
983800-05-09 ppcontrol: fix C++ macro >+> invalid fuse
9839	 ppcontrol: 'macro' expansion only for COMPATIBILITY | TRANSITION
9840	 c9x: up to date with proposed standard
984100-04-01 pp.tab: add allpossible and ALLPOSSIBLE
9842	 ppmacref: fix ref inside literal catenation
984300-02-14 pppopen(): general comments with "bme" (begin middle end) string
984400-01-11 pp.probe: hosttype now in C.probe
984599-11-19 is[a-z]*( => ppis[a-z]*(
9846	 ppproto: "..." [A-Z_]+ "..." ignores [A-Z_]+ if PROTOMAIN
984799-11-11 ppproto: use astlicense()
984899-10-31 ppproto: add PROTO_SHARP, update license parse
9849	 pplex: fix some MARK bugs seen by #define X "A B <C@D>"
985099-10-01 add pp:stringsplit for "...\\n..." => "..."\n"..."
9851	 add pp:lineid to match PP_LINEID
985299-07-17 ppbuiltin: fix getline() canon spacing for numbers
9853	 ppsearch: fix FILEDEPS not found \\n print
9854	 pplex: fix spurious FILEDEPS '.' empty character constant message
9855	 ppargs: fix usage error call and error_info.id default value
9856	 ppproto: fix up copyright notice for ksh93 style .author file
9857	 ppproto: check if notice text if file path
985899-06-02 ppproto: add __MANGLE_package_DATA__ & __MANGLE_package_FUNC__
985999-05-26 ppcontrol: all pragmas but prototyped need pp:
986099-05-25 ppargs: long options
986199-05-22 ppproto: changes for full ast vs. PROTO_STANDALONE
986299-05-09 ppinput: add #pragma pp:native and (pp.option&NATIVE) for native paths
986399-04-22 ppproto: finish type=open notice
986499-02-11 #define __STDC__ #(STDC); demote __STDC__ to 0 for HOSTED (thanks sun)
986599-02-04 pplex: joined strings separated by \\\n
986699-01-11 probe.win32: add _UWIN predef
986798-10-20 pplex: a few more (HOSTED|RELAX) checks
9868	 -D:preserve throws a bunch of stuff -- great for imake (yuk)
986998-05-11 pplex: fix "..." \n off by one line count
987098-02-14 ppcontrol: fix HEADEREXPAND missing NUL
987198-01-23 ppproto: add _GNUC_ to _WIN32 check
9872	 ppfsm: don't optimize for hp.pa
987397-11-11 ppcontrol: fix recursive use of pp.hdrbuf for HEADEREXPAND
987497-10-31 ppmacref,pp.h: add ppmacref sum arg -- some parts assumed it!
987597-10-01 pplex: loosen HEADEREXPAND check
987697-08-11 pplex: fix COMPILE pplex() bug that did not reset NEWLINE for S_MACRO
9877	 pplex: PP_PRESERVE does not pp.pragma <token> ... # <pragma-stuff>
9878	 pp.def: add UWIN
9879	 ppcall: fix macro actual arg error checks
988097-07-17 ppproto.c: C++ __INLINE__ prefixed with extern __MANGLE__
9881	 ppop.c: fix PP_RESERVED T_* lookup
988297-05-09 pp.def: add MVS :architecture:
9883	 ppfsm.c: change C_* pseudo codes to not clash with ebcdic
9884	 pp.probe: fix stdc.$src sed script
988597-04-01 ppcontrol.c: fix tokop() for PP_RESERVED
988696-12-25 add ms #@ charize to complement # stringize
9887	 pp.probe now detects preincludes
9888	 ppproto: allow #ifdef'd function definions before {
9889	 ppproto: NoN() is not a function
9890	 pp.key,ppkey.h: add int64
9891	 ppargs.c: fix -M{DGM}*
989296-12-06 add pp:headerexpand for ms that expands macros in expanded <...>
989396-10-31 a few more line sync tweaks for EDG C++
989496-10-11 fix pp:macref off by one for standalone pp (big suprise)
989596-10-01 -D:macref -D-L -> #line (n-2)\n#pragma pp:macref ...
989696-08-11 fix transition macro expansion
9897	 compatibility \" or \' does not start quote
989896-02-29 use <hashkey.h>
9899	 drop ungetchr() in ppcall that modified macro values
9900	 tighten the DEBUG PANIC case in ppcontrol.c
9901	 unify #architecture() and #machine() probe
9902	 add POSIX,WIN32,X86 to pp.sym
9903	 tweak pp.probe
990496-02-14 pp:noallmultiple works on hosted files too
9905	 fix #define /* EOF loop
990696-01-31 fix ## as arg to stringize macro to have ## value, not #
9907	 add nonstopux and SYSTYPE_SVR4 to pp.def
990896-01-01 AT&T Research now
9909	 fix catliteral line sync line number bug
9910	 ppproto() converts non-directive <num>u to (unsigned)<num>
9911	 switch to <regex.h>
991295-10-31 fix PP_COMPILE PP_TRANSITION bug that didn't allow space before #
9913	 fix PP_TRANSITION \newline in definition complaint
991495-10-11 fix ppproto() PROTO_PLUSPLUS bug
9915	 change ignored pp.incref PP_SYNC_POP to PP_SYNC_IGNORE
9916	 add PP_PEDANTIC to handle gnu oversights (can't beat em ...)
9917	 add memfatal() call
9918	 relax newline in quote semantics
9919	 proto inline -> __INLINE__
9920	 fix __INLINE__ proto def for __GCC__>=2
992195-08-11 pp:preserve for easel (aka IFS) and imake
9922	 fix pp:reguard ## macro output
9923	 fix MARK PANIC with CATLITERAL
9924	 PP_INPUT *.(s|S|as|AS|asm|ASM) implies pp:nocatliteral pp:spaceout
9925	 ppargs() can't use isid() until after FSM_INIT
9926	 -D#... for assert, -D%... for directives
9927	 __STRICT_ANSI__ && __GNUC__ requires -pedantic for PP_STRICT
9928	 #include <.../x> for include_next
992995-05-09 fix tokop() bug that concatenated adjacent strings
9930	 don't concatenate directive string literals in proto
9931	 split pp.mode into pp.mode and pp.option
9932	 restrict pp.probe hostinfo output to the first token
9933	 fix EOB/EOF pplex() nonterminating loop
9934	 unused var cleanup
9935	 add pp:reguard to emit #define and #undef (for C++ templates)
9936	 add a few ppproto '\r's for NT
9937	 fix T_BUILTIN ppsymbol -> ppsymkey pun
9938	 fix pp:stringspan `#define x "' hang
993995-04-01 fix pp:hide for macros defined before the hide
9940	 fix pp:map getline space canonicalization
9941	 fix proto `<digits>[uU]'
9942	 proto does // comments by default (fixes bug introduced 07/17/94)
9943	 proto does "..." "..." string literal concatenation
9944	 spice up proto copyright comments for nonexclusive license
9945	 add hosttype assertion
9946	 fix proto `typedef type fun(args)'
9947	 proto copyright finishing touches
9948	 fix overzealous "empty character constant" message
994995-02-14 pp:nopredefined probe info defines are now pp:builtin
9950	 clean up pp:hosted conflicts
9951	 tighten up unknown directive warning
9952	 PP_INPUT *.(s|as|AS|asm|ASM) implies pp:nocatliteral pp:spaceout
9953	 change newof(0,char,n,0) to newof(0,char,0,n) if 0 init not needed
9954	 don't emit unkown directives inside #if 0 ... #endif
995595-01-19 *strict-* does not force STRICT
9956	 token##null-last-variadic-arg consumes token (to match gcc)
9957	 variadic actuals call be one less than arity (to match gcc)
9958	 fix PLUSPLUS digraph bug that lost comment state
9959	 tighten up PLUSPLUS //, /*, */ interaction warnings
9960	 macro formals in "..." for COMPATIBILITY|TRANSITION
9961	 macro formals in '...' for COMPATIBILITY|TRANSITION|!STRICT
9962	 STRINGSPAN allows '\n' in '... too
9963	 add PP_SYNC_* flags for pp.incref arg 3
9964	 add PP_SYNC_INSERT for invented file references
9965	 fix C++ fsm bug that popped out of comment in // /* */ ...
9966	 PP_INPUT *.(s|S|asm|ASM) implies pp:nocatliteral pp:spaceout
996795-01-01 avoid string literal concatenation in pp.probe #if #predicate() tests
9968	 fix pplib.h memcpy,strncmp PROTOMAIN prototypes (its a nop tho)
996994-11-11 fix readonly memory reference in refill
9970	 add C++ digraphs (digraph = --trigraph)
9971	 add C++ T_EXPLICIT -- did dos take over C++?
9972	 fix improper ppproto() C++ __PARAM__ expansion
997394-11-01 allow #include string header arg concatenation (yes, its not ansi)
9974	 #macdef macros are recursive
997594-10-01 fix C++ } loop in ppfsm/refill
9976	 T_NOISES consumes symbol and optional paren group
9977	 __builtin_* T_NOISES by default
9978	 fix "..." "...MARK..." join
9979	 fix STANDALONE */*comment*/
998094-09-11 fix pp.probe cp+strip with chmod u+w
998194-08-11 add -I<vdb-archive> to handle pax -x ppar header archives
9982	 fix -D-Q header checkpoints
9983	 add `pp:chop prefix' to chop prefix/ from include prefix/*/*
9984	 add pp:keyargs for key=value macro formals/actuals (not for C!)
998594-06-01 fix ppcontrol/tokop() that botched pp:id, etc.
9986	 add pp:plussplice to handle cfront // \<newline> ignorance
9987	 inhibit trigraph conversion for pp:compatibility, duh
9988	 new C++ keywords enabled by pp:keyword
9989	 proto: int fun xxx((yyy)) is macro call, not decl
9990	 fix !ALLMULTIPLE pp:load to SKIP between duplicated line syncs
9991	 fix PP_DUMP for pp:noallmultiple, optimize pp:load format
9992	 fix CPP CACHEOUTX() buffer boundary bug
999394-04-01 drop warnings for -X*
9994	 fix ppproto() %% in comment bug for yacc proto
9995	 PP_COMMENT now truncates comments to MAXTOKEN-4
999694-03-01 no pp:truncate for #pragma pp:macref
999794-01-01 fix STANDALONE+PP_TRUNCATE fsm macro bug
9998	 drop __VOID__ from ppproto.c
999993-12-01 release
1000093-11-11 fix PP_COMPILE+PP_TRUNCATE=8 bug for continue,unsigned,etc.
10001	 add PP_LINEBASE for compilers that botch long line sync paths
10002	 fix #if unsigned promotions
10003	 aggressive interactive line splice flush
10004	 fix #else inside multiline null dereference
10005	 fix "..." newline space # COMPATIBILITY CATLITERAL bug
10006	 fix m(a)b compatibility token pasting [cpp/test/ess.01.c]
10007	 fix nested @X mark bug [cpp/test/net.02.c]
1000893-10-11 add FSM_COMPATIBILITY for floating point hex -- yo ansi, anybody home
10009	 add #else if|ifdef|ifndef for COMPATIBILITY but with warning
10010	 drop PP_HOSTED, add ppop(PP_CDIR|PP_HOSTED,"-",n), -D-I for pp:cdir
1001193-10-01 add pp:opspace to tokenize <binop><space>= to <binop>=
1001293-08-11 drop ancient BCD constant (`...`) detection -- wake up cfront
10013	 fix PP_TRUNCATE macro fsm bug that missed some expansions
10014	 fix stringize bug that choked if space preceded #
10015	 fix <function-like-macro> <identifier> bug that omitted space
1001693-07-17 minor transition mode fix for string concatenation
10017	 fix standalone macdef line sync buffer bug
10018	 pp:noline turns off linesync, pp:line restores it
1001993-06-22 add pp:prefix to control prefix include compatibility
1002093-04-01 use probe_verbose in predefined symbol probe
1002193-03-11 close fd after last file block read -- relaxes open fd limit
10022	 remove pp.control nesting limit
10023	 add `#rename old new'
10024	 __STDC__ not defined for plusplus (until they figure it out)
1002593-01-22 fix ansi macro args recursion bug
1002693-01-11 fix '\377'<0 for signed char compilers
10027	 add RELAX for __STDPP__directive directives
1002892-12-25 fix #include guard test that omitted IN_tokens for CPP=1
1002992-12-11 fix pp:truncate for STANDALONE and COMPILE
10030	 fix pp:allmultiple again!
1003192-11-30 add pp:final, pp:initial
10032	 add __STDPP__directive and #(directive) as ??= alternative
10033	 relax obsolete macro expand warning for _xxx||xxx
10034	 retain quoted \newline when PP_LINEID != ""
10035	 fix CATLITERAL hidden newline line sync
1003692-11-11 fix COMPATIBILITY EOF in macro arg list and # in macro body
10037	 fix [?\] on 4K buffer boundary bug that lost next refill()
10038	 fix ppproto bug that botched -ih comments
1003992-10-31 fix standalone -C bug that duplicated output buffer
10040	 add pp:stringspan to handle gnu "<newline>" extension
1004192-10-12 fix T_X_GROUP asm bug
10042	 allow `#define a "b' pp:compatibility hack
1004392-08-11 add PP_PLUSCOMMENT, pp:pluscomment probe
10044	 add #(default v,d) #(empty v) #(iterate m,...)
10045	 compatibility allows #define f(a,,b) for 2 args!
10046	 probe now handles gcc -E -g3 to get gnu predefines
1004792-07-17 fix pp:multiple again, fix ppproto() out of bounds
10048	 PP_STANDARD is always PP_CDIR and PP_HOSTED
1004992-07-11 add #import and #include_next probes
1005092-06-11 fix bug where comments dissappeared after disabled macro in standalone
10051	 COMPATIBILITY macro recursion bug fix may cause some to be missed
10052	 PP_MACREF or -D-L- ignores #line until #line with file arg
1005392-06-01 add pp:ignore
10054	 fix probe of stdpp to handle -I[-+][CH]
1005592-05-11 add pp:hide <id>, pp:note <id>, noticed(<id>), exists(<...>)
10056	 add defined(__STDPP__<pragma>) feature test
10057	 add PP_CDIR, pp:cdir for C++ extern "C" { ... } include wrapping
10058	 pp.probe now handles predefines with values other than 1
1005992-04-11 add inverse proto (K&R -> prototype) to ppproto
1006092-04-01 release
1006192-02-29 #include <...> inside <xxx.h> gets next xxx.h on -I list
10062	 non-libpp generated symbols containing ' ' are not truncated
1006392-02-11 conversion to new lexer brings time close to reiser (esp. w/gcc -O)
10064	 combine standalone (ppcpp) tokenizing (pplex) and proto lex tables
10065	 recode ppproto for standalone operation via PROTOMAIN
10066	 add PP_NOHASH for PP_COMPILE front ends that rehash T_ID anyway
10067	 delete PP_NOQUOTE
10068	 delete #option(strict) test in probe in favor of non-hosted warnings
10069	 add unsigned to ppexpr()
1007091-10-11 add pp:truncate <len> for non-flexname compilers
1007191-09-11 fix ppproto aggression on f(*y); -> f __PROTO__((*y));
1007291-08-11 switch seterror() to error_info.*
10073	 add pp:linefile to force file name in line sync
10074	 add pp:spaceout for probed compilers that don't allow pp override
1007591-06-11 fix ignored -I/usr/include bug
1007691-04-11 set SYM_INIT in pp.macref for -U on cmd line
1007791-01-31 replace pp:pragma and pp:directive with pp:map
10078	 replace #assert and #unassert with #define #... and #undef #...
10079	 #assert and #unassert compatibility retained via pp:map
10080	 replace -D#directive with -D%directive (because of #assert change)
10081	 add pp:splicecat for \<newline> #define token paste
10082	 fix \<newline> bug that added space in COMPATIBILITY quoted strings
1008390-12-11 fix #pragma pp:multiple
1008490-11-11 generalize handling of non-standard keywords for COMPILE
10085	 replace pp:identifier/PP_IDENTIFIER with pp:reserved/PP_RESERVED
10086	 pp*keys* -> ppkey
10087	 add PP_NOISE
10088	 (gag) handle msdos paths by changing \ to / and retrying on failure
10089	 (gag) handle msdos :> operator by pplex() '+' return
10090	 add #pragma prototyped and ppproto.c for prototype conversion
10091	 add unsigned long arg to PP_MACREF for hashed macro arity+value
1009290-10-11 0f is not a float constant
10093	 change -I-M to -I-I, file just lists include files to be ignored
10094	 fix ppprobe for __STDC__==0 hybrids
10095	 add pp.flags and PP_[a-z0-9]+ for exported state info
1009690-10-01 fix standalone ppmacref for directives
10097	 add `try' to C++ keywords
10098	 fine tune a few COMPILE error messages
10099	 privatize pp.h
1010090-08-11 use opt_again in cmdargs() option parsers
10101	 (gag) add pp:macref macro reference pragma to handle CC preprocessors
10102	 (gag) add pp:spaceout to handle ansi + asm hacks
1010390-07-17 remove spaces from macdef line sync (blew sun cc)
1010490-06-11 add internal ppsymkey to avoid ppsymbol.value pun for SYM_KEYWORD
1010590-05-01 fix catliteral bug of `"..." << ' -> `"..." <='
1010690-04-01 fix `ifndef-define-endif' include wrapper test
1010790-03-27 add setpreroot() to ppop() [ sleazy but well hidden ]
1010890-03-22 pp.macref called for all undef's
1010990-03-20 add <prefix>cpp checks to ppprobe
10110	 add pp:hostdir before pp:include in ppprobe
10111	 fix PP_HOSTDIR op with no dir arg
1011290-03-15 System V CCS compatibility update
10113	 add PP_ASSERT
10114	 add -A for PP_ASSERT and -YI,dir for PP_STANDARD
10115	 add ppincref.c and -H to use it
10116	 -Xa defines __STDC__ to 0 (gak)
1011790-03-09 duplicate macro formals cause level 2 error
1011890-03-01 add #(ARGC) for (variadic) macro arg count
1011990-02-11 fix line sync number bug in pppush()
1012089-12-01 ignore leading = in pragma map for old pragma compatibility
10121	 check for NEWLINE on first macdef line sync
1012289-11-11 add -1 arg to pp.incref -- include skipped
10123	 STRICT 0x7e-macro is T_INVALID per standard
1012489-10-31 put all C keys in ppckeys.c, C++ keys in pppkeys.c
10125	 add pp:identifier pragma to selectively undo PP_COMPILE keywords
10126	 add tokop() to ppcontrol to support multi-valued pragmas
10127	 add #ifndef...#endif include optimization for STRICT
1012889-10-27 use REF_NORMAL, REF_IF, REF_UNDEF for pp.macref arg2
1012989-10-17 fix c(x)y compatibility pasting bug
10130	 #line 1 "f" now marks "f" included
1013189-10-11 enable -I. during initialization
1013289-10-01 inhibit pp:linetype syncs for top level #line directives
10133	 ----- see HISTORY -----
10134
10135:::::::: libcodex ::::::::
10136
1013710-01-15 code-uu.c: add uu-base64-string to encode with no newline separators
1013809-06-26 codex.h,codex.c: add Sfio_t* Codex_t.op for open/close/read/write apis
1013908-05-23 code-qp.c: avoid isprint()/iscntrl() for CC_NATIVE==CC_ASCII
1014007-09-26 code-uu.c: uu_sync() => flush() for encode only -- doh
1014107-09-22 code-uu.c: fix uu_read() partial reads
1014207-09-22 codex.c: handle PASSPHRASE=* as documented
1014307-09-22 codex.c: handle quoted parameter values
1014406-08-23 code-uu.c: fix remainder output *and* input bugs
1014505-09-25 add '^' equivalent to '|'
1014604-02-14 codex.c: SFDCNEXT() and SFDCPREV() now provided by <sfio_t.h>
1014704-01-11 codex.c: top level composition parse, handle CODEX_INVERT
1014804-01-10 codex.c: use CODEX_FLUSH to disable SF_SYNC before initf
1014904-01-09 prepare codex.h for possible { decodef encodef } addition
1015004-01-04 codexcmp.c: fix return value to match strcmp(3)
1015103-12-30 codexmeth.c: case-sensitive match on qualified name
1015203-12-26 add CODEX_OPTIONS='trace=method-name-pattern debug'
1015303-12-25 codex.c: pop intermediate disciplines on error
1015403-12-22 add "RETAIN" option for CODEX_RETAIN
10155	 add "SIZE=size" and alternative codexsize() for expected output size
1015603-12-18 add to ast -- still working on relationship with { -lvcodex -lz -lbz }
1015703-12-16 codexlib.c: add cache to codex()
1015803-12-15 { rot13 qp uu iconv } working
1015903-12-11 first code
10160
10161:::::::: libdss ::::::::
10162
1016312-06-15 dssopt.c: fix bug that failed to provide closing ]
1016412-05-31 dssopt.c: handle optegt() style descriptions
1016512-05-15 cx.h: add CX_DEPRECATED
1016612-05-15 cxopen.c: handle nested structs
1016712-02-29 cxopen.c: add "hex" details for external buffer representation
1016811-10-07 dssopen.c: use generic dll_lib() to load methods
1016911-09-11 cxmap.c: fix cxsub() to cast <=> string if necessary
1017011-09-11 add <MAP><PART><EDIT>ed-style-substitute</></></>
1017111-09-11 dssprintf.c: add edit=<del>from<del>to<del>[flags]
1017211-09-11 cxopen.c: add edit() builtin
1017311-09-10 cxopen.c: add cxcvt()
1017411-09-07 dssprintf.c: fix if/else nesting -- ouch
1017511-08-22 add cxsizeof()
1017611-08-22 add sizeof(var), typeof(var), type==type, type!=type
1017711-08-19 add DSS_BASE for base methods (with dynamic schemas)
1017811-08-19 dss-print.h: add --all to list name/value for all fields
1017911-08-18 cxeval.c: (cx->test&0x0100) enables code trace
1018011-06-21 cxcomp.c: fix back() on empty input stack logic
1018111-06-15 dssmisc.c: add "< expr-file" expression to dsscomp()
1018211-06-15 dss-scan.h: add "< list-of-files-file" argv to snan_beg()
1018311-06-15 dssopen.c: dsslib() scan invalid plugin is just a warning
1018410-05-04 dssopt.c: check for '[' usage in description, drop [+PATH?...]
1018510-05-01 cxopen.c: document string type format details
1018610-04-22 dssprintf.c: %(:details:)s for default %s details
1018710-04-22 dssopt.c: handle dss default method special cases
1018810-04-22 dssprintf.c: treat { %d %ld %lld %Ld } as intmax_t
1018910-04-22 add (type)var and (type)lib::fun() casts
1019010-04-22 add lib::fun and lib::type plugin lib bindings
1019110-04-22 fix unary ! logic bugs
1019210-04-22 add Dsslib_t.variables variable/function table
1019310-04-21 dssprintf.c: allow expressions in %(...)c
1019410-04-15 add string=>number CX_CAST callout for stringvar op number
1019510-04-15 add lazy lookup for self-describing data { e.g. xml json }
1019610-04-08 dssopen.c: name=="method::..." is schema here doc
1019708-06-24 dss.h: add per-Dssfile_t vm
1019808-06-17 cx.h: add Cxtype_t* arg to Cxmatchexec_f for delayed eval
1019908-05-08 cxopen.c: fix number_external() width logic
1020007-11-28 cxcomp.c,cxmap.c: fix num=>str cast logic
1020107-10-26 cxcomp.c: fix s="S"; print(s,s) cast bug
1020207-10-25 cxcomp.c: pretty up CX_DEBUG instruction code trace
1020307-10-01 dss.h: add void* Dssfile_t.caller caller defined handle
1020407-09-27 cx.h: add CX_HEADER_INIT for sun4 K&R
1020507-09-24 cx.h: add Cxvariable_t.header.index set by cxaddvariable()
1020607-09-21 dss-return.h: document it via return_beg() -- doh
1020707-09-20 dssopen.c: fix dss var initialization base type loop
1020807-09-06 dssopen.c: add dss-return.h
1020907-09-06 cxcomp.c: handle ()?{}:{...}
1021007-09-05 cxopen.c,cxcomp.c: handle (<string> op <fundamental-integer>)
1021107-04-02 dssfile.c: handle empty compressed file peek
1021207-01-17 dssfile.c: sfdcpzip() => sfdczip()
1021306-12-04 dssopt.c: add full type description to dssopt()
1021406-10-11 add sfstruse() error checks
1021506-02-14 dss.h: always __EXPORT__ dss_lib()
1021606-02-02 dssopt.c,dss-print.h: add \fprint\f default print format
1021705-09-14 dssopen.c: prevent libraries dict double queue insert
1021805-05-09 cx.h: add CX_QUOTEALL
1021905-03-08 dss.h: add dssstatic() for static Dsslib_t loading
1022004-10-20 dss.h: add dssget() dsstype() dssvariable() dsssave() dssdrop()
10221	 dss.h: add Dssformat_t.savef Dssformat_t.dropf
10222	 dss.h: add Dsstype_t Dssvariable_t
1022304-10-11 dss.h: add Dssformat_t.seekf, dssftell(), dssfseek()
10224	 dsslib.h: add Dssfile_t.seekf, dss_no_f*()
10225	 dssfile.c: add dss_no_f*()
1022604-08-24 tag.c: fix malformed input 0 pointer deref
1022704-05-19 tag.h: add Tagframe_t.attr and TAG_ATTR_conv
1022804-05-12 dss.h: add DSS_FORCE
1022904-05-06 cxopen.c: fmtquote() possibly binary message data
1023004-05-04 cxopen.c: number_internal: \0 => 0 is ok
1023103-09-23 add dss.file,dss.format,dss.offset,dss.record
1023203-09-22 cxopen.c: {library::query ...} searches for query in library
1023303-09-03 dssopen.c: dsslib() separator expanded to [,\t\r\n]
1023403-08-11 dssprintf.c: add %(field:quote=qb:endquote=qe:shell:escape:opt:wide)s
10235	 dssprintf.c: check variable/type format for ll hints
10236	 cx.h: add CX_STRING|CX_NUL for string that may contain '\0'
10237	 tag.c: fix tag data leading and trailing space removal
1023803-08-08 tag.c: handle &#00; values
10239	 dss-scan.h: dssfopen() errors ok, will be caught at exit time
1024003-05-28 cxopen.c: check format.code and do the map in cxcast()
1024103-05-14 dss.h: add dssformat() macro
1024203-05-05 dss-compress.h: add bzip docs
1024303-04-30 dssprintf.c: check for printf io errors -- duh
1024403-04-29 cxcomp.c: fix stack depth logic to include function formal arguments
1024503-04-15 dssprintf.c: fix signed/unsigned overflow check
1024603-04-05 cxmap.c: default delimiters: read { | + }, write { | }
10247	 cxcomp.c: propagate parse() var for string conversion
10248	 dssprintf.c: avoid possible floating point underflow/overflow
1024903-03-27 dssprintf.c: verify that each format spec has (variable)
1025003-02-28 cxcomp.c: handle (foo)||(bar)
1025103-02-21 cx.h: add Cxvariable_t.Cxarray_t and Cxvariable_t.Cxstructure_t
10252	 dssprintf.c: catch omitted format char
1025303-02-20 cx.h: add Cxformat_t.fixedpoint
10254	 dssopt.c: add method name+description to fields output
1025503-02-19 dss.h,dsstags.c: add <PRINT>format</> for default {print} format
1025603-02-18 cxopen.c: fix externalf buffer extension
1025703-02-17 dssfread.c: dssfread() file->flags|=DSS_FILE_ERROR on readf error
1025803-02-14 dssopen.c: dss head query should not be parent
10259	 cxcomp.c: peek() now skips over isspace()
10260	 cx.h: add Cxtype_t.Cxtype_t*fundamental for fundamental representation
1026103-02-11 cxopen.c: change cx em and rm from Vmbest to Vmlast
1026203-02-11 cxeval.c: execute() optimizations
1026303-02-07 add Cxpart_t.type and <MAP><ITEM><PART><TYPE>
10264	 tag.c: rework <#TABLE#> to handle embedded <#INCLUDE#>
1026503-02-06 dss.h,dssopen.c: add dssrun(), split static queries into dss-*.h
1026603-02-05 dssfile.c: (*identf)() < 0 means reject input file
1026703-01-28 cx.h: add Cxtype_t.Cxmember_t* for member info ala Cxmatch_t
10268	 cx.h: add Cxtype_t.Cxreference_t*
1026903-01-27 cxopen.c: use <ast.h> base64encode()/base64decode()
1027003-01-25 cx.h: add Cxformat_t.description for format details
10271	 cx.h: change cxnum2str() prototype for error detection -- duh
1027203-01-24 cx.h: cxnumber() => cxisnumber() etc.
1027303-01-22 cxopen.c,cxcomp.c: add buffer type relational ops
1027403-01-21 cx.h,dss.h: add Cxdisc_t.locationf and cxlocation() for Cxdisc_t.errorf
10275	 cxopen.c: add fundamental type internalf/externalf -- oops
1027603-01-15 cx.h: add Cxtype_t.Cxmatch_t callouts for type specific matching
1027703-01-14 Cxexternal_f now returns <0 on error, > size on insufficient size
1027803-01-12 dss.h: add Dssstate_t.file, Dssfile_t.offset for message context
1027903-01-11 cx.h,cxmap.c: finish external edit support
1028003-01-08 cx.h: add Cxquery_t.method pattern to match caller method
1028103-01-07 cx.h: Cxvariable_. member=>members, added member type
1028203-01-06 cxcomp.c: list() now handles interpreted cx expressions
1028303-01-04 cxcomp.c,cx.h: add ?: composition op, child=>pass|fail sibling=>next
1028403-01-02 cxcomp.c: parent now set by defaults()
1028502-12-25 cxcomp.c: fix unbalanced (...) message
10286	 cx.h: Cxvariable_t.operand.type => Cxvariable_t.type
1028702-12-24 cxopen.c: cxbase(),cxnumber(),cxstring(): add
10288	 cxeval.c: cxbeg() and cxend() now check Cxexpr_t.begun
1028902-12-20 add <METHOD>name</> to pass remaining tags to name method
10290	 add <COMPRESS>name</> and Dssmeth_t.compress for preferred {compress}
1029102-12-18 add Cxdisc_t.loadf; meth==foo checks dss:foo.dss as last resort
10292	 cxbeg() calls tail first; cxend() calls head first
1029302-12-17 all regression tests pass after reorganization
1029402-12-12 reorganize local vs. global state : only variables are dss/cx local
1029502-12-10 add query composition and rename src to reflect changes
1029602-12-07 cxparse.c: change dynamic query syntax to { name opts args >out }
10297	 cxparse.c: handle dynamic and interpeted query composition
1029802-12-04 cxparse.c: use format.map for constant folding in code()
10299	 cxeval.c: fix instruction trace long double numeric output format
10300	 dssfile.c: fstat() file to double check sfsize()==0
1030102-12-02 cx.h,cxmap.c: change cxstr2num() to all error detection -- novel
10302	 cxmap.c: add CX_IGNORECASE, <IGNORECASE>1</>
1030302-11-28 dss.h: Dssident_f takes Dssfile_t* arg
10304	 dsslib.h: add skip and ident to Dssfile_t for Dssident_f
10305	 tag.h,tag.c: reorder visit arg, add handle arg to avoid disc clash
1030602-11-27 cx.h: add CX_BINARY to mark binary representation
10307	 split dsslib.c info dssopen.c dssfile.c dssprintf.c dssmisc.c
1030802-11-26 dsslib.c,cxopen.c: add a few more floating=>signed=>unsigned casts
1030902-11-25 finally give in to Dssformat_t instead of Dsstype_t
1031002-11-22 dss.h: add DSS_ID, fix dss_lib() export
10311	 tag.h: add Tagdisc_t.id for pathfind()
10312	 cx.h: export cxinitmap()
10313	 dsslib.c: add sfdcpzip() error check -- how novel
1031402-11-21 tag.c: handle <#INCLUDE#>path</> and <#TABLE#>path</> closing </>
1031502-11-20 move support libraries to dsslibs dir
1031602-11-19 opaque/opaque.c: add opaque method
10317	 dssmagic.c: magic support for opaque data
10318	 dss.h: add variables to Dsslib_t, add dssadd()
10319	 dss.h: DSS_STATIC for static method link
1032002-11-18 dsslib.c: drop dss_init(), add libraries to Dsslib_t
10321	 dsslib.c: drop Dss_t* arg from dsslib(), change dssadd() to dssload()
1032202-11-16 cx/cxeval.c: set optget() discipline for query \findex\f
1032302-11-15 flat/flat.c: snarf cdb flat record code
10324	 cx dynamic queries now defined via dsslib()/dss_lib()
1032502-11-14 types/num_t.c: add numeric encoding support
1032602-11-12 finally fix cxvariable() . references for dssprintf()
10327	 add <NAME><DESCRIPTION><IDENT> nop's for all top level tag input
1032802-10-31 switch to XML tag specifications (with self documentation)
1032902-10-17 dsslib.c: add generated methods to the list of all methods
1033002-10-15 flat/flat.c: add initial XML flat file description support
1033102-10-11 netflow: add ns_t start,end nanoseconds since the epoch
1033202-10-09 bgp-ipma.c: add
10333	 dsslib.c: fix printf double -> integer cast bug when sign bit set
1033402-09-30 text/text.c: add ipadd_t,time_t: really need a "struct" method
1033502-09-24 netflow/flow-dump.c: implement dumpfwrite()
10336	 bgp/bgp.prt,netflow/netflow.prt: move from src/cmd/dss
1033702-09-11 cx: add Cxquery_t,Cxframe_t and support functions for dll queries
10338	 cx: change Cxoperand_t keep boolean to refs count
10339	 cx/cxparse.c: work around sgi cc page boundary bug
10340	 pt: switch from vm region (16K) per table to malloc-per-entry
10341	 lsa: fix (int) pointer cast that truncated on 64 bit arch
10342	 lsa: use fmttime(%K) to list dates
1034302-09-05 Makefile: optimization bug seems to be in sol*.sun4, not just sol7
1034402-08-29 dsslist(): no dss_init() missing error message when scanning for dlls
1034502-08-22 dss,cx: eliminate inter-object globals for darwin dlls
1034602-08-20 cx/cxopen.c: drop cxvmresize; use ast vmresizef instead
10347	 lsa/*: add $pragma prototyped for sun4
1034802-08-19 cx/cxparse.c: handle char const operands on left and right
1034902-08-14 dss.h: add dss_init() prototype for static method links
1035002-08-12 lsa: add
10351	 flat: drop until different from text method
10352	 dsslib.h: install for independent method dlls
1035302-08-11 cx/cxopen.c: add cxscope() to push/pop scopes
1035402-08-09 cx/cxparse.c: cxvariable() now reports "undefined variable"
1035502-08-08 cx/cxparse.c: handle type1->base==type2->base callout
10356	 cx/cxparse.c: add /.../ quotes strings (already bowed to =~ and !~)
1035702-08-07 cx: add cxfree(), cxtell(), cxvmresize()
10358	 bgp/bgp.h: add Bgpredisc_t, Bgperror_f, Bgpreresize_f
1035902-08-01 cx/cxvariable.c: set reference value type
10360	 dss_init: now 3 args, second is option string
1036102-07-31 dsslib.c: all methods now dlls; dsslist() searchs PATH
1036202-07-25 bgp/bgpre.c: fix must logic
1036302-07-19 dsslib.c: dsscomp() now pops cx input stream to previous state
10364	 cx/cxopen.c: fix =~ typo that checked for CX_EQ instead of CX_MATCH
1036502-06-26 dsslib.c: add shared lib method dss_init() hook
1036602-06-19 cxopen.c: add default number<=>string conversions for base==number
1036702-06-18 netflow: split into { dump fixed flat } method types
1036802-06-14 dss.h: add dssfopen() Dssflags_t arg; DSS_FILE_READ/DSS_FILE_WRITE
10369	 cx: add Cxreference_t for structure member references
10370	 dssprintf: avoid sfkeyprintf() by caching Dssformat_t
1037102-06-12 netflow: add
1037202-06-10 cx/cxparse.c: add vm arg for parse time internalf/externalf
10373	 bgp/bgp.c: add ipprefix_t==ipprefix_t callout
1037402-06-07 bgp-mrt.c: handle long prefix field line split
1037502-06-03 bgp.c: add "origination" for data time
1037602-06-02 bgp.c: fix ipaddr_t/ipprefix_t inequality overloads
1037702-05-31 bgp-fixed.c: fix read swap
1037802-05-29 split library and command source
1037902-05-28 add { =~ !~ } to usage
10380	 advertize { variable type meth-type } dictionaries
10381	 drop { itemf infof }
1038202-05-23 update for reworked cx type interface
1038302-04-04 add numeric field maps, -I, %include
1038402-04-03 update bgp fields
1038502-03-31 first working flat method
1038602-03-26 first working dssgrep with bgp method
1038702-03-19 snarf pta bgp and cx libraries for initial implementation
10388
10389:::::::: libpz ::::::::
10390
1039111-09-21 sfdczip.c: set SF_SHARE if uncompress discipline pushed
1039211-03-07 pzip.h,pzpart.c: handle length@offset variable row size
1039306-12-18 pzline.c: move to separate plugin source dir
1039406-10-11 add sfstruse() error checks
1039506-03-22 pzopen.c: change "input stream close error" to "data corrupted"
1039605-07-17 pzinflate.c: use sferror() instead of sfsync() -- doh
10397	 pzsplit.c: drop SF_WRITE sfreserve() to keep writes aligned
1039805-06-30 pzsplit.c: work around sfreserve() write failure via sfwrite()
1039904-04-08 add pznospace()
1040004-02-29 pzip.h,pzline.c: fix pz_init() prototype
1040103-11-04 pzpart.c: use PZ_HEAD to avoid multiple PZ_UPDATE, fix wrk overflow
1040203-07-23 pzsplit.c: --split file size limited to --window
1040303-07-17 pzpart.c: fix "//" partition translation
10404	 pzpart.c: add include="file", library="..." disabled during include
10405	 pzpart.c: default split window threshhold is now 16K
10406	 pzsplit.c: free Id_t when done
1040703-05-13 sfdcpzip.c: add SF_DBUFFER exception, SF_SHARE before sfreserve()
1040803-05-05 sfdcpzip.c,sfdczip.c: add bzip support
1040903-04-15 pzlib.h: add PZ_MARK_PART for partial last input record
10410	 pzlib.h: add PZ_MARK_TAIL for tail records
10411	 partial input record is now a warning and handled on inflate
1041203-03-03 pzhead.c: PZ_FORCE disables unknown input diagnostic
1041303-02-10 sfdczip.c,sfdcpzip.c: handle PZ_CRC and SFGZ_NOCRC
1041403-02-06 pzhead.c: fmtquote() FMT_ALWAYS update
1041503-01-04 pzpart.c: list range only if more than 2 elements
1041602-12-25 pzip.h,pzpart.c,pzdeflate.c,pzwrite.c: add PZ_SORT
1041702-12-18 pzwrite.c: add partial row buffer
1041802-12-12 sfdcpzip.c: move disc arg to the end for discplined consistency
1041902-12-11 sfdczip.c: add
10420	 sfdcpzip.c: fix SF_WRITE, set disc.partition if passed in
1042102-11-22 sfdcpzip.c: fix bug that did not close pz->pz->io (and its fd!)
10422	 pzpart: check option errors (duh) and accept comment option
1042302-10-31 pzpart: partition file "/" or "//" or "/gzip/" => gzip compress
1042402-04-30 pzopen,pzhead: tighten pzip magic check via reasonable version number
1042502-03-09 pzopen,pzdeflate,pzsync: add fatal error checks
1042602-02-14 pzopen: disable PZ_UNKNOWN check if PZ_NOPZIP -- duh
1042702-01-11 pzdeflate: use Sfoff_t for sfmove() return instead of ssize_t
1042801-08-11 pzinit: add for static discipline library linking
1042901-07-17 pzlib: call dllerror() on failed dllfind()
1043001-06-28 pzpartnext: add to iterate over all partitions
10431	 pzpartition: default partition can be on one line: `"label" size -'
1043201-02-02 delay buffer allocation until pzpartinit()
10433	 pzpart: fix non-terminated string bug for url-style paths
1043401-01-01 pzopen: open new stream instead of using sfstdin for sfdcgzip()
1043500-12-11 pzpart(): add -X0 => prefix.skip => skip prefix on uncompress
1043600-10-04 pzhead(): accept empty input for compression -- duh
1043700-05-31 pzclose(): check for pz->io == 0
1043800-02-14 PZ_DELAY|PZ_HANDLE|PZ_UNKNOWN for 'unknown format' after pzlib() done
1043900-01-26 pzlib: dlsym() for NAME and _NAME (some don't map `_' automatically)
1044099-08-11 discipline cleanup
10441	 pzdeflate: last record incomplete is an error
10442	 pzline: add
10443	 pzpart: add partition#name partition?name=value,...
10444	 pzclose: add scaled bps to PZ_SUMMARY
10445	 pzfixed: use size if available and do 2 col freq check
10446	 pzfixed: add optional pz for tracing
10447	 pzip.h: add PZ_REGRESS, Pz_t.test, drop PZ_TEST*
10448	 *: details => options, use optstr() with usage for PZ_OPTION
10449	 pzpart: fix off-by one max col check
1045099-07-17 sfdcpzip: don't free disc on SF_CLOSE
10451	 pzsplit: add
1045299-06-23 add EOF checks to PZGETP() and PZGETZ()
1045399-06-21 add Pz_t.fixed, name=value to partition file
1045499-06-15 pzfixed: fix divide by 0
1045599-06-04 resize pp->fix after detail changes
1045699-03-17 add pzfixed()
1045798-11-11 nmap==0 allowed
1045898-11-01 add PZ_NOGZIP,PZ_NOPZIP for finer convert control
1045998-10-20 add Pzdisc_t readf and writef and file trailer
10460	 add pzconvert() discipline
1046198-10-15 hide some Pzpart_t details; part access by name only
1046298-10-01 2.0 format and interface -- Pzpart_t for multiple partitions
1046398-09-09 1.3 format -- separate <run,off> <val> compression groups
1046498-08-11 1.0 release
10465
10466:::::::: libtksh ::::::::
10467
1046812-05-04  update sh_sigcheck() => sh_sigcheck(0) -- eventually figure out Shell_t*
1046910-06-01  sync with ast api 20100601
1047008-08-08  src/list.c,src/tcleval.c: add temporary sh_eval(p,0x8000) hack
1047107-03-19  src/var.c: use nv_setref() to initialize references
1047206-09-19  src/shcompat.c: sysconf() => astconf()
1047304-07-19  tcl/tclIOUtil.c: treat { O_RDONLY O_WRONLY O_RDWR } as values
1047403-06-13  include/tclInt.h: disable #undef sprintf that masked its prototype
1047503-04-05  src/var.c: fix off by 1 malloc() call -- for once not gsf's fault!!
10476	  src/var.c: hack around nv_move() double-free bug -- needs better fix
1047703-03-12  src/tcleval.c,src/tclIO.c: change sfslen() => sfvalue(f)
1047802-08-27  tcl/tclNotify.c: XXX add sh_sigcheck() call -- to be cleaned up
1047902-08-22  enable regex cache initialization
1048002-06-25  include/nvextra.h: use an addaptable cheat for the namval offset
1048102-03-17  update ksh private assoc array offsets -- should be a function call
1048202-01-30  compensate for uts.390 lack of header guards for { select.h time.h }
1048301-04-19  add HAVE_TIME_H HAVE_SYS_PARAM_H HAVE___FD_MASK tests to tclPort.h
1048400-02-10  --- Release 7.6 ---
1048500-02-10  Update README file
1048600-02-09  Deleted unreferenced vars, dropped tcl 7.5 compatibility,
10487	  added _PACKAGE_ast <tm.h> routines to tclUnixTime.c, added
10488	  forward refs to the Tcl_LinkVar() Tcl_UnlinkVar() tk callbacks,
10489	  changed Makefile library refs
1049000-02-07  Modified shcompat.c and shcompat.h to handle
10491          change to ksh93 where nvenv is now private.
1049200-02-07  Included Tk4.2 in distribution to avoid
10493          compatibility problems.  Modified Makefile.
1049400-02-07  Using new packaging provided by gsf
1049597-06-24  src/tclIO.c proto tweaks [gsf]
10496
1049797-04-10  --- Release 7.6b1 ---
1049897-04-09  tcl_open |command works
1049997-04-09  Default interp mode is INTERP_TCL
1050097-03-09  Combined tksh.c interp.c to init.c
1050197-03-09  Incorporated changes for Tcl 7.6
1050297-03-09  waitevent sets interp type to tcl instead of having eval guess
1050397-03-09  Inserted code to null terminate argv in InterpProc
1050497-01-20  Integrated in tcl 7.5p1
1050597-01-20  Integrated tclIO.c written on sfio
1050697-01-20  using nmake makefile
1050797-01-20  integrated changes for uwin
1050896-09-04  Reorganization of directory
1050996-09-04  Works with Tcl 7.5
1051096-09-04  Doesn't work with Tcl 7.4, Tcl 7.4 (requires Tk4.0)
1051196-09-04  Lots of new files, deleted files
1051296-02-29  Tcl_RegExp*() changed to use posix regex
1051396-02-29  Tcl_RegExp*() cache change to avoid copying
1051496-02-29  Tcl_RegExpCompile arg 3 for case ignore match
1051596-02-29  drop stdarg.h from :: src list
1051696-02-29  drop malloc.h from tksh.h
1051796-02-25  unset TK_LIBRARY in tk.ksh
1051896-02-25  modifications to Makefile, config.sh and config.tcl:
10519          make debug, make BASE=, removed debug option in interface
1052096-02-25  setsub now creates a null subscript
1052196-02-25  init.ksh sets argv0 & argv, uses discipline for env instead of trace
1052296-02-25  bug in Tksh_ConvertList fixed (didn't check errors properly)
1052396-02-25  Man page updated
10524
1052596-02-21  --- Release 1.0b2 ---
1052696-02-21  New version of Tksh paper
1052796-02-21  Man page updated
1052896-02-21  ksh version of source accepts standard input ; uses sfio
1052996-02-15  Tcl_EvalFile works with Tcl mode
1053096-02-15  Result only printed if stdout is a string.
1053196-02-13  Added sh_sigcheck to Tcl_TclEval, making it possible to stop an
10532          infinite loop in a builtin.
1053396-02-13  Traces turned off in subshell
1053496-02-11  Added array data field in array discipline, used for array searches.
10535          TkshMakeArray now called TkshArrayData, separate nv_makearray macro.
10536	  Search ids allocated like tcl, using array data instead of hash table
10537	  set.test would pass, except ordering of elements is different (5 fail)
10538	  however, it meets specs.
1053996-02-11  Cleaned up tksh.h a bit
1054096-02-11  Added in .sh.result traced to interp->result
1054196-02-11  Added builtin setlist
1054296-02-08  Added Tcl_UpVar, Tcl_UpVar2 functions
1054396-02-08  regexp.c used instead of shell patterns
1054496-02-08  fixed bug in proc test (but now file crashes)
1054596-02-08  changed behavior of "info commands" to strip off tcl_ so that
10546	  info.test passes
1054796-02-06  rewrote portions of var.c - now the code is a lot easier to follow.
10548	  Set up to use the new NV_NODISC flag.  Two more trace tests pass.
10549	  Note - only one unset disc is called after a function clears scope.
1055096-02-06  Added pid command
1055196-02-04  button.ksh invoke does not redirect stderr and stdout to /dev/null
1055296-02-03  Moved TclOpen and TclRead from tk.c to tclunix.c
1055396-02-03  File reorganization:
10554	    New file varcmd.c which has commands associated with vars
10555              (taken from tclcommand.c)
10556	    tclcommand.c renamed commands.c, command.c renamed eval.c
10557	    commands.c has tclinfo.c and tclsource.c
1055896-02-03  Removed tcllist.c, tclstring.c and tclresult.c and put tclUtil.c
10559	  into tcl directory (only a couple of changes necessary to tclUtil.c)
1056096-02-03  Tcl_SetErrorCode.c remvoed from tclerr.c (in tclUtil.c)
1056196-02-03  Makefile updated accordingly
1056296-02-03  Fixed bug with bind : #! in bindscript was ignored
1056396-02-02  Fixed up/down arrow key problem in tk library
1056496-02-01  Removed printing of "after" for entry widgets
1056596-02-01  Removed return in Tcl_UntraceVar (return void doesn't work for sgi)
1056696-01-30  Added in checks to config.sh for -lsocket and -lnsl
1056796-01-30  Added fixstrtod (used in libtk.a on Solaris)
1056896-01-30  Moved "widget" to scripts directory and made symbolic link to it
1056996-01-30  Created "tksh" directory for binaries
1057096-01-29  Changed name of directory "kshmain" to "obsolete"
1057196-01-29  Fixed ifdef 0 in tk.c
1057296-01-29  tclinfo.c and interp.c use function TkshLibDir(), defined in tksh.c
1057396-01-29  tksh_builtin_command sets sh.exitval to 1 on error
10574
1057596-01-25  --- Release 1.0b1 ---
10576
10577:::::::: libtk ::::::::
10578
1057910-11-12 eliminate strict-aliasing puns
1058010-06-01 sync with ast api 20100601
10581
10582:::::::: libvcodex ::::::::
10583
1058411-01-31 Makefile: use `...` instead of $( ... ) for bootstrap build
1058510-06-01 sync with ast api 20100601
1058609-08-19 vchufgroup.c: sync with kpv (new alg)
1058709-06-22 sync with kpv, add vcgetfname(), vcwalkfname()
1058809-03-12 vcstrip.c: add
1058909-03-10 vcalias.c: add qnl
1059009-02-24 vcalias.c: add rte
1059109-02-24 vcsfio.c: ignore VC_EOF+ at end of header data
1059209-02-02 vcsfxsort.c: fix suffix sort stack overflow bug
1059308-12-07 sync with kpv 2008-11-04
1059408-09-10 vcsfio.c: handle old binary method header
1059508-07-23 vcodex.h: add __EXPORT__/__IMPORT__ extern attributes
1059608-06-04 sync with kpv
1059706-07-26 vcgetmeth.c,vcextract.c: handle CC_NATIVE!=CC_ASCII
1059806-02-14 vcodex.h: add __EXPORT__ to plugin declaration
1059906-02-08 vcsfio.c: simply magic logic by just peeking 4 byte magic
1060006-01-24 move private builtin methods to private plugins
1060106-01-16 Nmakefile: add PRIVATE for non-cpl methods
1060206-01-13 vcgetmeth.c: fix "foo.arg" parse error
1060305-10-25 vcsfio.c: fix header peek logic
1060405-09-28 Vchuff/vchhdr.h: add type case to ARRAYMAKE()
1060505-09-22 vcsfio.c: vczip command support functions for the masses
1060605-09-16 vcodex.h,vcsfio.c: add vcsfcomp() stub for vczip getmethods()
1060705-09-15 snarf from kpv, remerge _PACKAGE_ast
1060805-08-23 vcodex.h,vcsfio.c: add sfdcvcodex() (1:pushed,0:not-needed,-1:error)
1060905-08-22 vcsfio.c: peek initial header => no consumption on error
1061005-06-30 vcsfio.c: change vcsfmeth() to return Vcsfmeth_t* and size
1061105-06-29 vcodex.h: _PACKAGE_ast => <sfio.h>
10612	 fix !__STD_C for ancient sun4
10613	 change ident to char* (from unsigned char*) for pedantic cc
10614	 Vcdelta/vcdtblinit.c: init { _Vcdtbl _Vcdindex } to avoid dyn common
1061505-06-28 snarf from kpv
10616
10617:::::::: libvgraph ::::::::
10618
1061908-12-07 rename graph => vgraph
1062008-11-22 graph.h: add _WINIX import/export qualifiers
1062108-05-21 first release for -lvcodex
10622
10623:::::::: libtaso ::::::::
10624
1062511-12-01 first release
10626
10627:::::::: libjcl ::::::::
10628
1062910-06-01 sync with ast api 20100601
1063010-04-20 run.c: add timout arg to cowait()
1063107-12-10 path.c: fix <size><suffix> ordering
1063207-12-07 path.c: handle { '.' '/' } delimiters, '/' for pds
1063307-12-03 jcl.h: add Jcl_t.flags JCL_GDG for data generations groups
1063407-12-03 path.c: add data generations group logic
1063507-11-21 run.c: fix USAGE computation
1063607-04-09 Makefile: $(CC.PIC) to allow archive to be pulled into other dlls
1063706-11-11 sym.c: export JCL_SYM_READONLY for exec and verbose
1063806-11-11 add JCL_SYM_READONLY for command line name=value
1063906-10-11 add sfstropen()/sfstruse() error checks
1064006-08-14 run.c: fix coopen() to use COSHELL=pathshell()
1064106-08-04 run.c: fix JOBNAME export
1064206-08-04 run.c: use coshell instead of system()
1064306-08-01 run.c: exit code is EXIT_STATUS(system(...))!
1064406-05-18 RC cleanup
1064506-05-17 libjcl.h,open.c,run.c: add JCL_EXEC SYS* redirection
1064605-10-25 run.c: fix "+" file append mark placement to be first char
10647	 parse.c: fix literal ' inside PARM=(...) list parse
1064805-10-11 jcl.h: add JCL_DD_MARKED for paths with size marks
1064905-09-15 run.c: drop "+" append mark on command arg files
1065005-09-12 lib.c: add { %%BLANK[n] %%TIME }
10651	 run.c: create output files if they don't exist
1065205-09-09 run.c: use fmtquote() FMT_SHELL flag for [$`]
1065305-08-29 jcl.h: add Jcl_t {date,odate,rdate} and control-m vars
10654	 open.c: initialize Jcl_t {date,odate,rdate}
10655	 lib.c: synthesize Jcl_t {date,odate,rdate} control-m vars
10656	 parse.c: add '$' to control-m var id set
1065705-06-11 run.c: 1 export per line for readability
10658	 run.c: export STEP=step-name
10659	 parse.c: fix SUBSYS=... file catenation bug
10660	 parse.c: SPACE=n is not a reliable lrecl predictor
1066105-02-14 sym.c: handle symbol redefinitions
10662	 find.c: ${%%foo} => ${JCL_AUTO_FOO}
10663	 jcl.h: fix JCL_CREATE/JCL_WARN bit value clash
10664	 jcl.h: add JCL_IMPORT env var precedence over map definitions
1066505-02-11 find.c: add expand() recursion check
1066604-10-31 jcl.h,parse.c,run.c: add JCL_DD_ALIAS for postponed DD
10667	 parse.c: handle DD SUBSYS=(name,'DDNAME=x')
1066804-10-18 path.c: expand() "set" args
1066904-10-17 run.c: add checkdir() to mkdir -p output dirs
10670	 find.c: recursively expand set vars
1067104-09-28 run.c: add more JCL_SUBDIR trace output
1067204-09-21 jcl.h,run.c: add JCL_SUBDIR
10673	 parse.c: add "JCL_AUTO_JOBNAME" to jclsym()
10674	 parse.c: fix expression parse bugs
10675	 uniq.c: trailing %% is not a file size mark
1067604-09-20 run.c: add "export JCL_AUTO_JOBNAME=job"
1067704-09-19 path.c: handle prefix match tail
1067804-09-15 jcl.h: add Jcl_t.roflags
10679	 path.c: add expand() for --include ${...} expand
10680	 path.c: ${...} does lookup() then getenv() -- duh
10681	 path.c: add *.X prefix match with ${1} ... subexprs
10682	 path.c: add "export" and { JCL_SYM_EXPORT JCL_SYM_SET }
1068304-08-11 jcl.h,find.c: add JCL_CREATE for jclfind() create
1068404-08-08 path.c: provide default disc.{usage,optsetf}
1068504-08-06 split cmd/jcl => lib/libjcl + cmd/jcl
10686	 path.c: set options only if usage&optsetf are set
1068704-06-14 run.c: clean up tmp files on exit
1068804-06-06 jcl.h,parse.c: parse OUTPUT and DD OUTPUT=*
1068904-05-31 jcl.h,jcl.tst: add JCL_DD_DIR for SPACE=(*(x,y,z)*)
1069004-05-24 run.c: handle JCL_DISP_MOD by prefixing dd name with '+'
1069104-05-20 cpy2dss.c: fix --variable to *also* emit <VARIABLE>1</>
1069204-05-19 cpy2dss.c: fix --variable to emit terminator and width
1069304-05-14 cpy2dss.c: add --terminator=char and --variable
1069404-05-06 cpy2dss.c: handle nested structs and out of sync level indices
1069504-05-04 cpy2dss.c: promote from test area
1069604-02-29 parse.c: ignore %%.
10697	 jclparm(): PARM=(' name=value') => name=value
10698	 run.c: parms passed as one , separated arg
10699	 run.c: map dd DSN=&FOO => ${TMPDIR:-/tmp}/job.$$.FOO
1070004-02-11 lib.c,sym.c: fix short by one bugs in stash() and jclsym()
1070104-01-30 fix '&variable' logic; JCL_LISTSCRIPTS lists INCLUDE paths too
1070204-01-27 parse.c: fix off-by-one continuation logic
1070304-01-14 run.c: fix std[3] => std[4] off-by-one declaration
1070403-11-18 parse.c: add INCLUDE and JCLLIB, fix find search()
1070503-11-17 find.c: only convert base name upper=>lower in search
10706	 parse.c: add IF/ELSE/ENDIF
1070703-10-30 fix DD SYSIN redirection, DD DUMMY
1070803-10-16 set (recfm,lrecl) via marked() if not already set
10709	 export DD catenations
1071003-10-10 variable expansion by the book
1071103-10-01 first code
10712