summaryrefslogtreecommitdiffstats
path: root/src/proto/mark.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-03 17:47:26 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-03 17:47:26 +0200
commitab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd (patch)
tree2f0ec77daa7639d59485f19ea7e2e019cd1b5fb8 /src/proto/mark.pro
parentdec85cf75044ed94f611c825a7a0b0050a2597b9 (diff)
patch 7.4.1988v7.4.1988
Problem: When updating viminfo with file marks there is no time order. Solution: Remember the time when a buffer was last used, store marks for the most recently used buffers.
Diffstat (limited to 'src/proto/mark.pro')
-rw-r--r--src/proto/mark.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/mark.pro b/src/proto/mark.pro
index f24c0355eb..90be1a566e 100644
--- a/src/proto/mark.pro
+++ b/src/proto/mark.pro
@@ -30,6 +30,6 @@ void finish_viminfo_marks(void);
void handle_viminfo_mark(garray_T *values, int force);
void write_viminfo_filemarks(FILE *fp);
int removable(char_u *name);
-int write_viminfo_marks(FILE *fp_out);
-void copy_viminfo_marks(vir_T *virp, FILE *fp_out, int count, int eof, int flags);
+void write_viminfo_marks(FILE *fp_out, garray_T *buflist);
+void copy_viminfo_marks(vir_T *virp, FILE *fp_out, garray_T *buflist, int eof, int flags);
/* vim: set ft=c : */