1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-04 10:41:11 +02:00

zsh-workers/7627

This commit is contained in:
Tanaka Akira 1999-09-02 09:41:02 +00:00
parent b3257a4708
commit b13200b2a3

View file

@ -1733,7 +1733,9 @@ unsetparam(char *s)
{
Param pm;
if ((pm = (Param) paramtab->getnode(paramtab, s)))
if ((pm = (Param) (paramtab == realparamtab ?
gethashnode2(paramtab, s) :
paramtab->getnode(paramtab, s))))
unsetparam_pm(pm, 0, 1);
}