0
0
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:
K.Takata
2022-02-03 13:05:32 +00:00
committed by Bram Moolenaar
parent 2d3ac2e030
commit 6e1d31e9e3
9 changed files with 34 additions and 32 deletions

View File

@@ -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);