1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 19:42:53 -08:00

(Fcall_process): Test only args past args[4] for multibyteness.

This commit is contained in:
Richard M. Stallman 1998-01-27 20:06:51 +00:00
parent 15d5b889f0
commit a2286b5c11

View file

@ -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;