diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-06-30 03:57:59 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-06-30 03:57:59 -0400 |
commit | e4abb9e09a0588177f99235526d3fab5d64345b2 (patch) | |
tree | 28b0265ba05af45cdaa983462564fbba186f135b /src/nvim/option.c | |
parent | 2ddeb74202633784b9ebb4b963e2df06ed7332df (diff) | |
parent | 5ed74cfb7c67f79441343ec90548f333dad1729b (diff) | |
download | rneovim-e4abb9e09a0588177f99235526d3fab5d64345b2.tar.gz rneovim-e4abb9e09a0588177f99235526d3fab5d64345b2.tar.bz2 rneovim-e4abb9e09a0588177f99235526d3fab5d64345b2.zip |
Merge #830 'GA_APPEND() and GA_APPEND_VIA_PTR()'
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 8390efe979..9f9c9c279c 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -7499,7 +7499,7 @@ typedef struct { int to; } langmap_entry_T; -static garray_T langmap_mapga; +static garray_T langmap_mapga = GA_EMPTY_INIT_VALUE; /* * Search for an entry in "langmap_mapga" for "from". If found set the "to" |