]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - interactive.c
i9e: Fix a prompt display issue
[paraslash.git] / interactive.c
index 44db6c58fda6b4080c0874725c7a9bd4b9f6fbe4..ef6fc7620195188db8ccf491176142b29690a9ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2011-2013 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -290,24 +290,24 @@ static bool input_available(void)
 static void i9e_line_handler(char *line)
 {
        int ret;
+       struct btr_node *dummy = btr_new_node(&(struct btr_node_description)
+               EMBRACE(.name = "dummy line handler"));
+       i9e_attach_to_stdout(dummy);
 
        ret = i9ep->ici->line_handler(line);
        if (ret < 0)
                PARA_WARNING_LOG("%s\n", para_strerror(-ret));
        rl_set_prompt("");
        if (line) {
-               if (!*line)
-                       rl_set_prompt(i9ep->ici->prompt);
-               else
+               if (*line)
                        add_history(line);
                free(line);
-       } else {
-               rl_set_prompt("");
+       } else
                i9ep->input_eof = true;
-       }
+       btr_remove_node(&dummy);
 }
 
-static void i9e_post_select(__a_unused struct sched *s, struct task *t)
+static int i9e_post_select(__a_unused struct sched *s, __a_unused struct task *t)
 {
        int ret;
        struct i9e_client_info *ici = i9ep->ici;
@@ -361,7 +361,7 @@ rm_btrn:
                wipe_bottom_line();
 out:
        i9ep->caught_sigint = false;
-       t->error = ret;
+       return ret;
 }
 
 static void i9e_pre_select(struct sched *s, __a_unused struct task *t)