aboutsummaryrefslogtreecommitdiff
path: root/readline
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2001-01-08 14:57:30 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2001-01-08 14:57:30 +0000
commit5844f8455e993cb2eac8f1bc5482694c17eb0fb4 (patch)
treee964eedfc11e7959ea2bb7c95483d185aa77fd27 /readline
parent1302fd5e2b84ee91daa2507e4e77176a887bd70e (diff)
downloadfsf-binutils-gdb-5844f8455e993cb2eac8f1bc5482694c17eb0fb4.zip
fsf-binutils-gdb-5844f8455e993cb2eac8f1bc5482694c17eb0fb4.tar.gz
fsf-binutils-gdb-5844f8455e993cb2eac8f1bc5482694c17eb0fb4.tar.bz2
* rltty.c (save_tty_chars): Fix compilation-stopping typo.
Diffstat (limited to 'readline')
-rw-r--r--readline/ChangeLog.Cygnus4
-rw-r--r--readline/rltty.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/readline/ChangeLog.Cygnus b/readline/ChangeLog.Cygnus
index 4556c2a..24bcd5c 100644
--- a/readline/ChangeLog.Cygnus
+++ b/readline/ChangeLog.Cygnus
@@ -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
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;