From 63acd1060174cd9d3595abb3fe71174c595e8131 Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Mon, 17 Jan 2000 18:25:25 +0000 Subject: zsh-workers/9332 --- Src/Zle/zle_misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Src/Zle/zle_misc.c') diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c index eec325192..4d0669fb6 100644 --- a/Src/Zle/zle_misc.c +++ b/Src/Zle/zle_misc.c @@ -925,9 +925,9 @@ mod_export void iremovesuffix(int c, int keep) { if (suffixfunc) { - List l = getshfunc(suffixfunc); + Eprog prog = getshfunc(suffixfunc); - if (l != &dummy_list) { + if (prog != &dummy_eprog) { LinkList args = newlinklist(); char buf[20]; int osc = sfcontext; @@ -939,7 +939,7 @@ iremovesuffix(int c, int keep) startparamscope(); makezleparams(0); sfcontext = SFC_COMPLETE; - doshfunc(suffixfunc, l, args, 0, 1); + doshfunc(suffixfunc, prog, args, 0, 1); sfcontext = osc; endparamscope(); } -- cgit 1.4.1