diff src/input.cc @ 8749:5a7494ee68a3

liboctave/cmd-edit.cc, src/input.cc: use fputs instead of fprintf
author John W. Eaton <jwe@octave.org>
date Mon, 16 Feb 2009 01:41:06 -0500
parents 5dd06f19e9be
children c74389115610
line wrap: on
line diff
--- a/src/input.cc	Mon Feb 16 00:38:25 2009 -0500
+++ b/src/input.cc	Mon Feb 16 01:41:06 2009 -0500
@@ -206,7 +206,7 @@
 	{
 	  FILE *stream = command_editor::get_output_stream ();
 
-	  fprintf (stream, s.c_str ());
+	  fputs (s.c_str (), stream);
 	  fflush (stream);
 	}