comparison src/proto/misc2.pro @ 7664:1fded31d9e04 v7.4.1131

commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 18 23:29:01 2016 +0100 patch 7.4.1131 Problem: New lines in the viminfo file are dropped. Solution: Copy lines starting with "|". Fix that when using :rviminfo in a function global variables were restored as function-local variables.
author Christian Brabandt <cb@256bit.org>
date Mon, 18 Jan 2016 23:30:05 +0100
parents 4c922651fd78
children 21b0a39d13ed
comparison
equal deleted inserted replaced
7663:c4b2ec5485e5 7664:1fded31d9e04
54 void ga_clear_strings __ARGS((garray_T *gap)); 54 void ga_clear_strings __ARGS((garray_T *gap));
55 void ga_init __ARGS((garray_T *gap)); 55 void ga_init __ARGS((garray_T *gap));
56 void ga_init2 __ARGS((garray_T *gap, int itemsize, int growsize)); 56 void ga_init2 __ARGS((garray_T *gap, int itemsize, int growsize));
57 int ga_grow __ARGS((garray_T *gap, int n)); 57 int ga_grow __ARGS((garray_T *gap, int n));
58 char_u *ga_concat_strings __ARGS((garray_T *gap, char *sep)); 58 char_u *ga_concat_strings __ARGS((garray_T *gap, char *sep));
59 void ga_add_string __ARGS((garray_T *gap, char_u *p));
59 void ga_concat __ARGS((garray_T *gap, char_u *s)); 60 void ga_concat __ARGS((garray_T *gap, char_u *s));
60 void ga_append __ARGS((garray_T *gap, int c)); 61 void ga_append __ARGS((garray_T *gap, int c));
61 void append_ga_line __ARGS((garray_T *gap)); 62 void append_ga_line __ARGS((garray_T *gap));
62 int name_to_mod_mask __ARGS((int c)); 63 int name_to_mod_mask __ARGS((int c));
63 int simplify_key __ARGS((int key, int *modifiers)); 64 int simplify_key __ARGS((int key, int *modifiers));