]> granicus.if.org Git - nethack/commitdiff
fix date.h/patchlevel.h removal typo
authornethack.rankin <nethack.rankin>
Sat, 21 Jan 2012 09:00:37 +0000 (09:00 +0000)
committernethack.rankin <nethack.rankin>
Sat, 21 Jan 2012 09:00:37 +0000 (09:00 +0000)
win/X11/winX.c

index 7bc0a47842d34ed5b1b348887c8c30d134c13eba..dbc8d9f987997aa7471971d4c800febf4ef69c3b 100644 (file)
@@ -1070,10 +1070,8 @@ char** argv;
     x_inited = TRUE;   /* X is now initialized */
 
     /* Display the startup banner in the message window. */
-    for (i = 1; i <= 4; ++i)
-       X11_putstr(WIN_MESSAGE, 0, copyright_banner_line(1));
-    X11_putstr(WIN_MESSAGE, 0, "");
-    X11_putstr(WIN_MESSAGE, 0, "");
+    for (i = 1; i <= 4 + 2; ++i) /* (values beyond 4 yield blank lines) */
+       X11_putstr(WIN_MESSAGE, 0, copyright_banner_line(i));
 }
 
 /*