Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-12-15 | Unbreak parameter assignment when calling bourne style functions; | Otto Moerbeek | |
resolves PR 2450. ok deraadt@ millert@ | |||
2003-12-12 | typo; ok jmc@ | Christian Weisgerber | |
2003-11-10 | If "from fd" == "to fd" don't call dup2() or close "from fd". | Todd C. Miller | |
2003-11-10 | For the >& and <& operators, add a check for "dup from" == "dup to" and | Todd C. Miller | |
just return success if they are the same. Fixes the "ls 2>&2" problem miod@ found. | |||
2003-11-08 | typos from Jonathon Gray; | Jason McIntyre | |
2003-10-28 | standard section order; | Jason McIntyre | |
2003-10-26 | typos from Jared Yanovich; | Jason McIntyre | |
2003-10-22 | macros with too many args; | Jason McIntyre | |
2003-10-22 | typos from Jared Yanovich; | Jason McIntyre | |
ok deraadt@ | |||
2003-10-16 | Buffers are not strings so use memcpy(), not strlcpy() to copy them. | Todd C. Miller | |
Found by danh@ with JG malloc options. I've also added some further bounds checks in the name of paranoia. Tested by danh and others. | |||
2003-10-10 | The special case code for "test -x" over NFS was incorrect. The | Todd C. Miller | |
right thing to do is to try access(2) first (since that occurs on the NFS server side) and only check for the absence of an execute bit when access(2) succeeds. Closes PR 3465 | |||
2003-09-04 | escapes in the wrong place; | Jason McIntyre | |
2003-09-02 | escape punctuation; | Jason McIntyre | |
ok deraadt@ | |||
2003-09-01 | In emacs editing mode, ksh by default interprets a set 8th bit as | Christian Weisgerber | |
meta prefix, i.e. all characters with the top bit set (>= 0x80) are taken as commands and cannot be entered literally. Introduce a new shell option, emacs-usemeta, that allows to toggle this behavior. The default is the traditional behavior; to enter 8-bit characters use "set +o emacs-usemeta". ok fgsch@, henning@ | |||
2003-09-01 | fix perl path. not that anyone uses this, but.. | Federico G. Schwindt | |
2003-08-27 | rename force_push to something more sensible. | Federico G. Schwindt | |
2003-08-27 | escape on expand under emacs mode; otto@ ok. | Federico G. Schwindt | |
2003-08-26 | fix backward and forward delete; from wiz@netbsd.org. many thanks. | Federico G. Schwindt | |
2003-08-23 | under emacs mode, fix the case when the globbed file and the longest | Federico G. Schwindt | |
prefix lenghts are equal ("a .b" and "a ab" by instance). found and tested by otto@. | |||
2003-08-22 | in word location, fix forward scanning so it correctly account for any | Federico G. Schwindt | |
escaped char and not only spaces. for "foo (bar.a)" and "foo (bar a)", cd foo\ \(bar.<tab> will correctly expand to foo\ \(bar.a\). otto@ and pval@ ok. | |||
2003-08-11 | I can not reproduce the ksh -O1 issues anymore on mvme88k with the latest | Miod Vallat | |
snapshot, so stop disabling optimization. | |||
2003-08-08 | Enable the first level of compiler optimizations on mvme88k by default, | Miod Vallat | |
now that is getting stable. ksh(1) still has to be builh at -O0 for now, though. ok deraadt@ | |||
2003-08-06 | Remove some double semicolons (hmm, do two semis equal a maxi?). | Todd C. Miller | |
I've skipped the GNU stuff for now. From Patrick Latifi. | |||
2003-08-05 | Don't allow alloc() and aresize() to fail. Their return value was | Todd C. Miller | |
only checked in two place (both in conjunction with str_save). Upon malloc/realloc failure we call internal_errorf() which pops throws and error and pops back to the last good state. OK deraadt@ pval@ fgs@ Original problem noted by mickey@ | |||
2003-08-02 | don't push things unless force is true; avoid adding text again on yank-pop. | Federico G. Schwindt | |
2003-08-02 | On ESC-y ESC-y (yank-pop), also check that there is something to | Federico G. Schwindt | |
insert (some text has been killed before). from otto@, fix PR/3384. On yank-pop error (no yank before), reset the index to killstack so another yank-pop does not mangle the prompt if nothing was yanked, and to avoid replacing a text when it shouldn't (yank <something> yank-pop yank-pop). otto@ ok. | |||
2003-07-19 | redrew -> redraw; | Jason McIntyre | |
from Andrey Matveev. | |||
2003-07-17 | note non-free parts that got yanked years ago; ↵ | Theo de Raadt | |
tom.cosgrove@arches-consulting.com | |||
2003-07-07 | - convert some lists to displays | Jason McIntyre | |
- .Ql -> .Sq where necessary - remove some .Pp's before lists - add missing .El - remove some wrong macros | |||
2003-06-26 | protos | Theo de Raadt | |
2003-06-06 | liternal -> literal; | Jason McIntyre | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-18 | fix prototype; ok millert@ | Jason Peel | |
2003-05-17 | use MAP_FAILED rather than -1; millert@ ok. | Federico G. Schwindt | |
2003-05-16 | fix several constant overflows, remove the strerror prototype (shouldn't be | Jason Peel | |
there), and cleanup some whitespace; help from, and okay millert@ | |||
2003-05-16 | make ksh use our dup2(), and add clarity (we've no configure.in there); | Jason Peel | |
ok millert@ | |||
2003-05-05 | in emacs or vi mode, if vi-tabcomplete or vi-esccomplete mode is on, this | Federico G. Schwindt | |
escapes "`" so by instance cd works correctly; millert@ and pvalchev@ ok. | |||
2003-04-28 | typos; | Jason McIntyre | |
suggestions, corrections and ok millert@ | |||
2003-04-16 | string cleaning. ok tedu@ | Thierry Deval | |
2003-04-15 | cull warnings | Theo de Raadt | |
2003-04-06 | strlcat; ok from various people | Theo de Raadt | |
2003-04-04 | two fixes; help from tedu & tdeval | Theo de Raadt | |
2003-03-20 | typos; | Jason McIntyre | |
from NetBSD (Soren Jacobsen) ok millert@ | |||
2003-03-14 | better document how getopts handles options; | Jason McIntyre | |
plus typos; from J.A. Neitzel; Fixes PR 3141; ok millert@ | |||
2003-03-13 | a few strcpy -> strlcpy; a couple people have mailed in a variety of | Theo de Raadt | |
patches, and i already had this sitting on my laptop at that time.. i used that as a chance to note that we had all done the same work, more or less | |||
2003-03-10 | spelling fixes | David Krause | |
ok millert@ | |||
2003-02-28 | typos; from Brian Poole | Jason McIntyre | |
2003-02-26 | remove double word stuttering | David Krause | |
ok henning@ | |||
2003-01-04 | spelling | Theo de Raadt | |
2002-11-27 | Make fc -e work in "sh-mode" (shell invoked as /bin/sh or -o sh option) | Peter Valchev | |
as well; matches Solaris. "can't hurt anything" marc@ Original report from PR user/2883 |