diff options
-rw-r--r-- | listbas.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,7 +41,6 @@ #define ENV_MAX_ARGS 64 /* #define DEBUG_ENV */ - /* output modes */ #define M_UTF8 0 /* default */ #define M_UTF8_I 1 /* -x */ @@ -164,6 +163,8 @@ void parse_env_args(void) { if(*p == ' ' || *p == '\t') { *p = '\0'; if(fargc == ENV_MAX_ARGS) { + /* not gonna bother with the man page for this, it's + long enough already. it's a pathological case. */ fprintf(stderr, "%s: Too many spaces in " ENV_OPTS " (max %d)\n", self, ENV_MAX_ARGS - 1); break; } |