rc

[fork] interactive rc shell
Log | Files | Refs | README | LICENSE

commit 5b668456266d2da4e1cf34b11841f96b26fdb8eb
parent 51ca079c2f13e1e66e944082be36e34e382eaa76
Author: tgoodwin <tgoodwin>
Date:   Wed,  8 Jul 1998 16:55:30 +0000

fix up readline stuff somewhat

Diffstat:
Msignal.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/signal.c b/signal.c @@ -27,8 +27,10 @@ extern void catcher(int s) { if (in_readline) { in_readline = FALSE; switch (s) { + extern int rl_pending_input; + default: - _rl_clean_up_for_exit(); + rl_clean_up_for_exit(); rl_deprep_terminal(); rl_clear_signals(); rl_pending_input = 0;