summaryrefslogtreecommitdiff
path: root/src/proto/ex_getln.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-04-14 23:19:36 +0200
committerBram Moolenaar <Bram@vim.org>2013-04-14 23:19:36 +0200
commit07219f911c86a50840050282baafe896284a5588 (patch)
treebcc552ef5152dfcf5733b7cf0257784bd4ac408a /src/proto/ex_getln.pro
parent6f852a557df33b8d0562aad3ddc3ff529626bb4f (diff)
downloadvim-git-07219f911c86a50840050282baafe896284a5588.tar.gz
updated for version 7.3.892v7.3.892
Problem: Still mering problems for viminfo history. Solution: Do not merge lines when writing, don't write old viminfo lines.
Diffstat (limited to 'src/proto/ex_getln.pro')
-rw-r--r--src/proto/ex_getln.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro
index 26eb00d29..9c2b5f6ea 100644
--- a/src/proto/ex_getln.pro
+++ b/src/proto/ex_getln.pro
@@ -48,8 +48,8 @@ int del_history_idx __ARGS((int histype, int idx));
void remove_key_from_history __ARGS((void));
int get_list_range __ARGS((char_u **str, int *num1, int *num2));
void ex_history __ARGS((exarg_T *eap));
-void prepare_viminfo_history __ARGS((int asklen));
-int read_viminfo_history __ARGS((vir_T *virp));
+void prepare_viminfo_history __ARGS((int asklen, int writing));
+int read_viminfo_history __ARGS((vir_T *virp, int writing));
void finish_viminfo_history __ARGS((void));
void write_viminfo_history __ARGS((FILE *fp));
void cmd_pchar __ARGS((int c, int offset));