summaryrefslogtreecommitdiff
path: root/bin/ksh
AgeCommit message (Collapse)Author
2003-05-05in emacs or vi mode, if vi-tabcomplete or vi-esccomplete mode is on, thisFederico G. Schwindt
escapes "`" so by instance cd works correctly; millert@ and pvalchev@ ok.
2003-04-28typos;Jason McIntyre
suggestions, corrections and ok millert@
2003-04-16string cleaning. ok tedu@Thierry Deval
2003-04-15cull warningsTheo de Raadt
2003-04-06strlcat; ok from various peopleTheo de Raadt
2003-04-04two fixes; help from tedu & tdevalTheo de Raadt
2003-03-20typos;Jason McIntyre
from NetBSD (Soren Jacobsen) ok millert@
2003-03-14better document how getopts handles options;Jason McIntyre
plus typos; from J.A. Neitzel; Fixes PR 3141; ok millert@
2003-03-13a few strcpy -> strlcpy; a couple people have mailed in a variety ofTheo 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-10spelling fixesDavid Krause
ok millert@
2003-02-28typos; from Brian PooleJason McIntyre
2003-02-26remove double word stutteringDavid Krause
ok henning@
2003-01-04spellingTheo de Raadt
2002-11-27Make 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
2002-10-23Move a cast from LHS to RHS to quiet a "cast from pointer to integerTodd C. Miller
of different size" warning on 64-bit platforms.
2002-10-16enable meta key in emacs mode for 7-bit locales; provos@Todd C. Miller
2002-10-07int -> uid_tVincent Labrecque
ok millert
2002-09-18fix Xr refs; frisco@blackant.netTheo de Raadt
2002-09-06no , at end of enumTheo de Raadt
2002-08-11enable COMPLEX_HISTORY. sh/ksh history will now workMarco S Hyman
as described in the man page. OK millert@
2002-08-03register -> intMarco S Hyman
2002-06-09knfTodd T. Fries
2002-05-04Clean up the logic in install_url():Kenneth R Westerback
a) Eliminate extraneous cat invocations that are piped to grep by simply calling grep with the file name. b) Eliminate the only use of isnumeric() by using a ksh'ism left exposed in sh: '+([0-9])'. Eliminate isnumeric(). c) Test for a http/ftp list index of '0' and treat as an out of range error rather than an IP address. d) Reorganize to make smaller and more clear. Add documentation to sh(1) for ksh patterns that are available. ok millert@, miod@
2002-04-29wierd -> weirdPeter Valchev
2002-04-22Do not hardcode mvme88k-specific compilation flags here, especially sinceMiod Vallat
the new flags happen to be no different from those set in <sys.mk>
2002-03-01this is needed tooMarc Espie
2002-03-01Kill hand-made memory allocation code, that is definitely buggy.Marc Espie
Replace with simple wrapper around malloc, at least this works, and it's easier to debug anyways.
2002-02-27Fix three off-by-one errors. ok espie@, millert@, miod@Daniel Hartmeier
2002-02-16Add '#' to the list of escaped characters during vi/emacs filename completion.Todd C. Miller
From Matt Bing.
2002-02-14spellingTheo de Raadt
2002-01-16Use the volatile specifier to fix warnings about variables beingTodd C. Miller
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack.
2001-12-18another errno save situationTheo de Raadt
2001-09-24The 'newgrp' alias is explicitly disabled in our ksh, so do not mentionCamiel Dobbelaar
it in the manpage. ok millert@
2001-09-19occured->occurredMike Pechkin
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/
2001-09-02Typo; addresses pr/2038 from tim@robbins.dropbear.id.auAaron Campbell
2001-08-25OpenBSD doesn't have RLIMIT_VMEM or RLIMIT_SWAP, so we don'tHeikki Korpela
have ulimit -v or -w either. ok millert@
2001-08-23fix a typo; tim@robbins.dropbear.id.auPeter Valchev
2001-08-03Typo; heko@iki.fiAaron Campbell
2001-07-31Documentation fixes per PR 1979 by Kaspar Toomik.Hugh Graham
2001-07-19Back out last change, it caused problems with exit vals.Todd C. Miller
2001-07-17make file-completion work with ~ (tilde)Camiel Dobbelaar
tested by provos@ and me
2001-07-03Merge in pdksh-5.2.14-patches.2 to fix some problems with propagatedTodd C. Miller
return values in multi-command lines.
2001-06-23more .%A handling; bk@rt.fmTheo de Raadt
2001-05-28Various fixes; mpech@prosoft.org.lvAaron Campbell
2001-04-12Insert some missing commas.Aaron Campbell
2001-03-26spellingTodd T. Fries
2001-02-20Typo (introduced by me in mdoc conversion of Rev 1.15); d@Aaron Campbell
2001-02-19forgot to remove debugging #if 0Camiel Dobbelaar
messed up completion on e.g. / and ./
2001-02-19bash-like 'double-tab' completionCamiel Dobbelaar
- bind TAB (^I) to complete-list by default - complete-list now lists 'ls style' not 'menu style' - complete-list first completes; if that does not work, it lists - fix a memleak in emacs.c, do_complete - completion now works after '=' (dd), and ':' (ssh) and ` (backtick) - a command can now start with a subdir from the current dir
2001-01-28$OpenBSD$Niklas Hallqvist