From a2286b5c11bccfd1ae91b1bf1ff565c8996f976f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 27 Jan 1998 20:06:51 +0000 Subject: [PATCH] (Fcall_process): Test only args past args[4] for multibyteness. --- src/callproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callproc.c b/src/callproc.c index ca593db58b4..18f11c1d8b7 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -250,7 +250,7 @@ If you quit, the process is killed with SIGINT, or SIGKILL if you quit again.") { int must_encode = 0; - for (i = 0; i < nargs; i++) + for (i = 4; i < nargs; i++) if (STRING_MULTIBYTE (args[i])) must_encode = 1; -- 2.39.2