Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2002-10-23 | Move a cast from LHS to RHS to quiet a "cast from pointer to integer | Todd C. Miller | |
of different size" warning on 64-bit platforms. | |||
2002-10-16 | enable meta key in emacs mode for 7-bit locales; provos@ | Todd C. Miller | |
2002-10-07 | int -> uid_t | Vincent Labrecque | |
ok millert | |||
2002-09-18 | fix Xr refs; frisco@blackant.net | Theo de Raadt | |
2002-09-06 | no , at end of enum | Theo de Raadt | |
2002-08-11 | enable COMPLEX_HISTORY. sh/ksh history will now work | Marco S Hyman | |
as described in the man page. OK millert@ | |||
2002-08-03 | register -> int | Marco S Hyman | |
2002-06-09 | knf | Todd T. Fries | |
2002-05-04 | Clean 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-29 | wierd -> weird | Peter Valchev | |
2002-04-22 | Do not hardcode mvme88k-specific compilation flags here, especially since | Miod Vallat | |
the new flags happen to be no different from those set in <sys.mk> | |||
2002-03-01 | this is needed too | Marc Espie | |
2002-03-01 | Kill 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-27 | Fix three off-by-one errors. ok espie@, millert@, miod@ | Daniel Hartmeier | |
2002-02-16 | Add '#' to the list of escaped characters during vi/emacs filename completion. | Todd C. Miller | |
From Matt Bing. | |||
2002-02-14 | spelling | Theo de Raadt | |
2002-01-16 | Use the volatile specifier to fix warnings about variables being | Todd C. Miller | |
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack. | |||
2001-12-18 | another errno save situation | Theo de Raadt | |
2001-09-24 | The 'newgrp' alias is explicitly disabled in our ksh, so do not mention | Camiel Dobbelaar | |
it in the manpage. ok millert@ | |||
2001-09-19 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/ | |||
2001-09-02 | Typo; addresses pr/2038 from tim@robbins.dropbear.id.au | Aaron Campbell | |
2001-08-25 | OpenBSD doesn't have RLIMIT_VMEM or RLIMIT_SWAP, so we don't | Heikki Korpela | |
have ulimit -v or -w either. ok millert@ | |||
2001-08-23 | fix a typo; tim@robbins.dropbear.id.au | Peter Valchev | |
2001-08-03 | Typo; heko@iki.fi | Aaron Campbell | |
2001-07-31 | Documentation fixes per PR 1979 by Kaspar Toomik. | Hugh Graham | |
2001-07-19 | Back out last change, it caused problems with exit vals. | Todd C. Miller | |
2001-07-17 | make file-completion work with ~ (tilde) | Camiel Dobbelaar | |
tested by provos@ and me | |||
2001-07-03 | Merge in pdksh-5.2.14-patches.2 to fix some problems with propagated | Todd C. Miller | |
return values in multi-command lines. | |||
2001-06-23 | more .%A handling; bk@rt.fm | Theo de Raadt | |
2001-05-28 | Various fixes; mpech@prosoft.org.lv | Aaron Campbell | |
2001-04-12 | Insert some missing commas. | Aaron Campbell | |
2001-03-26 | spelling | Todd T. Fries | |
2001-02-20 | Typo (introduced by me in mdoc conversion of Rev 1.15); d@ | Aaron Campbell | |
2001-02-19 | forgot to remove debugging #if 0 | Camiel Dobbelaar | |
messed up completion on e.g. / and ./ | |||
2001-02-19 | bash-like 'double-tab' completion | Camiel 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 | |
2001-01-16 | typo; bk@rt.fm | Aaron Campbell | |
2000-12-19 | do not reset nonblock if shell is not interactive, from crossd@cs.rpi.edu | Markus Friedl | |
(i should have commited this about 6 months ago, ok millert@). | |||
2000-11-21 | Bug fixes from pdksh-5.2.14-patches.1: | Todd C. Miller | |
o set -x dumps core (shf.c); o "typeset -r foo=bar" fails saying foo is readonly (var.c). | |||
2000-11-21 | Add missing break that broke 'kill -s SIGNAME', PR #1495 | Todd C. Miller | |
Fix from Hiroyuki.HORINOKUCHI@nrj.ericsson.se | |||
2000-10-19 | Where we talk about $$, also say mention that PIDs are not safe to use for | Aaron Campbell | |
generating temporary file names, and point people to mktemp(1) instead. | |||
2000-10-12 | Compare the return from mmap with MAP_FAILED, do not cast to int and comapre | Artur Grabowski | |
with -1. | |||
2000-08-20 | Use mkstemp(), ryker@ryker.org | Todd C. Miller | |