aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2018-04-22 20:31:40 +0300
committerZyX <kp-pav@yandex.ru>2018-04-22 20:31:40 +0300
commit4bab9d34e6ec8801d36e2c8594d2122fc45e8db2 (patch)
tree62fea1f88e9a2dd44c39dc5f0097a50bd24f0485 /src/nvim/syntax.c
parent4b41680828c8f629617d90e3c17ff229a44b32d4 (diff)
downloadrneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.tar.gz
rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.tar.bz2
rneovim-4bab9d34e6ec8801d36e2c8594d2122fc45e8db2.zip
*: Fix clint errors
Diffstat (limited to 'src/nvim/syntax.c')
-rw-r--r--src/nvim/syntax.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c
index e229a1f428..55992f8785 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -4561,7 +4561,7 @@ syn_cmd_region (
item = ITEM_END;
} else if (STRCMP(key, "SKIP") == 0) {
if (pat_ptrs[ITEM_SKIP] != NULL) { // One skip pattern allowed.
- illegal = TRUE;
+ illegal = true;
break;
}
item = ITEM_SKIP;