about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
* 20002 -- fix for matching spec core dumpFelix Rosencrantz2004-06-041-1/+1
|
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-0258-593/+641
|
* Define the new UNUSED() macro for marking function parameters.Wayne Davison2004-06-021-0/+7
|
* Silenced one signed/unsigned comparison compiler warning.Wayne Davison2004-05-285-5/+5
|
* Silenced three signed/unsigned comparison compiler warnings.Wayne Davison2004-05-282-6/+6
|
* Silenced one signed/unsigned comparison compiler warning.Wayne Davison2004-05-282-2/+2
|
* Silenced two signed/unsigned comparison compiler warnings.Wayne Davison2004-05-284-8/+8
|
* Fixed two signed/unsigned comparisons.Wayne Davison2004-05-281-4/+3
|
* - Added missing struct initializers to two last-in-list values.Wayne Davison2004-05-281-5/+7
| | | | - Fixed a few signed/unsigned comparisons.
* Made a variable (t2) size_t so that it matched the size of theWayne Davison2004-05-281-1/+2
| | | | other variable it gets compared with (fw).
* Changed a few job-table variables into ints.Wayne Davison2004-05-281-4/+4
|
* Supply all initializers for the final struct reswd element.Wayne Davison2004-05-281-1/+1
|
* Fixed signed/unsigned compiler warning.Wayne Davison2004-05-281-1/+1
|
* 19976: fix spurious job table full messagesPeter Stephenson2004-05-252-1/+4
|
* Added a call to saveandpophiststack(0) to endparamscope() to enableWayne Davison2004-05-211-0/+1
| | | | the new auto-pop feature.
* - pushhiststack() now takes a level value and remembers it. If it wasWayne Davison2004-05-211-9/+21
| | | | | | | the locallevel (instead of -1), the history list is marked to auto-pop on function exit. - The saveandpophiststack() function now interprets a 0 arg as a request to do an auto-pop.
* - Added the -a option to "fc" and "history".Wayne Davison2004-05-211-4/+5
| | | | - Call saveandpophiststack() using the newest calling syntax.
* 19971: Fix environment nastiness in zexecve()Peter Stephenson2004-05-212-7/+3
|
* - Added functions to push and pop the current history list, allowingWayne Davison2004-05-201-16/+135
| | | | | | | functions to more easily switch to their own private history. - Changed the existing history push/pop code in savehistfile() (which uses a separate history buf to allow it to rewrite the on-disk version of the history file without disturbing the in-memory list).
* - Added the -p (push) and -P (pop) options to the "fc" builtin.Wayne Davison2004-05-201-4/+42
| | | | | | - Allow -p/-P to be given to "history". - On exit, save & pop any pushed history stacks before we call the normal savehistfile() function.
* Added a comment to resizehistents() to explain why the function isWayne Davison2004-05-181-0/+2
| | | | weirder than expected at first glance.
* 19941: fix (( 3, ))Peter Stephenson2004-05-131-2/+2
|
* fix bug I missed, somehowPeter Stephenson2004-05-121-12/+14
|
* 19920: attempt to improve hrealloc()Peter Stephenson2004-05-121-39/+114
|
* Fix the potential for an infinite loop in lockhistfile() if theWayne Davison2004-05-111-2/+4
| | | | link() calls fails for some other reason than EEXIST.
* Set the first character of buf to '\1' before the strftime() call soWayne Davison2004-05-051-1/+1
| | | | | we can try to distinguish a zero-length string from an error return (a minor fix to Peter's patch).
* 19877: improved test for empty strftime stringsPeter Stephenson2004-05-043-7/+22
|
* * 19869: Src/prompt.c, Src/utils.c: avoid segfault whenClint Adams2004-05-042-2/+5
| | | | | prompt-expanding '%D{%p}' or '%D{%P}' under locales with null strings for am_pm.
* Fix TRAPS_ASYNC so that it handles signals correctly.Peter Stephenson2004-05-024-49/+24
|
* 19840: vared takes one normal argumentPeter Stephenson2004-04-271-6/+1
|
* 19837: restore vared -ePeter Stephenson2004-04-271-1/+1
|
* 19810: ksh autoloadingPeter Stephenson2004-04-232-10/+8
| | | | 19812: autoloaded traps which are still buggy.
* 19809: improve NO_TRAPS_ASYNC by queueing traps alonePeter Stephenson2004-04-213-10/+41
|
* 19806: fix bug with %v prompt expansion and negative index beyond array startOliver Kiddle2004-04-211-1/+1
|
* 19801: implement autoloading of trap functionsPeter Stephenson2004-04-201-3/+21
|
* 19767, 19785: store flags for -z and -k options to autoload allowing theOliver Kiddle2004-04-201-7/+9
| | | | completion system to be used with ksh_autoload set
* 19767, 19785: store flags for -z and -k options to autoload allowing theOliver Kiddle2004-04-204-23/+40
| | | | completion system to be used with ksh_autoload set
* zsh-users/7365: new TRAPS_ASYNC optionPeter Stephenson2004-04-194-4/+14
|
* Minor optimization to qualnonemptydir() when a dir has a subdir.Wayne Davison2004-04-061-2/+8
|
* 19712, 19740: allow assigning to associations with i and r subscript flagsOliver Kiddle2004-04-061-1/+8
|
* Peter Castro: Cygwin improvements for dynamic libraries, text/binary, pathsPeter Stephenson2004-04-064-3/+71
|
* 19733 with docs tweaked: keymaps for vared and zedPeter Stephenson2004-04-062-65/+89
|
* 19717: (F) glob qualifier for full directoriesPeter Stephenson2004-04-011-0/+24
|
* 19707: negative index into arrays should return scalar and not one element arrayOliver Kiddle2004-03-301-1/+2
|
* 19683: Work around dllwrap problem on CygwinPeter Stephenson2004-03-251-0/+13
|
* 19682: Don't run ZERR, DEBUG or EXIT traps inside other traps.Peter Stephenson2004-03-251-1/+23
|
* 19674, modified: support for non-standard ports in zftp.Peter Stephenson2004-03-241-9/+63
|
* 19671: error in zle-line-init caused infinite loopPeter Stephenson2004-03-221-0/+1
|
* unposted: make 19655 a bit saferPeter Stephenson2004-03-181-0/+1
|
* 19655, 19656, 19657: Memory leaks spotted by valgrind.Peter Stephenson2004-03-183-10/+30
| | | | Also bug with multiple math function autoloads.