summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2014-05-29unposted: use DIGBUFSIZE for pipestatus numeric bufferPeter Stephenson1-1/+1
2014-05-1832616: bad printf arguments for limitsJun T1-1/+1
2014-05-1332609: [[ $var ]] behaves as [[ -n $var ]] for bash/ksh compatibilityBarton E. Schaefer1-13/+28
Also restore ksh [ -t ] compatibility when POSIX_BUILTINS is not set, and allow operators defined by modules to be called with no arguments, although this affects only runtime interpretation, not parsing.
2014-05-0832600: in _arguments, "-" is not an option letter after another "-"m0viefreak1-3/+7
2014-04-2932592: add CORRECT_IGNORE_FILE variableTomoki Sekiyama1-1/+10
2014-04-2532580: avoid indefinite wait in lockhistfile() by checking for lock file ↵Barton E. Schaefer1-15/+32
time stamp in the future Also change behavior of HIST_FCNTL_LOCK to use only fcntl() locking, rather than applying both kinds of lock.
2014-04-2032569: lastval ($?) should not be reset between word list substitution and ↵Barton E. Schaefer1-3/+3
loop body execution in for/select Remove one other redundant and therefore confusing assignment to lastval.
2014-04-2032568: consistency in handling of errflag condition during substitutionsBarton E. Schaefer2-4/+21
Affects for/select word lists, function definition name position, and anonymous function argument lists.
2014-04-1832552 (updated by 32560): fix segfault when using process substitution in ↵Andrew Waldron3-11/+21
anonymous function argument list Also disallow process substitution in function name position.
2014-04-1332540: in doexpandhist(), discard saved line position data rather than ↵Barton E. Schaefer2-1/+22
restoring from it (updates 32531).
2014-04-0632531: fix memory leaks detected by valgrindBarton E. Schaefer3-1/+6
2014-03-23m0viefreak: users/18655,18657,18660: assorted auto-removable suffix fixesm0viefreak3-17/+17
Src/Zle/compresult.c, Src/Zle/zle_misc.c, Src/Zle/zle_refresh.c: fix auto-removable suffix highlighting Completion/Unix/Command/_git: fix compadd for auto-removable suffix in _git_commit_ranges and _git_stash
2014-03-2032500: handle interrupts during pattern matchingBarton E. Schaefer1-1/+7
2014-03-1432479: POSIXTRAPS and implicit return values.Peter Stephenson2-2/+17
With POSIXTRAPS never propagate implicit return value. In any case if not forcing a return value don't use lastval from within the trap, use the one from the surrounding code.
2014-03-1332480: Fix crash in vi mode with too few previous changesJun T1-1/+1
2014-03-0932468: save/restore match/mbegin/mend when doing pattern lookups against ↵Barton E. Schaefer1-55/+61
zstyle contexts
2014-03-0332450: make get-line widget set the history number that was saved with the lineOliver Kiddle1-0/+4
2014-03-0332448: fix seg fault if $WIDGET is accessed after recursive-edit is interruptedOliver Kiddle1-1/+1
2014-03-0332436: allow = to be used in ZLS_COLORS patterns if it is quoted or inside ↵Oliver Kiddle1-2/+15
parentheses
2014-03-0132412 / 32415: New giga- and terabyte units for glob qualifiersManuel Presnitz2-5/+46
2014-02-2332427: avoid busy loop on closed descriptors for "zle -F" handlersBarton E. Schaefer1-3/+36
Also assure the handlers are called on error conditions and document the extra argument that is passed in the error case.
2014-02-1932414: improved error message for missing delimiters.Peter Stephenson1-2/+2
For glob qualifiers "u" and "g".
2014-02-1532388: zparseopts -K preserves individual associative array elementsBarton E. Schaefer1-2/+41
2014-02-1432361: don't reset lastline before completionOliver Kiddle1-1/+0
2014-02-0832365: another stab at the heuristic for initializing rprompt_indentBarton E. Schaefer2-3/+4
2014-02-0532342: fix overstrike for vi mode and use varying vi commands at line startOliver Kiddle2-10/+12
2014-02-0532334 (modified so KEEPSUFFIX is unchanged for vi-cmd-mode; based onOliver Kiddle4-8/+29
Jun T: 32324, 32330), 32347, Jun T: 32344, 32349: add split-undo zle widget for configurable breaks in undo sequence
2014-02-0232341: heuristic initialization of ZLE_RPROMPT_INDENTBarton E. Schaefer1-11/+1
2014-02-02Fix leading whitespace in a commentBarton E. Schaefer1-1/+1
2014-02-0232340: improve error messages for "read -c" / "read -l"Barton E. Schaefer2-2/+2
2014-02-0232337: change initialization of some special parameters for emulation ↵Barton E. Schaefer1-8/+9
compatibility
2014-01-3132314: merge undo events corresponding to vi change in the vi-cmd-mode ↵Oliver Kiddle4-12/+19
widget so undo from insert mode is useful again
2014-01-2832303: simplistic completion after $x:Peter Stephenson1-0/+14
2014-01-2832308: Improve initialising of vi change.Peter Stephenson2-3/+26
Better handling when entering viins on entry to editor. Slightly changed since post to use vi command a.
2014-01-27unposted: update 31983 to suppress stdout from cmp, too.Peter Stephenson1-1/+1
Gets rid of unnecessary messages building patchlevel.h.
2014-01-2332299: add use of underscores on arithmetic output for spacingPeter Stephenson3-18/+176
2014-01-22unposted: reformulate 32285 to lift the fheap->sp test out of the loop, ↵Barton E. Schaefer1-15/+9
improve commentary
2014-01-1932294: prevent buffer overflow when scanning very long directory paths for ↵Barton E. Schaefer1-13/+18
symbolic links
2014-01-1832285: restart the fheap search in freeheap if the current fheap arena is ↵Barton E. Schaefer1-0/+9
about to be discarded; fixes crash
2014-01-1832283: fix crash in menu selection when number of terminal lines is smallBarton E. Schaefer1-1/+1
2014-01-1132246: option "shift -p" pops arguments from end of arrayPeter Stephenson1-6/+25
2014-01-09users/18298 (tidied up): add {<char>..<char>} expansionPeter Stephenson1-3/+98
2014-01-0232196: copy-prev-shell-word needs a lexer flagCarl Drougge1-1/+1
2013-12-3032208: always reset pathchecked when the path array is modifiedBarton E. Schaefer1-2/+6
2013-12-2532182: re-enable command completion after a separatorBarton E. Schaefer1-4/+7
2013-12-2532178: fix another acquire_pgrp() infinite loopBarton E. Schaefer1-0/+4
2013-12-2132176: plug additional deadlock-inducing pipe descriptor leaksPeter Stephenson2-14/+29
2013-12-2032171: close pipe descriptor in parent when left side is a shell construct toBarton E. Schaefer1-0/+4
prevent deadlock Also clean up ChangeLog entry that attributed 32119 to 32114
2013-12-1832157: fix extra line feed after prompt, and erased character in completion ↵Barton E. Schaefer3-24/+41
listing, when ZLE_RPROMPT_INDENT=0
2013-12-1632131: avoid infinite loop reading pty on platforms that do not buffer ↵Jun T1-2/+2
output after child exit