1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-27 07:41:28 -08:00

(strout): Consider `noninteractive' and use stdout

only when PRINTCHARFUN is t.
This commit is contained in:
Richard M. Stallman 1999-11-01 23:25:14 +00:00
parent 15934ffa0e
commit 7b0cb8a0e7

View file

@ -388,7 +388,7 @@ strout (ptr, size, size_byte, printcharfun, multibyte)
print_chars += size;
#endif /* MAX_PRINT_CHARS */
}
else if (noninteractive)
else if (noninteractive && EQ (printcharfun, Qt))
{
fwrite (ptr, 1, size_byte, stdout);
noninteractive_need_newline = 1;