]> code.delx.au - gnu-emacs/commitdiff
(Finsert_startup_screen): Call `insert_char' with a single argument.
authorRichard M. Stallman <rms@gnu.org>
Mon, 11 Aug 1997 00:20:31 +0000 (00:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 11 Aug 1997 00:20:31 +0000 (00:20 +0000)
src/dosfns.c

index 69254ef7089cbce5e5ecf2f0aedbd2fff761a3e2..f0b1c69124e17c8b298e3dd07e3371cce545d6e7 100644 (file)
@@ -222,10 +222,10 @@ Return nil if startup screen is not available.")
     {
       for (j = 0; j < cols; j++)
        {
-         insert_char (*s, 1);
+         insert_char (*s);
          s += 2;
        }
-      insert_char ('\n', 1);
+      insert_char ('\n');
     }
 
   return Qt;