X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=interactive.c;h=ce48af329e45c31961a0a39dbba3b975d67ec207;hp=4de81d0d4a394df6d20f5b3a427ee768118e7981;hb=becfb4be64a123630775b6517279ed20e4b498f8;hpb=c0162946c2124d1afd09bc7fc3b0aa4bb386f9f8 diff --git a/interactive.c b/interactive.c index 4de81d0d..ce48af32 100644 --- a/interactive.c +++ b/interactive.c @@ -31,7 +31,6 @@ struct i9e_private { struct task *task; struct btr_node *stdout_btrn; bool last_write_was_status; - bool line_handler_running; bool input_eof; bool caught_sigint; bool caught_sigterm; @@ -414,10 +413,6 @@ static void update_winsize(void) i9ep->empty_line[i9ep->num_columns] = '\0'; } -/** - * Defined key sequences are mapped to keys starting with this offset. I.e. - * pressing the first defined key sequence yields the key number \p KEY_OFFSET. - */ static int dispatch_key(__a_unused int count, __a_unused int key) { int i, ret; @@ -484,7 +479,6 @@ int i9e_open(struct i9e_client_info *ici, struct sched *s) if (ici->producer) { rl_callback_handler_install("", i9e_line_handler); i9e_attach_to_stdout(ici->producer); - rl_set_keymap(i9ep->bare_km); } else rl_callback_handler_install(i9ep->ici->prompt, i9e_line_handler); return 1; @@ -561,8 +555,6 @@ void ie9_print_status_bar(char *buf, unsigned len) * Tell i9e that the caller received a signal. * * \param sig_num The number of the signal received. - * - * Currently the function only cares about \p SIGINT, but this may change. */ void i9e_signal_dispatch(int sig_num) {