changeset 2084:30c55a47d6ae

[project @ 1996-04-25 04:37:17 by jwe]
author jwe
date Thu, 25 Apr 1996 04:37:17 +0000
parents 679d7262a525
children 7603b37325db
files src/toplev.cc
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/toplev.cc
+++ b/src/toplev.cc
@@ -630,7 +630,12 @@
 	      
       char ch;
       while (cmd->get (ch))
-	output_buf.put (ch);
+	{
+	  if (return_output || user_pref.page_screen_output)
+	    output_buf.put (ch);
+	  else
+	    cout.put (ch);
+	}
 
       output_buf << ends;