mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-22 21:01:24 +03:00
tweaks: don't bother resetting the Unicode code holder
It will be initialized when a new code is started.
This commit is contained in:
parent
fc0ddab349
commit
c073c5ae54
@ -1290,12 +1290,9 @@ long get_unicode_kbinput(WINDOW *win, int kbinput)
|
||||
break;
|
||||
}
|
||||
|
||||
/* If we have a full result, reset the Unicode digit counter and the
|
||||
* Unicode sequence holder. */
|
||||
if (retval != ERR) {
|
||||
/* If we have a full result, reset the Unicode digit counter. */
|
||||
if (retval != ERR)
|
||||
uni_digits = 0;
|
||||
uni = 0;
|
||||
}
|
||||
/* Show feedback only when editing, not when at a prompt. */
|
||||
else if (win == edit) {
|
||||
char partial[7] = "......";
|
||||
|
Loading…
Reference in New Issue
Block a user