diff options
Diffstat (limited to 'Src/Zle/computil.c')
-rw-r--r-- | Src/Zle/computil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index 72ec4d9e6..d7d44f999 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -2096,7 +2096,7 @@ parse_cvdef(char *nam, char **args) while (args[0][0] == '-' && (args[0][1] == 's' || args[0][1] == 'S') && !args[0][2]) { - if (args[1][0] && args[1][1]) { + if (!args[1][0] || (args[1][0] && args[1][1])) { zwarnnam(nam, "invalid separator: %s", args[1], 0); return NULL; } |