1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-12-13 08:01:27 +01:00

unposted: fix return types in 28617

This commit is contained in:
Peter Stephenson 2011-01-11 20:42:40 +00:00
parent fe59d196a0
commit ef4055d97c
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,7 @@
2011-01-11 Peter Stephenson <p.w.stephenson@ntlworld.com> 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 * 28611: Src/Zle/zle_move.c: remove unused special behaviour for
VI mark 26. VI mark 26.
@ -14104,5 +14106,5 @@
***************************************************** *****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL * This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5180 $ * $Revision: 1.5181 $
***************************************************** *****************************************************

View file

@ -2823,7 +2823,7 @@ sethparam(char *s, char **val)
return NULL; return NULL;
} }
if (unset(EXECOPT)) if (unset(EXECOPT))
return; return NULL;
queue_signals(); queue_signals();
if (!(v = fetchvalue(&vbuf, &s, 1, SCANPM_ASSIGNING))) if (!(v = fetchvalue(&vbuf, &s, 1, SCANPM_ASSIGNING)))
createparam(t, PM_HASHED); createparam(t, PM_HASHED);
@ -2863,7 +2863,7 @@ setnparam(char *s, mnumber val)
return NULL; return NULL;
} }
if (unset(EXECOPT)) if (unset(EXECOPT))
return; return NULL;
queue_signals(); queue_signals();
ss = strchr(s, '['); ss = strchr(s, '[');
v = getvalue(&vbuf, &s, 1); v = getvalue(&vbuf, &s, 1);