aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/syntax.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-01-19 14:45:50 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-01-19 14:45:50 -0500
commit617c00bd49c2bdb05c8ef31f94e206ba3f80f694 (patch)
tree2804c90f676a47f3f8ca23a11f78e2b8c5446a66 /src/nvim/syntax.c
parentd0debe243276804f59b24156c84174c394bc42bb (diff)
parentdad1e39edf7f704dba40b182c7726ef4bc34c502 (diff)
downloadrneovim-617c00bd49c2bdb05c8ef31f94e206ba3f80f694.tar.gz
rneovim-617c00bd49c2bdb05c8ef31f94e206ba3f80f694.tar.bz2
rneovim-617c00bd49c2bdb05c8ef31f94e206ba3f80f694.zip
Merge pull request #1812 from elmart/remove-long_u-5
Remove project-specific integer types: long_u. (5)
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 3980a4d8e6..f24b2aa80a 100644
--- a/src/nvim/syntax.c
+++ b/src/nvim/syntax.c
@@ -3837,7 +3837,7 @@ static void add_keyword(char_u *name,
}
kp->next_list = copy_id_list(next_list);
- long_u hash = hash_hash(kp->keyword);
+ hash_T hash = hash_hash(kp->keyword);
hashtab_T *ht = (curwin->w_s->b_syn_ic) ? &curwin->w_s->b_keywtab_ic
: &curwin->w_s->b_keywtab;
hashitem_T *hi = hash_lookup(ht, kp->keyword, hash);