aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-08-11 00:20:31 +0000
committerRichard M. Stallman1997-08-11 00:20:31 +0000
commit65788bc22829e1d832bf2aabc01f00d3aa928f88 (patch)
tree78ba425aee37881d4a28ac53f0f0afabab359764 /src
parente9fbf17cde41c88c225e3483f01846b2e27c129c (diff)
downloademacs-65788bc22829e1d832bf2aabc01f00d3aa928f88.tar.gz
emacs-65788bc22829e1d832bf2aabc01f00d3aa928f88.zip
(Finsert_startup_screen): Call `insert_char' with a single argument.
Diffstat (limited to 'src')
-rw-r--r--src/dosfns.c4
1 files changed, 2 insertions, 2 deletions
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.")
222 { 222 {
223 for (j = 0; j < cols; j++) 223 for (j = 0; j < cols; j++)
224 { 224 {
225 insert_char (*s, 1); 225 insert_char (*s);
226 s += 2; 226 s += 2;
227 } 227 }
228 insert_char ('\n', 1); 228 insert_char ('\n');
229 } 229 }
230 230
231 return Qt; 231 return Qt;