From 8d67429c8b37415b04ec195dab9bdbcec8ec013a Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 24 Nov 2020 10:44:08 +0000 Subject: Make forstdin only split on newlines by default --- src/execline/forstdin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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] ; -- cgit v1.2.3