# HG changeset patch # User Richard M. Stallman # Date 941498714 0 # Node ID 759384838eaef46d7ac69f1107604772f61db870 # Parent 4d1e267efd415711548293c49462e8d73f50e0a1 (strout): Consider `noninteractive' and use stdout only when PRINTCHARFUN is t. diff -r 4d1e267efd41 -r 759384838eae src/print.c --- 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;