X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/ab8b654efa9524b494014efd35ac426aaa42884b..51969283ec562f968d997a5581724d86d3e8b1d4:/client/ui.c diff --git a/client/ui.c b/client/ui.c index da21049e..1eb877d8 100644 --- a/client/ui.c +++ b/client/ui.c @@ -10,8 +10,10 @@ //----------------------------------------------------------------------------- #include +#include #include #include +#include #include "ui.h" @@ -23,6 +25,8 @@ static char *logfilename = "proxmark3.log"; void PrintAndLog(char *fmt, ...) { + char *saved_line; + int saved_point; va_list argptr, argptr2; static FILE *logfile = NULL; static int logging=1; @@ -34,12 +38,32 @@ void PrintAndLog(char *fmt, ...) logging=0; } } + + int need_hack = (rl_readline_state & RL_STATE_READCMD) > 0; + if (need_hack) { + saved_point = rl_point; + saved_line = rl_copy_text(0, rl_end); + rl_save_prompt(); + rl_replace_line("", 0); + rl_redisplay(); + } + va_start(argptr, fmt); va_copy(argptr2, argptr); vprintf(fmt, argptr); + vprintf(" ", 0); // cleaning prompt va_end(argptr); printf("\n"); + + if (need_hack) { + rl_restore_prompt(); + rl_replace_line(saved_line, 0); + rl_point = saved_point; + rl_redisplay(); + free(saved_line); + } + if (logging && logfile) { vfprintf(logfile, fmt, argptr2); fprintf(logfile,"\n");