Skip to content

Commit 7630195

Browse files
committed
patch 8.0.1134: superfluous call to syn_get_final_id()
Problem: Superfluous call to syn_get_final_id(). Solution: Remove it. (Ken Takata)
1 parent f3d769a commit 7630195

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/syntax.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9556,7 +9556,7 @@ syn_name2attr(char_u *name)
95569556
int id = syn_name2id(name);
95579557

95589558
if (id != 0)
9559-
return syn_id2attr(syn_get_final_id(id));
9559+
return syn_id2attr(id);
95609560
return 0;
95619561
}
95629562

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ static char *(features[]) =
761761

762762
static int included_patches[] =
763763
{ /* Add new patch number below this line */
764+
/**/
765+
1134,
764766
/**/
765767
1133,
766768
/**/

0 commit comments

Comments
 (0)