diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-01-27 20:06:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-01-27 20:06:51 +0000 |
commit | c0341d290f9093a0e1fecef254b1cc1b373606e3 (patch) | |
tree | 9b2339dd7bb605463fab77878c3549c316a4bbf3 /src | |
parent | ea7bd261492b41e92d16df665819b01d004294ec (diff) | |
download | emacs-c0341d290f9093a0e1fecef254b1cc1b373606e3.tar.gz |
(Fcall_process): Test only args past args[4] for multibyteness.
Diffstat (limited to 'src')
-rw-r--r-- | src/callproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |