From: Richard M. Stallman Date: Mon, 11 Aug 1997 00:20:31 +0000 (+0000) Subject: (Finsert_startup_screen): Call `insert_char' with a single argument. X-Git-Tag: emacs-20.1~660 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65788bc22829e1d832bf2aabc01f00d3aa928f88;p=emacs.git (Finsert_startup_screen): Call `insert_char' with a single argument. --- diff --git a/src/dosfns.c b/src/dosfns.c index 69254ef7089..f0b1c69124e 100644 --- a/src/dosfns.c +++ b/src/dosfns.c @@ -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;