From: Richard M. Stallman Date: Tue, 27 Jan 1998 20:06:51 +0000 (+0000) Subject: (Fcall_process): Test only args past args[4] for multibyteness. X-Git-Tag: emacs-20.3~2285 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a2286b5c11bccfd1ae91b1bf1ff565c8996f976f;p=emacs.git (Fcall_process): Test only args past args[4] for multibyteness. --- 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;