about summary refs log tree commit diff
path: root/Src
Commit message (Collapse)AuthorAgeFilesLines
...
* 20388: tweak ignoreeof behavior on user-defined widgets to match docs.Bart Schaefer2004-09-201-1/+7
|
* 20387: revised algorithm for the fix in 20363.Bart Schaefer2004-09-202-16/+10
|
* 20378: Matthias B.: fix bugs joining with metafied chars.Peter Stephenson2004-09-172-4/+2
|
* 20363: Src/init.c, Src/Zle/zle_main.cPeter Stephenson2004-09-132-5/+15
|
* 20348: rejig WIDGETSTYLE and add WIDGETFUNCPeter Stephenson2004-09-101-1/+18
|
* 20331: Use internal zlong variables for consistencyPeter Stephenson2004-09-097-64/+106
| | | | 20332: Add WIDGETSTYLE zle parameter
* 20330: rationalise zle return statusesPeter Stephenson2004-09-081-1/+1
|
* 20325: consensus fix for "command -v" crash w/POSIXBUILTINS.Bart Schaefer2004-09-081-2/+13
|
* 20320: rewrite of 20318, for sanity.Bart Schaefer2004-09-081-12/+9
|
* 20318: Fix xtrace output bug introduced by 20308.Bart Schaefer2004-09-041-4/+5
|
* 20308: add EVAL_LINENO optionPeter Stephenson2004-09-034-5/+22
|
* 20303: zle -I test and running zle widgets in trapsPeter Stephenson2004-09-021-4/+25
|
* 20300: fix spurious EOF from ^CPeter Stephenson2004-09-021-5/+12
|
* When downline() calls upline() or visa versa (due to a negative zmult),Wayne Davison2004-08-241-2/+2
| | | | | the value of "n" that was returned should be negative but was positive. Fixes some problems with {down,up}-line-or-history and others.
* 20251: integer conversion truncationPeter Stephenson2004-08-163-55/+120
| | | | | | 20258: save command status in prompt substitution update FAQ rename version to 4.2.1-dev-1
* still allow user specified text modifiers with a short terminal.Geoff Wing2004-08-071-1/+2
| | | | | Only disallow if the terminal is really unknown or without sufficient capabilities or if SINGLE_LINE_ZLE option is given
* 20221: $LINENO in trap '...' DEBUG was wrong.Peter Stephenson2004-07-292-5/+12
|
* 20219: make zle parameter HISTNO writeablePeter Stephenson2004-07-292-1/+14
| | | | add history-pattern-search widget
* 20208: ternary path codes in prompt treat / as zero elementsPeter Stephenson2004-07-291-1/+4
|
* 20214: fix debugging test with recursive functionsPeter Stephenson2004-07-281-1/+4
|
* 20198: fix TRAPEXIT.Peter Stephenson2004-07-262-5/+8
|
* 20173: fix crash when reallocating heapsPeter Stephenson2004-07-171-0/+1
|
* 20153: make zle-line-init run after the first zrefresh()Peter Stephenson2004-07-131-2/+3
|
* unposted: improve 20150 by setting pointer to NULLPeter Stephenson2004-07-121-0/+3
|
* 20149: improve prompt-reset codePeter Stephenson2004-07-116-19/+24
| | | | 20150: commit ancient memory leak fix(?) in completion
* 20141: Crash restoring exported special parametersPeter Stephenson2004-07-073-63/+60
|
* 20126: tidy up before 4.2.1Peter Stephenson2004-07-022-3/+11
| | | | 20127: tweaked version of Wayne's patch to reexand prompts
* 7650: new reset-prompt zle widgetPeter Stephenson2004-07-012-0/+17
|
* 20118: improvements to limits builtinsPeter Stephenson2004-06-301-154/+328
|
* 20112 changed c.f. 20113:Peter Stephenson2004-06-283-4/+32
| | | | fix here string and here document expansion and quoting
* 20091: Src/Modules/pcre.c: silence gcc "unused parameter" warnings.Clint Adams2004-06-221-5/+5
|
* 20076, 20084: { ... } always { ... } syntax.Peter Stephenson2004-06-227-8/+150
|
* 20029: fix randomness of mathfunc rand48(seed)Peter Stephenson2004-06-081-1/+1
|
* 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.