Cleaned them up a bit, added a few bits and pieces.
This commit is contained in:
parent
59f44e1e1f
commit
d4219d0d69
|
@ -94,3 +94,10 @@ Reported by Robert E. Brown. Fix by bdc 4 Nov 96
|
||||||
|
|
||||||
signals-ignored-by-default for ultrix
|
signals-ignored-by-default for ultrix
|
||||||
Reported by Jay Nietling. Fix by ??????????
|
Reported by Jay Nietling. Fix by ??????????
|
||||||
|
|
||||||
|
Starting up programs with the "-e <entry-point>" command-line
|
||||||
|
switch and with the (DUMP-SCSH-PROGRAM <file-name> <entry-point>)
|
||||||
|
are now equivalent in that both pass a list of command-line arguments
|
||||||
|
that includes the program name. The two start-up methods were not
|
||||||
|
the same in the previous release. Reported by Dan Hagerty hag@ai.mit.edu
|
||||||
|
October 1996.
|
||||||
|
|
5
NEWS
5
NEWS
|
@ -20,6 +20,11 @@ Recent changes to the Scheme Shell.
|
||||||
New -s<fdes> command line switch
|
New -s<fdes> command line switch
|
||||||
Last few bits of Posix: isatty(), ttyname(), ctermid(), fcntl()
|
Last few bits of Posix: isatty(), ttyname(), ctermid(), fcntl()
|
||||||
More efficient CLOEXEC handling for unrevealed file descriptors.
|
More efficient CLOEXEC handling for unrevealed file descriptors.
|
||||||
|
Starting up programs with the "-e <entry-point>" command-line
|
||||||
|
switch and with the (DUMP-SCSH-PROGRAM <file-name> <entry-point>)
|
||||||
|
are now equivalent in that both pass a list of command-line
|
||||||
|
arguments that includes the program name. The two start-up methods
|
||||||
|
were not the same in the previous release.
|
||||||
|
|
||||||
10/31/95 (version 0.4.0)
|
10/31/95 (version 0.4.0)
|
||||||
New minor versioning introduced
|
New minor versioning introduced
|
||||||
|
|
24
RELEASE
24
RELEASE
|
@ -162,6 +162,12 @@ We even have one of those URL things:
|
||||||
** New -s<fdes> command line switch
|
** New -s<fdes> command line switch
|
||||||
Scripts can be read from stdin or other open file descriptors.
|
Scripts can be read from stdin or other open file descriptors.
|
||||||
|
|
||||||
|
** Starting up programs with the "-e <entry-point>" command-line
|
||||||
|
switch and with the (DUMP-SCSH-PROGRAM <file-name> <entry-point>)
|
||||||
|
are now equivalent in that both pass a list of command-line arguments
|
||||||
|
that includes the program name. The two start-up methods were not
|
||||||
|
the same in the previous release.
|
||||||
|
|
||||||
** Etc.
|
** Etc.
|
||||||
Solaris 2 on i386 support, AIX 4 support, HP-UX now uses dld for
|
Solaris 2 on i386 support, AIX 4 support, HP-UX now uses dld for
|
||||||
faster loading, a few small networking bug fixs, better error
|
faster loading, a few small networking bug fixs, better error
|
||||||
|
@ -172,15 +178,15 @@ We even have one of those URL things:
|
||||||
* Thanks
|
* Thanks
|
||||||
========
|
========
|
||||||
|
|
||||||
We would like to thank Michael Becker, Glenn Barry, Travis Broughton,
|
We would like to thank Michael Becker, Glenn Barry, Travis Broughton, Robert
|
||||||
Robert E. Brown, Charlie Conklin, Franklin Chen, Jin S. Choi, Douglas
|
E. Brown, Charlie Conklin, Franklin Chen, Jin S. Choi, Douglas S. J. De Couto,
|
||||||
S. J. De Couto, Brian F. Dennis, Sean Doran, Kevin Esler, Lutz Euler,
|
Brian F. Dennis, Sean Doran, Kevin Esler, Lutz Euler, Lewis Girod, Dan
|
||||||
Lewis Girod, Rolf-Thomas Happe, David Hull, Steven L. Jenkins, Patrick
|
Hagerty, Rolf-Thomas Happe, David Hull, Steven L. Jenkins, Patrick May, Jay
|
||||||
May, Jay Nietling, Tod Olson, Michel Schinz, Cotton Seed, Bill
|
Nietling, Tod Olson, Michel Schinz, Cotton Seed, Bill Sommerfeld, Michael
|
||||||
Sommerfeld, Michael Sperber, Steven L. Tamm, Ed Tobin, Victor Zandy,
|
Sperber, Steven L. Tamm, Ed Tobin, Victor Zandy, and others for bug reports,
|
||||||
and others for bug reports, bug fixes, and comments that were
|
bug fixes, and comments that were incorporated into this release. We really
|
||||||
incorporated into this release. We really appreciate their help,
|
appreciate their help, particularly in the task of porting scsh to new
|
||||||
particularly in the task of porting scsh to new platforms.
|
platforms.
|
||||||
|
|
||||||
We'd like to thank everyone else for their patience; this release seemed like
|
We'd like to thank everyone else for their patience; this release seemed like
|
||||||
a long time coming.
|
a long time coming.
|
||||||
|
|
7
TODO
7
TODO
|
@ -10,11 +10,7 @@ immediate:
|
||||||
|
|
||||||
manual:
|
manual:
|
||||||
pointers to relevant unix man pages
|
pointers to relevant unix man pages
|
||||||
|
HTML & info versions
|
||||||
syscalls:
|
|
||||||
posix terminal interface
|
|
||||||
posix signals
|
|
||||||
what other stuff is missing?
|
|
||||||
|
|
||||||
fdports:
|
fdports:
|
||||||
rewrite to work with s48 0.39
|
rewrite to work with s48 0.39
|
||||||
|
@ -54,6 +50,5 @@ perhaps one day:
|
||||||
|
|
||||||
conversion:
|
conversion:
|
||||||
sed => scsh
|
sed => scsh
|
||||||
awk => scsh
|
|
||||||
find => scsh
|
find => scsh
|
||||||
perl => scsh?
|
perl => scsh?
|
||||||
|
|
Loading…
Reference in New Issue