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