when i type Ctrl+v, then, i type enter, then, i type up,
there is a problem for the prompt.
PS:
if i type Ctrl+y, it's the same problem
i test in the linux mandriva, (the telnet windows, or cygwin, it is good)
i find that if i want to do look that:
char a[10]="abc";
char b[10]="efg";
cli_print(cli,"%s",a);
cli_print(cli,"%s",a);
in the side of the client, look like that:
>abc
>efg
but i want to look like:
>abcefg
how to get this?
thank you.