summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
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
2013-10-1831846: fix NOEXEC option in execsimple() optimisationPeter Stephenson1-0/+3
2013-10-1731832: make execrestore() more signal-safe.Bart Schaefer1-23/+27
2013-10-1731823: add HISTORY_IGNORE parameterBarton E. Schaefer1-0/+17
HISTORY_IGNORE defines a pattern to exclude matching lines in the internal history from the HISTFILE at write time.
2013-10-1731830: New feature for zshaddhistory hooks.Peter Stephenson2-4/+22
If the first non-zero return status is 2, save the line on the internal history list, but don't write it out.
2013-10-1131805: Add $patchars and $dis_patchars to zsh/parameter moduleMikael Magnusson3-2/+43
2013-10-1131815: another fix for INCAPPENDHISTORY change.Peter Stephenson1-2/+15
We need to save immediately if something is pushed on the history stack to ensure we use the right file before popping.
2013-10-1031809: Make whitespace clear in trace output for patterns.Peter Stephenson1-0/+13
2013-10-0831797: to match documentation, avoid expanding history when there is neither aBarton E. Schaefer1-0/+6
word nor an event designator There are still a few cases where expansion is attempted even though the documentation indicates it will not be, but in most of those cases the expansion will fail. The now-fixed case would fall back to default expansion of the previous command.
2013-10-0731794: further refinement to INCAPPENDHISTORY change.Peter Stephenson1-1/+9
With SHAREHISTORY we should make sure the code behaves as it always did, because it takes care about locking a file once for reading and writing.
2013-10-0731793: Fix problem with non-interactive history.Peter Stephenson1-1/+1
Modify 31789 so it doesn't try to save history from hbegin() in that case.
2013-10-06users:18023: Add PIPEFAIL optionPeter Stephenson3-3/+12
2013-10-0531789: Save history for INCAPPENDHISTORY later.Han Pingtian1-1/+7
This improves the timing recorded in the history.
2013-10-0331784: better line width calculation for completion listingsBarton E. Schaefer1-25/+33
When deciding whether there is enough horizontal space to show completion descriptions for each match in a listing, treat the separator as part of the description rather than as part of the match, and account for lines that have already wrapped due to very long matches.
2013-10-0331781: "compdescribe -i" clears the completion list column padding widthBarton E. Schaefer1-0/+1
2013-09-2631772: queue_signals() to prevent re-entry into endparamscope().Barton E. Schaefer1-0/+2
2013-09-2631770: memmove() instead of memcpy() for overlapping regions.Barton E. Schaefer1-1/+1
2013-09-2531765: If zle starts in viins mark as insertion.Peter Stephenson1-0/+7
This allows undo to work on everything entered.
2013-09-2331764: Dewreakify havoc caused by pattern disables on glob qualifiers.Peter Stephenson2-5/+7
Don't use the zpc_specials array before it's defined, it's rude.
2013-09-21unposted: improve an error message.Barton E. Schaefer1-1/+2
2013-09-1931737: same loop counter fix in get_cadef as get_cvdef.Barton E. Schaefer1-1/+1
2013-09-1931735: fix off-by-one in completion utility cache code.Axel Beckert1-1/+1
Was causing crashes in complex completions, particularly with taskwarrior
2013-09-0631706: standardize handling of "test ! <x> <y> <z>"Peter Stephenson1-3/+10
2013-09-0431696: In "test" No One Can Hear If You Shriek.Peter Stephenson1-3/+11
Treat ! as a string in "test ! -a ..." and "test ! -o ...".
2013-08-2631672: Add test that was failing and fix zpty set-up racePeter Stephenson1-2/+28
2013-08-2531665: zpty should attach terminal on slave.Peter Stephenson1-0/+3
Also add test.
2013-08-1831637: be more selective about retry of lchdir() in cd_do_chdir()Barton E. Schaefer1-1/+2
Change of directory should not be retried relative to the current directory when it has already failed along some path that does not refer to the current directory.
2013-08-1131650: use zlong for mailcheck parameters to ensure rangePeter Stephenson1-4/+4
2013-08-1031648: fix timing errors in mailcheckjoe M1-3/+6
2013-08-0831644: Fix insertion of multibyte characters into editor line.Peter Stephenson1-1/+2
This was broken for a string that came from outside ZLE in the case where the editing buffer wasn't metafied, i.e. not in completion.
2013-08-08users/17908: Keep history line in sync between ZLE and shell.Peter Stephenson3-1/+19
Update ZLE version if history is read, pushed or popped with ZLE active
2013-08-0531631: Use cygwin_conv_path if available.Peter Stephenson1-0/+5
Prefer it to cygwin_conv_to_posix_path.
2013-08-0231611: attempt to fix crash completing redirection in do loopPeter Stephenson1-2/+24
2013-07-2917591: fix error message for invalid fd in print -uPeter Stephenson1-8/+8
2013-07-2531574: alternative fix for bad fd if no FD_CLOEXEC.Peter Stephenson1-8/+16
Remove dump records more consistently in that case.
2013-07-2431750: fix for HISTREDUCEBLANKS option.Peter Stephenson1-2/+27
Don't truncate line after marked words if there's more non-white-space text, which is probably comments.
2013-07-22unposted: fix previous commit: ihwend -> hwendPeter Stephenson1-1/+1
2013-07-2231559: Fix history line problem with aliases and commentsPeter Stephenson1-0/+1
2013-07-2131549: Fix third problem with file descriptor management.Peter Stephenson2-18/+1
Replace ad-hoc subsh_close file descriptor for pipe management with the new job-based addfilelist() mechanism.
2013-07-2031545: Use of FD_CLOEXEC to remove possibility of fd reuse.Peter Stephenson2-0/+9
File descriptors of mmap'd dump files are closed if and only if an exec is performed.
2013-07-1931536 with additions: Fix hang in previous process substitution fix.Peter Stephenson1-0/+25
Close applicable file descriptors when waiting for a job.