diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-12 13:08:08 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-12 13:08:08 +0000 |
commit | 47e4c7b8c18bf60b31505afa570257f7263d4940 (patch) | |
tree | ef8f27e3b98c3020e24b3f37332e72c5041ab661 /Src | |
parent | c80d9e45e6e2066103da224276eefcf04a523988 (diff) | |
download | zsh-47e4c7b8c18bf60b31505afa570257f7263d4940.tar.gz zsh-47e4c7b8c18bf60b31505afa570257f7263d4940.tar.xz zsh-47e4c7b8c18bf60b31505afa570257f7263d4940.zip |
forgot one #if for commenting out the group-stuff for $compstate[insert]
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/compcore.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c index e308798e7..33fb435db 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -753,8 +753,9 @@ callcompfunc(char *s, char *fn) else if (!strcmp(compinsert, "all")) useline = 2, usemenu = 0; else if (idigit(*compinsert)) { +#if 0 char *m; - +#endif useline = 1; usemenu = 3; insmnum = atoi(compinsert); #if 0 |