From 2ef4fd884cb459f67f2dff82a609c8b1245ffc0e Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Thu, 13 Apr 2000 08:09:13 +0000 Subject: comment the `#if's for group numbers in $compstate[insert] (10725) --- Src/Zle/compcore.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Src/Zle/compcore.c') diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c index 33fb435db..6e2cbf537 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -63,6 +63,7 @@ int movetoend; mod_export int insmnum, insspace; #if 0 +/* group-numbers in compstate[insert] */ int insgnum, insgroup; /* mod_export */ #endif @@ -754,11 +755,13 @@ callcompfunc(char *s, char *fn) useline = 2, usemenu = 0; else if (idigit(*compinsert)) { #if 0 + /* group-numbers in compstate[insert] */ char *m; #endif useline = 1; usemenu = 3; insmnum = atoi(compinsert); #if 0 + /* group-numbers in compstate[insert] */ if ((m = strchr(compinsert, ':'))) { insgroup = 1; insgnum = atoi(m + 1); @@ -778,6 +781,7 @@ callcompfunc(char *s, char *fn) if (useline && (p = strchr(compinsert, ':'))) { insmnum = atoi(++p); #if 0 + /* group-numbers in compstate[insert] */ if ((p = strchr(p, ':'))) { insgroup = 1; insgnum = atoi(p + 1); @@ -851,6 +855,7 @@ makecomplist(char *s, int incmd, int lst) isuf = NULL; insmnum = 1; #if 0 + /* group-numbers in compstate[insert] */ insgnum = 1; insgroup = 0; #endif -- cgit 1.4.1