* rltty.c (save_tty_chars): Fix compilation-stopping typo.

This commit is contained in:
Christopher Faylor 2001-01-08 14:57:30 +00:00
parent 1302fd5e2b
commit 5844f8455e
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-01-07 Michael Sokolov <msokolov@ivan.Harhan.ORG>
* rltty.c (save_tty_chars): Fix compilation-stopping typo.
2000-07-10 Eli Zaretskii <eliz@is.elta.co.il>
* terminal.c (_rl_get_screen_size) [__DJGPP__]: Determine screen

View file

@ -190,7 +190,7 @@ save_tty_chars (tiop)
_rl_tty_chars.t_intr = tiop->tchars.t_intrc;
_rl_tty_chars.t_quit = tiop->tchars.t_quitc;
_rl_tty_chars.t_start = tiop->tchars.t_startc;
_rl_tty_chars.t_stop = tiop->tchars.t_stopc
_rl_tty_chars.t_stop = tiop->tchars.t_stopc;
_rl_tty_chars.t_eof = tiop->tchars.t_eofc;
_rl_tty_chars.t_eol = '\n';
_rl_tty_chars.t_eol2 = tiop->tchars.t_brkc;