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:
ZyX 2018-04-15 18:52:37 +03:00
parent 1df9ac1c03
commit db7f80302b

View File

@ -169,12 +169,9 @@ void do_ascii(exarg_T *eap)
if (len > 0)
IObuff[len++] = ' ';
IObuff[len++] = '<';
if (l_enc_utf8 && utf_iscomposing(c)
# ifdef USE_GUI
&& !gui.in_use
# endif
)
IObuff[len++] = ' '; /* draw composing char on top of a space */
if (l_enc_utf8 && utf_iscomposing(c)) {
IObuff[len++] = ' '; // Draw composing char on top of a space.
}
len += (*mb_char2bytes)(c, IObuff + len);
vim_snprintf((char *)IObuff + len, IOSIZE - len,
c < 0x10000 ? _("> %d, Hex %04x, Octal %o")