diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-01-08 14:57:30 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-01-08 14:57:30 +0000 |
commit | 5844f8455e993cb2eac8f1bc5482694c17eb0fb4 (patch) | |
tree | e964eedfc11e7959ea2bb7c95483d185aa77fd27 /readline/rltty.c | |
parent | 1302fd5e2b84ee91daa2507e4e77176a887bd70e (diff) | |
download | gdb-5844f8455e993cb2eac8f1bc5482694c17eb0fb4.zip gdb-5844f8455e993cb2eac8f1bc5482694c17eb0fb4.tar.gz gdb-5844f8455e993cb2eac8f1bc5482694c17eb0fb4.tar.bz2 |
* rltty.c (save_tty_chars): Fix compilation-stopping typo.
Diffstat (limited to 'readline/rltty.c')
-rw-r--r-- | readline/rltty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/readline/rltty.c b/readline/rltty.c index 203056e..1d94363 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; |