summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
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
2013-12-1632136: fix problem with kshglob.Peter Stephenson2-5/+15
Non-pattern characters that could be followed by "(" to introduce a ksh glob but weren't caused failures.
2013-12-1632114: ZLE_PROMPT_INDENT allows you to move rprompt flush rightPatrick Oscity2-7/+31
2013-12-1032099: change pointer declaration to avoid arithmetic on (void *).Barton E. Schaefer1-1/+1
2013-12-0632091: WARN_CREATE_GLOBAL false positive.Daniel Shahaf1-1/+4
In cases like () { foo=bar =true; }
2013-11-2732061: Fix "use of uninitialized memory" in metafyBarton E. Schaefer1-2/+2
2013-11-27unposted, see 32054: Rationalise character encoding.Peter Stephenson3-15/+15
Shell functions are strictly ASCII for maximum portability. Other files within the distribution may contain UTF-8 characters. Exception for test files: where they need single character input with the top bit set, ISO-8859-X is used (X doesn't matter as we don't need the Euro).
2013-11-2032030: need to revert empty glob qualifier change.Peter Stephenson1-1/+1
It failed on an empty expansion that (N) was supposed to remove. Add test for this case.
2013-11-1932023: better interrupt handling at RM_STAR_WAITBarton E. Schaefer1-0/+2
2013-11-1831995: Han Pingtian: glob qualifiers cannot follow an empty pattern, so a ↵Barton E. Schaefer1-1/+1
leading paren means grouping
2013-11-1732001: fix crash on ${:*} and ${:|}Peter Stephenson1-0/+8
2013-11-1431983: suppress warning from cmp when genering patchlevel.h.Peter Stephenson1-1/+1
The warning doesn't indicate a problem, so isn't useful.
2013-11-1431982: detection of floating point constants was problematic.Peter Stephenson1-8/+3
Remove the cause and fix the original problem with floating point numbers with leading zeros (users/17445) a different way.
2013-11-1331977: It's OK to autoload a feature that's loaded.Peter Stephenson1-1/+14
Simply check that the feature is from the same module that's requested.
2013-11-1231961: rationalise fd watching to use structurePeter Stephenson3-60/+56
2013-11-0731937: zle -Fw uses widget semantics for file descriptor handlerPeter Stephenson4-23/+61
2013-11-06unposted: updates for 4.0.2-test-1.Peter Stephenson2-5/+7
Update references to 4.0.2 to 4.0.3. Additional mod_export declarations. Additions to .distfiles.
2013-11-0331936: Rationalise limits for threadsStefan Neudorf2-13/+6
2013-11-0331935: further updates to limits for BSDStefan Neudorf2-13/+6
2013-10-3131930 / 31934: New limits from BSD.Stefan Neudorf2-0/+50
Avoid clash of uses for ulimit -k.
2013-10-2931929: Src/jobs.c: fix DPUTS3() test condition from 31906.Barton E. Schaefer1-1/+1
2013-10-2831922: zlecharasstring missed flip of bit 5 after MetaPeter Stephenson1-0/+1
2013-10-2731919: fix deadlock when a shell builtin with a multio redirection is used ↵Barton E. Schaefer2-2/+3
on the left side of a pipeline Make sure stdin/out/err file descriptors are closed for the multio copy process, which means not re-using those descriptors after they are closed and marked FDT_UNUSED in fdtable[]. For completeness, initialize their fdtable[] state to FDT_EXTERNAL.
2013-10-2731912: in closemn(), distinguish closing for >&- from closing for a real ↵Barton E. Schaefer1-5/+5
redirect Fixes knock-on multios bug introduced by workers/20666 way back in 2005.
2013-10-26Merge overlapping ChangeLog entriesBarton E. Schaefer1-0/+9
2013-10-2631906: fix race-condition interaction of $pipestatus with job controlBarton E. Schaefer1-3/+10
printjob() should not reference oldjobtab for job numbers unless it is being called from bin_fg(). printjob() also must not attempt to update pipestats when called from bin_fg(). acquire_pgrp() should not loop infintely if the shell is not interactive. Update the $pipestatus stress test so that it also exercises the oldjobtab repair.
2013-10-2731902: rationalise use of gamma function.Jun T1-0/+9
Make zsh/mathfunc consistent across systems and use tgamma() where available
2013-10-2431885: fix PIPEFAIL when the last command executes in the current shellBarton E. Schaefer1-18/+24
2013-10-2431877: fix behaviour of disable -p with parenthesesPeter Stephenson1-18/+26
2013-10-2431882: Insulate completion widget against environment.Peter Stephenson1-4/+1
Prevents change in pipestatus leaking back out.
2013-10-2331879 plus misc.: improve $pipestatus handling and add a test for itBarton E. Schaefer1-17/+35
2013-10-2131869: reduce WINCH-twaddling in shingetline()Barton E. Schaefer1-2/+4
2013-10-19Use VERBOSE option in execstring()Peter Stephenson1-0/+5