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:
parent
15d5b889f0
commit
a2286b5c11
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue