# HG changeset patch # User Christian Brabandt # Date 1506081605 -7200 # Node ID b85c981b3a8e1cfc64bbc779e63b1f87cd825964 # Parent 7a887dccd13a4aa4df06becc62bc80549cc896e9 patch 8.0.1134: superfluous call to syn_get_final_id() commit https://github.com/vim/vim/commit/76301956f0c079d893cfd927b11456328bed4f9b Author: Bram Moolenaar Date: Fri Sep 22 13:53:37 2017 +0200 patch 8.0.1134: superfluous call to syn_get_final_id() Problem: Superfluous call to syn_get_final_id(). Solution: Remove it. (Ken Takata) diff --git a/src/syntax.c b/src/syntax.c --- a/src/syntax.c +++ b/src/syntax.c @@ -9556,7 +9556,7 @@ syn_name2attr(char_u *name) int id = syn_name2id(name); if (id != 0) - return syn_id2attr(syn_get_final_id(id)); + return syn_id2attr(id); return 0; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1134, +/**/ 1133, /**/ 1132,