about summary refs log tree commit diff
path: root/Src/Zle/computil.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Zle/computil.c')
-rw-r--r--Src/Zle/computil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c
index e56972cee..b76b7ad8a 100644
--- a/Src/Zle/computil.c
+++ b/Src/Zle/computil.c
@@ -1683,7 +1683,7 @@ ca_inactive(Cadef d, char **xor, int cur, int opts, char *optname)
 	    } else if (x[0] == '*' && !x[1]) {
 		if (d->rest && (!set || d->rest->set))
 		    d->rest->active = 0;
-	    } else if (x[0] >= '0' && x[0] <= '9') {
+	    } else if (idigit(x[0])) {
 		int n = atoi(x);
 		Caarg a = d->args;