summaryrefslogtreecommitdiff
path: root/gnu/lib/libreadline/rltty.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-03-18 17:42:28 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-03-18 17:42:28 +0000
commit8db88a679997418f39984af821ddb2a7f9538c9c (patch)
treec24b4ca3a9898d4de965e8e3a796f0f8e7da7d7d /gnu/lib/libreadline/rltty.c
parentc5208e263e5c2cbb0bdf5b552fae16589f570167 (diff)
Local patches:
remove bogus savestring prototype that conflicts with gdb (and is not used) fix a typo in sgtty code (not that we use it but...) treat empty environment variables as unset
Diffstat (limited to 'gnu/lib/libreadline/rltty.c')
-rw-r--r--gnu/lib/libreadline/rltty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libreadline/rltty.c b/gnu/lib/libreadline/rltty.c
index b868b6970c2..bacd2fbfd0b 100644
--- a/gnu/lib/libreadline/rltty.c
+++ b/gnu/lib/libreadline/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;