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/hardcopy.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/hardcopy.c')
-rw-r--r-- | src/nvim/hardcopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c index be6d8ee0ee..8db4c264b2 100644 --- a/src/nvim/hardcopy.c +++ b/src/nvim/hardcopy.c @@ -1285,7 +1285,7 @@ static int prt_collate; * Buffers used when generating PostScript output */ static char_u prt_line_buffer[257]; -static garray_T prt_ps_buffer; +static garray_T prt_ps_buffer = GA_EMPTY_INIT_VALUE; static int prt_do_conv; static vimconv_T prt_conv; |