diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-11-24 10:44:08 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-11-24 10:44:08 +0000 |
commit | 8d67429c8b37415b04ec195dab9bdbcec8ec013a (patch) | |
tree | e42f15e902ef3d0454703e90691040c3b603042e /src | |
parent | 79d5c4eff6101f329b8ea52dd9e6d2336ea8bc93 (diff) | |
download | execline-8d67429c8b37415b04ec195dab9bdbcec8ec013a.tar.xz |
Make forstdin only split on newlines by default
Diffstat (limited to 'src')
-rw-r--r-- | src/execline/forstdin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/execline/forstdin.c b/src/execline/forstdin.c index 7979811..323ef59 100644 --- a/src/execline/forstdin.c +++ b/src/execline/forstdin.c @@ -47,7 +47,7 @@ static void parallel_sigchld_handler (int sig) int main (int argc, char const **argv, char const *const *envp) { - char const *delim = " \n\r\t" ; + char const *delim = "\n" ; size_t delimlen = 4 ; size_t nbc = 0 ; unsigned short okcodes[256] ; |