Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Silenced one signed/unsigned comparison compiler warning. | Wayne Davison | 2004-05-28 | 5 | -5/+5 |
| | |||||
* | Silenced three signed/unsigned comparison compiler warnings. | Wayne Davison | 2004-05-28 | 2 | -6/+6 |
| | |||||
* | Silenced one signed/unsigned comparison compiler warning. | Wayne Davison | 2004-05-28 | 2 | -2/+2 |
| | |||||
* | Silenced two signed/unsigned comparison compiler warnings. | Wayne Davison | 2004-05-28 | 4 | -8/+8 |
| | |||||
* | Fixed two signed/unsigned comparisons. | Wayne Davison | 2004-05-28 | 1 | -4/+3 |
| | |||||
* | - Added missing struct initializers to two last-in-list values. | Wayne Davison | 2004-05-28 | 1 | -5/+7 |
| | | | | - Fixed a few signed/unsigned comparisons. | ||||
* | Made a variable (t2) size_t so that it matched the size of the | Wayne Davison | 2004-05-28 | 1 | -1/+2 |
| | | | | other variable it gets compared with (fw). | ||||
* | Changed a few job-table variables into ints. | Wayne Davison | 2004-05-28 | 1 | -4/+4 |
| | |||||
* | Supply all initializers for the final struct reswd element. | Wayne Davison | 2004-05-28 | 1 | -1/+1 |
| | |||||
* | Fixed signed/unsigned compiler warning. | Wayne Davison | 2004-05-28 | 1 | -1/+1 |
| | |||||
* | * 19991: Completion/Unix/Command/_lynx: complete .htm files too. | Clint Adams | 2004-05-28 | 2 | -1/+6 |
| | |||||
* | 19976: fix spurious job table full messages | Peter Stephenson | 2004-05-25 | 3 | -1/+9 |
| | |||||
* | c.f users/7474: reorder option descriptions in subheadings. | Peter Stephenson | 2004-05-25 | 2 | -776/+827 |
| | |||||
* | 19967+ | Wayne Davison | 2004-05-21 | 1 | -0/+7 |
| | |||||
* | Added a call to saveandpophiststack(0) to endparamscope() to enable | Wayne Davison | 2004-05-21 | 1 | -0/+1 |
| | | | | the new auto-pop feature. | ||||
* | - pushhiststack() now takes a level value and remembers it. If it was | Wayne Davison | 2004-05-21 | 1 | -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 Davison | 2004-05-21 | 1 | -4/+5 |
| | | | | - Call saveandpophiststack() using the newest calling syntax. | ||||
* | Use the new `history -ap' command to restore the history instead of | Wayne Davison | 2004-05-21 | 1 | -10/+3 |
| | | | | using a trap function. | ||||
* | Document the new -a option to `fc -p' and improved the documentation for | Wayne Davison | 2004-05-21 | 1 | -11/+25 |
| | | | | the history push/pop in other ways. | ||||
* | 19971: Fix environment nastiness in zexecve() | Peter Stephenson | 2004-05-21 | 3 | -7/+8 |
| | |||||
* | 19962 | Wayne Davison | 2004-05-20 | 1 | -0/+7 |
| | |||||
* | Use the new history push/pop options to fc to save and restore the | Wayne Davison | 2004-05-20 | 1 | -13/+4 |
| | | | | current history buffer. | ||||
* | Document the new options to "fc". | Wayne Davison | 2004-05-20 | 1 | -0/+19 |
| | |||||
* | - Added functions to push and pop the current history list, allowing | Wayne Davison | 2004-05-20 | 1 | -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 Davison | 2004-05-20 | 1 | -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. | ||||
* | unposted: _perforce: minor tweak to revision syntax | Peter Stephenson | 2004-05-19 | 2 | -3/+19 |
| | |||||
* | Added a comment to resizehistents() to explain why the function is | Wayne Davison | 2004-05-18 | 1 | -0/+2 |
| | | | | weirder than expected at first glance. | ||||
* | 19941: fix (( 3, )) | Peter Stephenson | 2004-05-13 | 3 | -2/+27 |
| | |||||
* | 19936: zcalc temp history file name | Peter Stephenson | 2004-05-13 | 2 | -2/+7 |
| | |||||
* | fix bug I missed, somehow | Peter Stephenson | 2004-05-12 | 1 | -12/+14 |
| | |||||
* | 19920: attempt to improve hrealloc() | Peter Stephenson | 2004-05-12 | 2 | -39/+119 |
| | |||||
* | 19893 | Wayne Davison | 2004-05-11 | 1 | -0/+5 |
| | |||||
* | Fix the potential for an infinite loop in lockhistfile() if the | Wayne Davison | 2004-05-11 | 1 | -2/+4 |
| | | | | link() calls fails for some other reason than EEXIST. | ||||
* | 19878 | Wayne Davison | 2004-05-05 | 1 | -0/+5 |
| | |||||
* | Set the first character of buf to '\1' before the strftime() call so | Wayne Davison | 2004-05-05 | 1 | -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 strings | Peter Stephenson | 2004-05-04 | 4 | -7/+28 |
| | |||||
* | * 19869: Src/prompt.c, Src/utils.c: avoid segfault when | Clint Adams | 2004-05-04 | 3 | -2/+11 |
| | | | | | 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 Stephenson | 2004-05-02 | 6 | -54/+35 |
| | |||||
* | * 19863: Completion/Zsh/Type/_command_names, Doc/Zsh/compsys.yo: | Clint Adams | 2004-05-01 | 3 | -0/+19 |
| | | | | | allow search path for command names to be overridden by means of new command-path style. | ||||
* | * 19845: Completion/Debian/Command/_apt-move: apt-move | Clint Adams | 2004-04-28 | 4 | -13/+66 |
| | | | | completion function from Steven Kowalik. | ||||
* | 19839, 19842: improve handling of #q in qualifiers | Peter Stephenson | 2004-04-27 | 2 | -2/+11 |
| | |||||
* | 19840: vared takes one normal argument | Peter Stephenson | 2004-04-27 | 2 | -6/+4 |
| | |||||
* | 19837: restore vared -e | Peter Stephenson | 2004-04-27 | 2 | -1/+6 |
| | |||||
* | unposted: aap short and long options are mutually exclusive | Doug Kearns | 2004-04-26 | 2 | -17/+22 |
| | |||||
* | 19825: add changes style | Peter Stephenson | 2004-04-23 | 2 | -2/+13 |
| | |||||
* | 19810: ksh autoloading | Peter Stephenson | 2004-04-23 | 3 | -10/+17 |
| | | | | 19812: autoloaded traps which are still buggy. | ||||
* | 19809: improve NO_TRAPS_ASYNC by queueing traps alone | Peter Stephenson | 2004-04-21 | 4 | -10/+48 |
| | |||||
* | 19806: fix bug with %v prompt expansion and negative index beyond array start | Oliver Kiddle | 2004-04-21 | 2 | -1/+5 |
| | |||||
* | 19801: implement autoloading of trap functions | Peter Stephenson | 2004-04-20 | 2 | -3/+26 |
| | |||||
* | 19767, 19785: store flags for -z and -k options to autoload allowing the | Oliver Kiddle | 2004-04-20 | 1 | -7/+9 |
| | | | | completion system to be used with ksh_autoload set |