mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.4288: preprocessor indents are inconsistent
Problem: Preprocessor indents are inconsistent. Solution: Fix preprocessor indents. (Ken Takata, closes #9691)
This commit is contained in:
@@ -99,9 +99,9 @@ do_ascii(exarg_T *eap UNUSED)
|
||||
IObuff[len++] = ' ';
|
||||
IObuff[len++] = '<';
|
||||
if (enc_utf8 && utf_iscomposing(c)
|
||||
# ifdef USE_GUI
|
||||
#ifdef USE_GUI
|
||||
&& !gui.in_use
|
||||
# endif
|
||||
#endif
|
||||
)
|
||||
IObuff[len++] = ' '; // draw composing char on top of a space
|
||||
len += (*mb_char2bytes)(c, IObuff + len);
|
||||
|
Reference in New Issue
Block a user