comparison src/print.c @ 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 b7aa6ac26872
children c3c9cc1c2379
comparison
equal deleted inserted replaced
26297:4d1e267efd41 26298:759384838eae
386 #ifdef MAX_PRINT_CHARS 386 #ifdef MAX_PRINT_CHARS
387 if (max_print) 387 if (max_print)
388 print_chars += size; 388 print_chars += size;
389 #endif /* MAX_PRINT_CHARS */ 389 #endif /* MAX_PRINT_CHARS */
390 } 390 }
391 else if (noninteractive) 391 else if (noninteractive && EQ (printcharfun, Qt))
392 { 392 {
393 fwrite (ptr, 1, size_byte, stdout); 393 fwrite (ptr, 1, size_byte, stdout);
394 noninteractive_need_newline = 1; 394 noninteractive_need_newline = 1;
395 } 395 }
396 else if (EQ (printcharfun, Qt)) 396 else if (EQ (printcharfun, Qt))