mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00
Remove some occrrences of enc_utf8 and has_mbyte
Removing uses and related dead code in the locallity of changes of the two parent commits.
This commit is contained in:
@@ -1120,8 +1120,8 @@ int do_search(
|
||||
msgbuf = xmalloc(STRLEN(p) + 40);
|
||||
{
|
||||
msgbuf[0] = dirc;
|
||||
if (enc_utf8 && utf_iscomposing(utf_ptr2char(p))) {
|
||||
/* Use a space to draw the composing char on. */
|
||||
if (utf_iscomposing(utf_ptr2char(p))) {
|
||||
// Use a space to draw the composing char on.
|
||||
msgbuf[1] = ' ';
|
||||
STRCPY(msgbuf + 2, p);
|
||||
} else
|
||||
|
Reference in New Issue
Block a user