changeset 19288:bdc4b7818976

(Finsert_startup_screen): Call `insert_char' with a single argument.
author Richard M. Stallman <rms@gnu.org>
date Mon, 11 Aug 1997 00:20:31 +0000
parents 653fc5d3caa8
children 4e824f1fe62d
files src/dosfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/dosfns.c	Mon Aug 11 00:20:14 1997 +0000
+++ b/src/dosfns.c	Mon Aug 11 00:20:31 1997 +0000
@@ -222,10 +222,10 @@
     {
       for (j = 0; j < cols; j++)
 	{
-	  insert_char (*s, 1);
+	  insert_char (*s);
 	  s += 2;
 	}
-      insert_char ('\n', 1);
+      insert_char ('\n');
     }
 
   return Qt;