2003-01-25 Yoshinori K. Okuji <okuji@enbug.org>

From Karsten Scheibler <karsten.scheibler@student.uni-halle.de>:
        * stage2/terminfo.c (term): Don't use a C99-style initializer.
This commit is contained in:
okuji 2003-01-24 16:21:35 +00:00
parent 47bd75581e
commit 756934392a
3 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2003-01-25 Yoshinori K. Okuji <okuji@enbug.org>
From Karsten Scheibler <karsten.scheibler@student.uni-halle.de>:
* stage2/terminfo.c (term): Don't use a C99-style initializer.
2003-01-16 Yoshinori K. Okuji <okuji@enbug.org>
From H.J. Lu <hjl@gnu.org>:

1
THANKS
View file

@ -60,6 +60,7 @@ Josip Rodin <joy@cibalia.gkvk.hr>
Julien Bordet <julien.bordet@int-evry.fr>
Julien Perrot <julien.perrot@iie.cnam.fr>
Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>
Karsten Scheibler <karsten.scheibler@student.uni-halle.de>
Khimenko Victor <grub@khim.sch57.msk.ru>
Klaus Reichl <klaus.reichl@alcatel.at>
Kristoffer Branemyr <ztion@swipnet.se>

View file

@ -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