summaryrefslogtreecommitdiffstats
path: root/src/proto/mark.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-22 20:18:27 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-22 20:18:27 +0200
commit1e78e69680a5f52970d9b1ef60710e556b09b8c2 (patch)
tree1edde6008d7ce0b29e42eb93795a5c5e0a08ac6c /src/proto/mark.pro
parentecaa75b4cea329a3902b8565e028b32279b8322b (diff)
patch 8.1.1730: wrong place for mark viminfo supportv8.1.1730
Problem: Wrong place for mark viminfo support. Solution: Move it to viminfo.c. (Yegappan Lakshmanan, closes #4716)
Diffstat (limited to 'src/proto/mark.pro')
-rw-r--r--src/proto/mark.pro9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/proto/mark.pro b/src/proto/mark.pro
index 150e986c52..663415773c 100644
--- a/src/proto/mark.pro
+++ b/src/proto/mark.pro
@@ -27,12 +27,5 @@ void copy_jumplist(win_T *from, win_T *to);
void free_jumplist(win_T *wp);
void set_last_cursor(win_T *win);
void free_all_marks(void);
-int read_viminfo_filemark(vir_T *virp, int force);
-void prepare_viminfo_marks(void);
-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);
-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);
+xfmark_T *get_namedfm(void);
/* vim: set ft=c : */