bug-grub
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

C99 initializers in stage2/terminfo.c


From: Karsten Scheibler
Subject: C99 initializers in stage2/terminfo.c
Date: Sun, 22 Dec 2002 10:17:56 +0100

--- stage2/terminfo.c.orig      Sun Dec 22 09:38:47 2002
+++ stage2/terminfo.c   Sun Dec 22 09:39:04 2002
@@ -33,11 +33,11 @@
 /* Current terminal capabilities. Default is "vt100".  */
 struct terminfo term =
   {
-    .name                "vt100",
-    .cursor_address      "\e[%i%p1%d;%p2%dH",
-    .clear_screen        "\e[H\e[J",
-    .enter_standout_mode "\e[7m",
-    .exit_standout_mode  "\e[m"
+    .name                = "vt100",
+    .cursor_address      = "\e[%i%p1%d;%p2%dH",
+    .clear_screen        = "\e[H\e[J",
+    .enter_standout_mode = "\e[7m",
+    .exit_standout_mode  = "\e[m"
   };
 
 /* A number of escape sequences are provided in the string valued



reply via email to

[Prev in Thread] Current Thread [Next in Thread]