summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)AuthorFilesLines
2016-10-0339550: reset signal queue in recursiveedit()Barton E. Schaefer1-0/+6
2016-10-0339548: DEBUG for queueing_enabledBarton E. Schaefer2-3/+32
2016-10-0339547: handle zero delta in calc_timeout()Barton E. Schaefer1-1/+1
2016-10-0339545: Add some missing unqueue_signals().Peter Stephenson10-4/+24
All of these are added simply to fit existing logic in other branches.
2016-10-0339521: Refactor start of execcmd().Peter Stephenson2-46/+97
By splitting into _analyse and _exec execpline2() has easier access to the state at the start of execution. Use this to ensure we fork if this is a builtin with no arguments.
2016-10-0239540: "! command" should suppress ERR_EXIT and ERR_RETURNPeter Stephenson1-2/+6
2016-09-3039509: in the event the current directory has been removed, use chasedots ↵Barton E. Schaefer1-4/+21
semantics for "cd ..".
2016-09-3039519: restore missing PM_EXPORT flags.Peter Stephenson1-0/+1
This was missing when exporting using USE_SET_UNSET_ENV coce variant.
2016-09-3039517: back off 39502 (WC_ASSIGN causes fork in pipe).Peter Stephenson1-1/+1
This isn't a robust fix as WC_ASSIGNs simply precede the main wordcode.
2016-09-3039498: use PRIVILEGED option to decide on problematic parameter importsPeter Stephenson2-4/+4
2016-09-30Call the pre-redraw hook if there is text in the buffer on initMikael Magnusson1-1/+13
2016-09-2939507: TMPSUFFIX for =(...)Barton E. Schaefer1-0/+9
2016-09-2939470: failure to open a supposedly unique temp file name should result in ↵Barton E. Schaefer2-5/+15
an error Also band-aid for signal-related race conditions in temp file name generation
2016-09-2939502: Fork for assignment in LHS of pipeline.Peter Stephenson1-1/+2
foo=bar | stuff left the value of foo set to bar as we didn't realise we needed to fork.
2016-09-29unposted: Update findcmd() in Zle.Peter Stephenson2-5/+7
Unfinished business from previous patch.
2016-09-2934943: Fixes for "command" with multiple options.Peter Stephenson3-39/+126
These need to combine properly, and alos "command -p" with either -v or -V needs to search for builtins and then using the default system path.
2016-09-28unposted: change '\0' to NULL to silence spurious compile warning.Bart Schaefer1-1/+1
params.c:830:13: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion] *envp = '\0';
2016-09-2839460: Don't import PS4 if running as root.Peter Stephenson2-3/+31
There was an exploit in bash using SHELLOPTS to turn on xtrace, however this can't happen in zsh, so this is simply a precaution.
2016-09-27unposted: remove extra close-paren from d6a6b4ffBart Schaefer1-1/+1
2016-09-2739369 (tweaked cf 39371): when calling an internal widget, set bindk because ↵Oliver Kiddle1-0/+4
some widgets use it to determine how they should act
2016-09-2739437: use list_pipe_pid in assignment for clarityBarton E. Schaefer1-1/+1
2016-09-2639448: reset REPLY in select on user actionMartijn Dekker1-0/+2
2016-09-2539436: Pass on status of SIGINT better.Peter Stephenson2-1/+3
Set lastval to 128 + SIGINT on interrupt. Don't execute builtin if already interrupted at that point.
2016-09-2539435: Further fix for pgrp of funny pipelines.Peter Stephenson1-1/+2
Don't set gleader of SUBJOB at the point of creation if the SUPERJOB has no processes yet.
2016-09-2339412: Fix directory completion when $PWD:h contains parentheses, which are ↵Daniel Shahaf1-1/+4
interpreted as globbing metacharacters.
2016-09-2039383: compadd: Restrict previous patch to the case where $PREFIX includes ↵Daniel Shahaf1-2/+4
characters both from the -P prefix and from the (unprefixed) candidate completion word.
2016-09-2039372: compadd: Match -P prefix all-or-nothing rather than greedily.Daniel Shahaf1-4/+7
2016-09-1939381: handle save/restore of variable values when "typeset"-related ↵Barton E. Schaefer1-2/+2
reserved words are prefixed by an assignment
2016-09-1639362: another race with pipeline handling.Peter Stephenson1-25/+9
When forking the shell to control the right hand side, the forked subshell now always starts its own process group, to avoid getting a spurious additional SIGSTOP.
2016-09-1639359: Fix remaining race with orphaned subjob.Peter Stephenson3-5/+58
When shell is forked to run right hand side of pipieline it should use its own PID as process group if the left hand side of the pipeline has already exited.
2016-09-1639331: Reparent subjob on fork with exited superjob.Peter Stephenson3-4/+31
Fixes case of v() { { vim - } always { true } } ls | v ^Z fg Tentative fix: still a race at exit where zsh forked by ^Z is stopped when restarted.
2016-09-1639310/0010: internals: match_str: Simplify expression.Daniel Shahaf1-5/+5
In the first hunk we actually know that ind==0 since sfx==0, but keep it identical to the last hunk. Also add a comment (unrelated).
2016-09-1639310/0009: internals: match_str: Downscope local variable 't'.Daniel Shahaf1-2/+11
Remove needless initialization (it is written to again before it is ever read). Note there was another 't' variable at the end of the function that shadowed the int 't'.
2016-09-1639310/0008: internals: match_str: Document several local variables.Daniel Shahaf1-2/+16
2016-09-1639310/0007: internals: match_str: Rename and constify local variables 'oll', ↵Daniel Shahaf1-2/+3
'olw'.
2016-09-1639310/0006: internals: match_str: Downscope local variable 'bpc'.Daniel Shahaf1-3/+7
2016-09-1639310/0005: internals: match_str: Constify some local variables.Daniel Shahaf1-6/+6
2016-09-1639310/0004: internals: match_str: Document 'savl'.Daniel Shahaf1-1/+16
2016-09-1639310/0003: internals: match_str: Document 'savw'. Avoid magic number.Daniel Shahaf1-3/+6
All callees checked to ensure that they only check that parameter for nonzeroness.
2016-09-1639310/0002: internals: match_str: Simplify by removing 'zoff'.Daniel Shahaf1-10/+10
'zoff' was only used within 'if (sfx)' blocks, in which case it was initialized to 'alen', so simply s/zoff/alen/g. 'alen' is not const but it first changes on line 794, after the last use of 'zoff'.
2016-09-1639310/0001: internals: match_str: Document some local variables. See 39123.Daniel Shahaf1-2/+56
2016-09-1639332: support ksh's [[ -v varname ]] condition for checking if variables ↵Oliver Kiddle3-2/+34
are set
2016-09-15unposted: remove duplicated assignmentOliver Kiddle1-1/+0
2016-09-14zsh-users/21903: Fix ${...?...} in interactive shell.Peter Stephenson2-1/+15
On failure should abort back to top level, but we reset the error flag around commands. Add a hard error flag that's only reset at top level.
2016-09-1339292: Distinguish "=" and "==" tests in output.Peter Stephenson4-23/+39
This is both in xtrace output and shell code rebuilt from internal structures.
2016-09-1339305: Fix error handling after parse for here document.Peter Stephenson1-1/+1
Keep the error status the same as before, but also retain the interrupt status if that was non-zero.
2016-09-1139268: "zsystem flock -t 0 ..." tries only once to flock and immediately ↵Barton E. Schaefer1-3/+3
returns success or failure
2016-09-1139252: internal: quotestring: Drop the 'e' parameter, which no caller uses.Daniel Shahaf9-59/+40
2016-09-0739185: Only set word begin for completion word if not alias.Peter Stephenson1-1/+1
This is consistent with other ZLE code in lex.c and fixes a crash in some completions involving aliases, e.g. if uncompleted quotes.
2016-09-0739218: Fix module feature enables with math functions.Peter Stephenson1-0/+2
If they were present parameters were miscounted.