diff options
Diffstat (limited to 'coreutils/cut.c')
-rw-r--r-- | coreutils/cut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index e12c56732..e33626d7f 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c | |||
@@ -309,7 +309,7 @@ int cut_main(int argc UNUSED_PARAM, char **argv) | |||
309 | #endif | 309 | #endif |
310 | if (!odelim) | 310 | if (!odelim) |
311 | odelim = (opt & OPT_REGEX) ? " " : delim; | 311 | odelim = (opt & OPT_REGEX) ? " " : delim; |
312 | if (!delim || !*delim) | 312 | if (!delim) |
313 | delim = (opt & OPT_REGEX) ? "[[:space:]]+" : "\t"; | 313 | delim = (opt & OPT_REGEX) ? "[[:space:]]+" : "\t"; |
314 | 314 | ||
315 | // argc -= optind; | 315 | // argc -= optind; |