From 6b6182a61a016aaf230cb117dce58199f4e1ebda Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Sat, 26 Aug 2017 02:42:33 +0530 Subject: [PATCH] Revert "Handle multi-byte: 2 codepoints single column" This reverts commit e8cf0dc663436e2ac30f737a17d8cc91efbdd364. --- nnn.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nnn.c b/nnn.c index 799ad0b2..c7f4375c 100644 --- a/nnn.c +++ b/nnn.c @@ -1024,9 +1024,9 @@ xreadline(char *fname) cleartimeout(); while (1) { - clearprompt(); - buf[len] = '\0'; + buf[len] = ' '; mvaddnwstr(y, x, buf, len + 1); + move(y, x + pos); if ((r = get_wch(ch)) != ERR) { if (r == OK) { @@ -2606,7 +2606,7 @@ nochange: /* Check if another file with same name exists */ if (faccessat(fd, tmp, F_OK, AT_SYMLINK_NOFOLLOW) != -1) { /* File with the same name exists */ - printprompt("Press 'y' to overwrite"); + printprompt("Press 'y' to overwrite: "); cleartimeout(); r = getch(); settimeout();