mirror of
https://github.com/vim/vim.git
synced 2025-09-28 04:24:06 -04:00
patch 8.0.1134: superfluous call to syn_get_final_id()
Problem: Superfluous call to syn_get_final_id(). Solution: Remove it. (Ken Takata)
This commit is contained in:
@@ -9556,7 +9556,7 @@ syn_name2attr(char_u *name)
|
|||||||
int id = syn_name2id(name);
|
int id = syn_name2id(name);
|
||||||
|
|
||||||
if (id != 0)
|
if (id != 0)
|
||||||
return syn_id2attr(syn_get_final_id(id));
|
return syn_id2attr(id);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -761,6 +761,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1134,
|
||||||
/**/
|
/**/
|
||||||
1133,
|
1133,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user