From: batt Date: Mon, 10 Nov 2008 14:44:45 +0000 (+0000) Subject: Merged from external project: X-Git-Tag: 2.0.0~19 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=7784eb12cf77148c5fdf4094d9bc77aee0ebcc1a;p=bertos.git Merged from external project: ********** r22606 | batt | 2008-11-08 12:50:50 +0100 (sab, 08 nov 2008) | 1 line Remove kludge used for displaying prompt in triface. ********** git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1915 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/mware/readline.c b/bertos/mware/readline.c index 83af2077..d7c5aa8c 100644 --- a/bertos/mware/readline.c +++ b/bertos/mware/readline.c @@ -42,7 +42,7 @@ * aim at fast performances (line editing does not require to be blazingly fast). * * \li The first character in the history is always \c \\0, and it is used as a guard. By 'wasting' it - * in this way, the code actually gets much simpler in that we remove many checks when moving + * in this way, the code actually gets much simpler in that we remove many checks when moving * backward (\c i>0 and similar). * * \li While editing, the current index points to the position of the buffer which contains the @@ -399,9 +399,6 @@ const char* rl_readline(struct RLContext* ctx) if (c == '\r' || c == '\n') { - if (ctx->prompt) - rl_puts(ctx, ctx->prompt); - // Terminate line insert_chars(ctx, &ctx->line_pos, NULL, 0); rl_puts(ctx, "\r\n");