mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-11-30 16:00:53 +01:00
unposted: fix return types in 28617
This commit is contained in:
parent
fe59d196a0
commit
ef4055d97c
2 changed files with 5 additions and 3 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2011-01-11 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* unposted: Src/params.c: fix return types in 28617.
|
||||
|
||||
* 28611: Src/Zle/zle_move.c: remove unused special behaviour for
|
||||
VI mark 26.
|
||||
|
||||
|
|
@ -14104,5 +14106,5 @@
|
|||
|
||||
*****************************************************
|
||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||
* $Revision: 1.5180 $
|
||||
* $Revision: 1.5181 $
|
||||
*****************************************************
|
||||
|
|
|
|||
|
|
@ -2823,7 +2823,7 @@ sethparam(char *s, char **val)
|
|||
return NULL;
|
||||
}
|
||||
if (unset(EXECOPT))
|
||||
return;
|
||||
return NULL;
|
||||
queue_signals();
|
||||
if (!(v = fetchvalue(&vbuf, &s, 1, SCANPM_ASSIGNING)))
|
||||
createparam(t, PM_HASHED);
|
||||
|
|
@ -2863,7 +2863,7 @@ setnparam(char *s, mnumber val)
|
|||
return NULL;
|
||||
}
|
||||
if (unset(EXECOPT))
|
||||
return;
|
||||
return NULL;
|
||||
queue_signals();
|
||||
ss = strchr(s, '[');
|
||||
v = getvalue(&vbuf, &s, 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue