From 31dacda87423a181da352b0873de55db1a430b1a Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Tue, 13 Jan 2015 11:30:01 +0100 Subject: Remove long_u: (various): Refactor long_u. --- src/nvim/syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/syntax.c') 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); -- cgit