mirror of
https://github.com/vim/vim.git
synced 2026-05-28 00:21:37 +02:00
patch 9.1.2115: CI: wrong preprocessor indentation
Problem: CI: wrong preprocessor indentation
(after v9.1.2114)
Solution: Update indentation (Yasuhiro Matsumoto)
closes: #19283
Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
0ac59be071
commit
a7c28bd1b9
+4
-4
@@ -452,11 +452,11 @@ clip_auto_select(void)
|
||||
int
|
||||
clip_isautosel_star(void)
|
||||
{
|
||||
#ifdef FEAT_GUI
|
||||
# ifdef FEAT_GUI
|
||||
if (gui.in_use)
|
||||
return vim_strchr(p_go, GO_ASEL) != NULL
|
||||
&& vim_strchr(p_go, GO_ASELPLUS) == NULL;
|
||||
#endif
|
||||
# endif
|
||||
return clip_autoselect_star;
|
||||
}
|
||||
|
||||
@@ -467,10 +467,10 @@ clip_isautosel_star(void)
|
||||
int
|
||||
clip_isautosel_plus(void)
|
||||
{
|
||||
#ifdef FEAT_GUI
|
||||
# ifdef FEAT_GUI
|
||||
if (gui.in_use)
|
||||
return vim_strchr(p_go, GO_ASELPLUS) != NULL;
|
||||
#endif
|
||||
# endif
|
||||
return clip_autoselect_plus;
|
||||
}
|
||||
|
||||
|
||||
@@ -734,6 +734,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2115,
|
||||
/**/
|
||||
2114,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user