summaryrefslogtreecommitdiff
path: root/bin/ksh
AgeCommit message (Collapse)Author
1999-10-16Formatting fix.Aaron Campbell
1999-10-04put sbin:/usr/sbin in default pathTheo de Raadt
1999-09-28disable optimization on 88kSteve Murphree
1999-09-23cetain -> certain; kwesterback@home.comAaron Campbell
1999-08-04Turn <tab> completion on by default for people used to bash, tcsh, etc...Todd C. Miller
1999-08-04o Better fix for not sending a HUP to pg 0 from the pdksh maintainerTodd C. Miller
o Includes fix for another unrelated problem where output of jobs command contains lots of ^A characters
1999-08-02Check to make sure process group is not 0 before sending a SIGHUP toTodd C. Miller
the process group on exit. This will cause problems if we are not the process group leader.
1999-07-15o Set default line edit mode to emacs (VISUAL/EDITOR or user can override)Todd C. Miller
o Spell environment correctly
1999-07-15silence -WallTodd C. Miller
1999-07-14update man page to pdksh v5.2.14Aaron Campbell
1999-07-14Official fix for workaround in 1.18Todd C. Miller
1999-07-14pdksh-5.2.14Todd C. Miller
1999-07-05mdoc'ify syntax of the more complicated commands; when I converted this manAaron Campbell
page originally, I didn't know how to do such funky things
1999-07-01remove trailing spaces; missed from a previous commitAaron Campbell
1999-06-23When redirecting to a file with stdout closed, don't blithely reuseTodd C. Miller
fd 1 since that will cause future output on stdout to go to the file that was redirected. There is probably a better fix for this.
1999-06-15patches from pdksh 5.2.13.11Todd C. Miller
1999-06-15patches from pdksh 5.2.13.11Todd C. Miller
1999-06-14Fixed a bunch of typos, grammar errors, and unclear wording in the shPaul Janzen
man page, and the corresponding problems in the ksh page.
1999-06-03use the hyphenated form "command-line" in the case of a compound adjective;Aaron Campbell
pjanzen@
1999-05-30repairsAaron Campbell
1999-05-28be more conservative with the .Dq macro; in particular, use .Sq macros most ofAaron Campbell
the time instead when quoting 1-2 characters (makes it much easier to read); based on a patch received awhile ago from d@
1999-04-27disable newgrp alias since OpenBSD doesn't have a newgrp(1)Todd C. Miller
1999-03-18``that that'' -> ``than that''; nash@mcs.netAaron Campbell
1999-03-02Finally, new and improved mandoc ksh/sh man pages. This took hours, and hours,Aaron Campbell
and hours... Someone please read it and find any typos I may have missed.
1999-03-01obliveous -> oblivious; d@Aaron Campbell
1999-01-19Updates from pdksh-unstable-5.2.13.7. Most notable change is:Todd C. Miller
trap: exit traps now executed in subshells (without explicit exit call). See the Changelog for a full list of changes.
1999-01-10sync with pdksh-unstable-5.2.13.6Todd C. Miller
1999-01-10Fix bug in c_sh.c where an unitialized variable could be used.Todd C. Miller
Bug found by fgsch@openbsd.org. Patch mailed to pdksh maintainer.
1999-01-10missed in updateTodd C. Miller
1999-01-08bug fixes from pdksh-unstable-5.2.13.5; some of which we already had.Todd C. Miller
1998-12-21correct built-in killTheo de Raadt
1998-11-24better error message from ulimitTodd C. Miller
1998-11-19better fixTodd C. Miller
1998-11-19thou shalt not follow the NULL pointer, that way lies madnessTodd C. Miller
1998-10-29Bug fixes from pdksh-unstable-5.2.13.4, including "official" versions ofTodd C. Miller
some that we had already fixed locally. o typeset -f FUNC doesn't print follows command (and expression) substitutions. o when re-allocating memory, too much may be copied from old memory. o set -o printed some options sans names. o emacs mode: <esc>. in very fist command causes core dump. o pdksh dumps core after a cd command. o typeset -i reports on array elements that have no value (at&t ksh reports on array base name - no index). o ulimit -ctn unlimittttted kills shell (resource exceeded). o ". /dev/null" says access denied. o flag field in aliases incorrectly changed (all flags set instead of clearing ISSET) in exec.c(flushcom). o ${#array[*]} prints largest index instead of number of (set) elements in an array (ksh88 does the former). o sys_siglist[] doesn't always have NSIG non-null entries...
1998-10-09Initialize the correct fields when creating an empty command. Fixes bug where aTodd C. Miller
function with no body ( e.g. "testfun () ;" ) would cause ksh to segfault when it was called. Eric Haszlakiewicz <erh@netbsd.org>
1998-09-27preceeding -> precedingAaron Campbell
1998-09-07More man page fixes. Particularly fix uses of it's/its, affect/effect,Aaron Campbell
then/than and such. Other miscellaneous problems fixed across these source files.
1998-09-01more man page fixes; aaron@ug.cs.dal.caTheo de Raadt
1998-07-24fix spelling of separate; aaron@ug.cs.dal.caTheo de Raadt
1998-06-29overflow fix; michael@cs.mun.caTheo de Raadt
1998-06-27new ksh code stupidly did not permit ". /dev/null"; enable that againTheo de Raadt
1998-06-25pdksh-5.2.13 + local changesTodd C. Miller
1998-03-27do not nest RS/RETheo de Raadt
1998-03-18Document what sh/ksh does when the cd command matches a non empty pathMarco S Hyman
in the CDPATH environment variable.
1998-03-06Add unlimit man link for csh and ulimit man link for sh.Todd C. Miller
1998-01-17Make ulimit catch bogosity so that: "ulimit -dflmnpst unlimitted"Todd C. Miller
Results in: ksh: ulimit: "unlimitted" is not a valid limit Not: Killed (because it treated the word as 0). Noticed by mickey@openbsd.org
1998-01-17Don't document ulimit flags that don't existTodd C. Miller
1997-11-16Revert one of the $_ changes made 970102, as it makes sh crash when mailNiklas Hallqvist
arrives and mailchecking is on. I doubt this case was meant to be altered at that time judging from the documentation fix it went along with. However to be really sure I would like to see what POSIX has to say about the mail notification message format. Is $_ meant to be expanded to the mailbox path? If so, this revertion is correct, otherwise, another fix ought to be made. I have no POSIX spec though.
1997-09-12Avoid longjmp/vfork clobbering.Todd C. Miller