From 5d30654512f1e40479e32f2c02a59fa84bb9118f Mon Sep 17 00:00:00 2001 From: John Schmidt Date: Mon, 31 Mar 2014 17:19:54 +0200 Subject: Rename ga_init2() to ga_init() --- src/digraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/digraph.c') diff --git a/src/digraph.c b/src/digraph.c index 37fe9ad5b1..bfa2d648c9 100644 --- a/src/digraph.c +++ b/src/digraph.c @@ -2017,7 +2017,7 @@ void ex_loadkeymap(exarg_T *eap) keymap_unload(); curbuf->b_kmap_state = 0; - ga_init2(&curbuf->b_kmap_ga, (int)sizeof(kmap_T), 20); + ga_init(&curbuf->b_kmap_ga, (int)sizeof(kmap_T), 20); // Set 'cpoptions' to "C" to avoid line continuation. p_cpo = (char_u *)"C"; -- cgit