mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 13:08:33 +00:00
ex_cmds: Remove #ifdef USE_GUI
`ag` shows that this identifier (`USE_GUI`) is found in exactly one place (zero after this commit). So I assume macros is never defined.
This commit is contained in:
@@ -169,12 +169,9 @@ void do_ascii(exarg_T *eap)
|
|||||||
if (len > 0)
|
if (len > 0)
|
||||||
IObuff[len++] = ' ';
|
IObuff[len++] = ' ';
|
||||||
IObuff[len++] = '<';
|
IObuff[len++] = '<';
|
||||||
if (l_enc_utf8 && utf_iscomposing(c)
|
if (l_enc_utf8 && utf_iscomposing(c)) {
|
||||||
# ifdef USE_GUI
|
IObuff[len++] = ' '; // Draw composing char on top of a space.
|
||||||
&& !gui.in_use
|
}
|
||||||
# endif
|
|
||||||
)
|
|
||||||
IObuff[len++] = ' '; /* draw composing char on top of a space */
|
|
||||||
len += (*mb_char2bytes)(c, IObuff + len);
|
len += (*mb_char2bytes)(c, IObuff + len);
|
||||||
vim_snprintf((char *)IObuff + len, IOSIZE - len,
|
vim_snprintf((char *)IObuff + len, IOSIZE - len,
|
||||||
c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
|
c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
|
||||||
|
Reference in New Issue
Block a user