From: Christopher Faylor Date: Mon, 8 Jan 2001 14:57:30 +0000 (+0000) Subject: * rltty.c (save_tty_chars): Fix compilation-stopping typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5844f8455e993cb2eac8f1bc5482694c17eb0fb4;p=binutils-gdb.git * rltty.c (save_tty_chars): Fix compilation-stopping typo. --- diff --git a/readline/ChangeLog.Cygnus b/readline/ChangeLog.Cygnus index 4556c2ad6ef..24bcd5ccd32 100644 --- a/readline/ChangeLog.Cygnus +++ b/readline/ChangeLog.Cygnus @@ -1,3 +1,7 @@ +2001-01-07 Michael Sokolov + + * rltty.c (save_tty_chars): Fix compilation-stopping typo. + 2000-07-10 Eli Zaretskii * terminal.c (_rl_get_screen_size) [__DJGPP__]: Determine screen diff --git a/readline/rltty.c b/readline/rltty.c index 203056ed093..1d943639f1a 100644 --- a/readline/rltty.c +++ b/readline/rltty.c @@ -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;