changeset 26298:759384838eae

(strout): Consider `noninteractive' and use stdout only when PRINTCHARFUN is t.
author Richard M. Stallman <rms@gnu.org>
date Mon, 01 Nov 1999 23:25:14 +0000
parents 4d1e267efd41
children 94438ac8953f
files src/print.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/print.c	Mon Nov 01 23:19:20 1999 +0000
+++ b/src/print.c	Mon Nov 01 23:25:14 1999 +0000
@@ -388,7 +388,7 @@
         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;