summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2014-08-0732971: negative argument with %(l..) and with %<< or %>> calculates space ↵Barton E. Schaefer1-3/+13
available before right margin
2014-08-0432958: bitwise logic fixMiles Ohlrich1-1/+1
2014-08-0432954 plus new test: [[ ... = ...(#q...) ]] shouldn't force a glob.Peter Stephenson1-2/+1
The (#q...) expression should simply be removed to leave a normal pattern as before
2014-08-04unposted: remove unused variablesPeter Stephenson1-1/+1
2014-08-0432949 (wip 32928, 32937): Add :^ syntax for zipping two arraysMikael Magnusson1-0/+61
2014-08-0132932: add hmkarray() and use to fix leakPeter Stephenson2-1/+12
2014-07-3132931: with NO_NOMATCH, a subscript glob qualifier on a not-matching pattern ↵Barton E. Schaefer1-0/+2
returns the original pattern
2014-07-30missed updates to calls to ztrftime()Peter Stephenson3-3/+3
2014-07-3032918: add %. to ztrftime for use in promptsPeter Stephenson4-6/+34
2014-07-2632910: quiet update of timestamp filesBarton E. Schaefer1-2/+2
2014-07-2432853: redefine VARARR() to use heap rather than stack allocationBarton E. Schaefer2-1/+8
enable old behavior via "configure --with-stack-allocation"
2014-07-24unposted (see 32892): 'fc -I' is an errorBarton E. Schaefer1-0/+4
2014-07-2432903: new empty (unset) elements in the special parameter hash tables are ↵Barton E. Schaefer1-15/+15
special themselves
2014-07-2332898 (credit Jun T.): fix offset_start initialization bug in 32891Barton E. Schaefer1-1/+1
2014-07-2032891: CASE_MATCH for =~ when using pcre; fix pcre_match with empty stringBarton E. Schaefer1-7/+6
2014-07-1732882 (cf. Augie Fackler 32879): correct reload of backslash-continuation ↵Barton E. Schaefer1-2/+12
lines from history, fix bad history write of events ending with backslashes
2014-06-2632799: resource NTHR not well handled on NetBSDPeter Stephenson1-3/+20
2014-06-2432789: --enable-zsh-valgrind allows analysis of heap allocationPeter Stephenson3-8/+106
2014-06-1332768 with further modifications: LOCAL_LOOPS option.Peter Stephenson3-2/+17
2014-06-1132767: another spot to tweak bracechardots()Jun T1-0/+2
2014-06-1032766: bracechardots() agrees with xpandbraces() about what constitutes a ↵Barton E. Schaefer1-0/+2
{C1..C2} pattern, thus preventing crash
2014-06-1032765: fix build when not MULTIBYTE_SUPPORTJun T1-2/+14
2014-06-0732737, 32736 (32741), 32735, 32734, 32733, 32732 (32739): Strict compilationNikolas Garofil6-10/+15
fixes Src/utils.c: properly ifdef declarations Src/zsh_system.h: memmove() should return its dest argument Src/signals.c: define ret before use Src/mem.c: remove unused pointers Src/prototypes.h: use size_t in bcopy() Src/compat.c: fix const declaration inconsistency
2014-06-0632682 with tweaks: Add INC_APPEND_HISTORY_TIME.Peter Stephenson3-5/+11
Revert INC_APPEND_HISTORY behaviour.
2014-06-0532723: add braces around some if/else branchesBarton E. Schaefer1-4/+7
2014-06-0532716: properly test iconv return values for error conditionsBarton E. Schaefer1-4/+3
2014-06-0432708: glob qualifier (Y) implies (oN)Daniel Shahaf1-3/+4
plus incidental patch to avoid adding a meaningless bitvalue to sort-order flags
2014-06-0332694: the number of matches to find is the suffix argument of (Y) qualifierDaniel Shahaf1-28/+46
2014-06-03unposted: restore cond_match() in case used in add-on modulePeter Stephenson1-0/+11
2014-06-0236526: when __APPLE__ is defined at compile, normalize Unicode filenames in ↵Barton E. Schaefer1-0/+31
zreaddir()
2014-06-02users/18870: fix glob scanner insert counting check.Daniel Shahaf1-10/+11
Was causing problems with globs in paths with (Y) glob qualifier
2014-06-0132634: add POSIX_ARGZERO optionBarton E. Schaefer4-3/+20
2014-06-01users/18857: add (Y) glob qualifier to generate only one match per patternDaniel Shahaf1-11/+24
2014-06-0132640: (#q) in [[ ... ]] forces globbingPeter Stephenson2-50/+84
2014-05-2932624: use correct scaling factor (clock ticks) for timesPeter Stephenson2-17/+21
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