diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-20 20:13:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-20 20:13:45 +0200 |
commit | 5843f5f37b0632e2d706abc9014bfd7d98f7b02e (patch) | |
tree | 2f1af5fd16214dfdf8edc8717e06a8b0aab81c1a /src/mark.c | |
parent | 9a4a8c4d5993c6371486c895a515c2ad351e9aaa (diff) | |
download | vim-git-5843f5f37b0632e2d706abc9014bfd7d98f7b02e.tar.gz |
patch 8.1.1891: functions used in one file are globalv8.1.1891
Problem: Functions used in one file are global.
Solution: Add "static". (Yegappan Lakshmanan, closes #4840)
Diffstat (limited to 'src/mark.c')
-rw-r--r-- | src/mark.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mark.c b/src/mark.c index f55365f1f..8a18040c7 100644 --- a/src/mark.c +++ b/src/mark.c @@ -26,6 +26,7 @@ */ static xfmark_T namedfm[NMARKS + EXTRA_MARKS]; /* marks with file nr */ +static void fname2fnum(xfmark_T *fm); static void fmarks_check_one(xfmark_T *fm, char_u *name, buf_T *buf); static char_u *mark_line(pos_T *mp, int lead_len); static void show_one_mark(int, char_u *, pos_T *, char_u *, int current); @@ -509,7 +510,7 @@ getnextmark( * This is used for marks obtained from the .viminfo file. It's postponed * until the mark is used to avoid a long startup delay. */ - void + static void fname2fnum(xfmark_T *fm) { char_u *p; |