Commit c073c5ae authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: don't bother resetting the Unicode code holder

It will be initialized when a new code is started.
Showing with 2 additions and 5 deletions
+2 -5
......@@ -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] = "......";
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment