about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* 20605: Use separate structure with get/set/unset methods fro parameters.Peter Stephenson2004-12-0722-821/+1044
| | | | Separate justification width of parameters from base/precision.
* 20606: simple verification of pseudorandom numbersPeter Stephenson2004-12-072-0/+37
|
* update python completion for version 2.4Doug Kearns2004-12-062-0/+20
|
* 20595Wayne Davison2004-12-011-1/+5
|
* A few minor style tweaks (as discussed in 20595 and 20596).Wayne Davison2004-12-011-6/+7
|
* update screen completion for version 4.00Doug Kearns2004-12-012-34/+54
|
* 20599: test for $((##)) should now check for errorPeter Stephenson2004-11-302-2/+6
|
* Corrected the error-return comment for zchdir() and optimized theWayne Davison2004-11-291-9/+8
| | | | HAVE_FCHDIR error-return code.
* 20591: Stephane Chazelas: use of fchdir in zchdir leaked fd'sPeter Stephenson2004-11-292-3/+10
|
* 20592: Debian bug#283358: $((##)) failed erraticallyPeter Stephenson2004-11-292-0/+9
|
* * 20583: Completion/Unix/Command/_ssh: complete "modern" optionsClint Adams2004-11-272-5/+17
| | | | such as GSSAPIAuthentication.
* offer multiuser screen sessions for attaching/detachingDoug Kearns2004-11-272-5/+10
|
* 20578: Functions/Prompts/prompt_elite2_setup: handle ttys with slashes in them.Clint Adams2004-11-242-10/+54
|
* 20576: fix core dump on TRAPEXITPeter Stephenson2004-11-232-1/+19
|
* 20572: Allow alternative signal namesPeter Stephenson2004-11-227-36/+172
|
* 20571: update javac completion for J2SE 5.0Doug Kearns2004-11-202-2/+7
|
* 20568: debug test in pattern.c was out of datePeter Stephenson2004-11-192-1/+4
|
* 20566++: prefer SIGCHLD to SIGCLD and SIGPOLL to SIGIOPeter Stephenson2004-11-192-0/+7
|
* * unposted: Completion/Unix/Type/_pdf: complete pdf files for kpdf.Clint Adams2004-11-182-2/+3
|
* * Completion/Unix/Command/_bogofilter: fix -w/-p typo, which was noticed by ↵Clint Adams2004-11-182-1/+6
| | | | Michał Politowski.
* users/8219: add $HISTCMDPeter Stephenson2004-11-164-1/+17
|
* 20556: change SOCKLEN_T to ZSOCKLEN_T to avoid clashPeter Stephenson2004-11-165-6/+12
|
* improved Mac completion, from Motoi WashidaPeter Stephenson2004-11-127-56/+896
|
* Use ";&" to have the new "(\$*)" case fall through to the continue.Wayne Davison2004-11-111-1/+1
|
* 20551Wayne Davison2004-11-101-0/+5
|
* Handle $$ when expanding variables.Wayne Davison2004-11-101-1/+5
|
* _bittorrent, from Jussi PakkanenPeter Stephenson2004-11-092-0/+102
|
* fix "compadd -k assoc1 assoc2"Bart Schaefer2004-11-052-3/+8
|
* * 20539: Completion/Unix/Command/_make: avoid problems minus signsClint Adams2004-11-022-1/+6
| | | | in expandVars().
* 20528: exec 8>>(grep a) waited incorrectly for grep to finishPeter Stephenson2004-10-292-7/+26
|
* 20522: must-match optimisation in parameter substitution brokenPeter Stephenson2004-10-263-2/+24
|
* 20510Wayne Davison2004-10-221-0/+5
|
* Fixed an arg in a call to times() (from Borzenkov Andrey).Wayne Davison2004-10-221-1/+1
|
* _comp_options needs NO_kshtypesetBart Schaefer2004-10-222-0/+6
|
* 20513: fix tests of zero-length patternsPeter Stephenson2004-10-224-3/+27
| | | | trivial optimisation in jobs.c (unposted)
* 20505Wayne Davison2004-10-211-0/+6
|
* Use the new gettempfile() function.Wayne Davison2004-10-214-16/+9
|
* Added gettempfile(), which works like a custom mkstemp() (in additionWayne Davison2004-10-211-0/+41
| | | | to the existing gettempname(), which works like a custom mktemp()).
* 20503Wayne Davison2004-10-191-0/+5
|
* Fixed the default completion-cache path. (Change from Alexey Tourbin.)Wayne Davison2004-10-191-2/+2
|
* 20499Wayne Davison2004-10-181-0/+7
|
* Added bicat() that works like dyncat(), but uses permanent memoryWayne Davison2004-10-181-0/+17
| | | | instead of the heap.
* Call gettempname() with its new args.Wayne Davison2004-10-182-4/+4
|
* - Fixed an unsafe use of gettempname().Wayne Davison2004-10-181-3/+5
| | | | - Call gettempname() with its new args.
* Made gettempname() take a prefix arg and a use_heap arg. When prefix isWayne Davison2004-10-181-9/+15
| | | | non-NULL, it uses the specified prefix instead of $TMPPREFIX.
* - Improved lockhistfile() to use the new gettempname() for a uniqueWayne Davison2004-10-181-14/+15
| | | | | | filename instead of a .PID suffix. - Use bicat() to build the $HISTFILE.LOCK filename. - Put the $HOST value into $HISTFILE.LOCK in addition to the PID.
* 20500: Unmetafy patterns where possible and other minor pattern fixesPeter Stephenson2004-10-187-248/+537
|
* 20496Wayne Davison2004-10-181-0/+9
|
* Made zclose() avoid calling close() when fd < 0.Wayne Davison2004-10-181-1/+2
|
* In zleread(), initialize the first byte of the "line" buffer to '\0'Wayne Davison2004-10-171-0/+1
| | | | | so that functions such as magicspace() won't be accessing uninitialized memory when they look at "line".