diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-12-13 03:17:11 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-12-13 03:17:11 +0100 |
commit | cc2b9d5dc08cefa0342a25ece71b21d4b4b32e00 (patch) | |
tree | 6034465936f933c63ccd81d791e8425dd1142843 /src/proto/search.pro | |
parent | f1d6ccf2f9c8a8ae2c0ec4577946397c103ead2b (diff) | |
download | vim-cc2b9d5dc08cefa0342a25ece71b21d4b4b32e00.zip |
updated for version 7.4.543
Problem: Since patch 7.4.232 "1,3s/\n//" joins two lines instead of three.
(Eliseo MartÃnez) Issue 287
Solution: Correct the line count. (Christian Brabandt)
Also set the last used search pattern.
Diffstat (limited to 'src/proto/search.pro')
-rw-r--r-- | src/proto/search.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/search.pro b/src/proto/search.pro index f94fb69ab..07f608789 100644 --- a/src/proto/search.pro +++ b/src/proto/search.pro @@ -2,6 +2,7 @@ int search_regcomp __ARGS((char_u *pat, int pat_save, int pat_use, int options, regmmatch_T *regmatch)); char_u *get_search_pat __ARGS((void)); char_u *reverse_text __ARGS((char_u *s)); +void save_re_pat __ARGS((int idx, char_u *pat, int magic)); void save_search_patterns __ARGS((void)); void restore_search_patterns __ARGS((void)); void free_search_patterns __ARGS((void)); |