From 76301956f0c079d893cfd927b11456328bed4f9b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 22 Sep 2017 13:53:37 +0200 Subject: patch 8.0.1134: superfluous call to syn_get_final_id() Problem: Superfluous call to syn_get_final_id(). Solution: Remove it. (Ken Takata) --- src/syntax.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/syntax.c b/src/syntax.c index d9a7b4fd8c..e0736cb63b 100644 --- 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 index 8901bb5965..044b98c9cb 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1134, /**/ 1133, /**/ -- cgit v1.2.3