diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-23 22:15:25 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-23 22:15:25 +0200 |
commit | c3328169d5566b97a6a6921067017e4369dd7cd6 (patch) | |
tree | 88ffb8f039efc23a461181aeae7b0bdf606b2404 /src/proto/search.pro | |
parent | c61a48d25995e5ee2a3813f64c531b91bb23e9b9 (diff) | |
download | vim-git-c3328169d5566b97a6a6921067017e4369dd7cd6.tar.gz |
patch 8.1.1736: viminfo support is spread outv8.1.1736
Problem: Viminfo support is spread out.
Solution: Move more viminfo code to viminfo.c. (Yegappan Lakshmanan,
closes #4717) Reorder code to make most functions static.
Diffstat (limited to 'src/proto/search.pro')
-rw-r--r-- | src/proto/search.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/search.pro b/src/proto/search.pro index eb614a18f..143333d46 100644 --- a/src/proto/search.pro +++ b/src/proto/search.pro @@ -46,6 +46,6 @@ int current_quote(oparg_T *oap, long count, int include, int quotechar); int current_search(long count, int forward); int linewhite(linenr_T lnum); void find_pattern_in_path(char_u *ptr, int dir, int len, int whole, int skip_comments, int type, long count, int action, linenr_T start_lnum, linenr_T end_lnum); -int read_viminfo_search_pattern(vir_T *virp, int force); -void write_viminfo_search_pattern(FILE *fp); +struct spat *get_spat(int idx); +int get_spat_last_idx(void); /* vim: set ft=c : */ |