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/proto/menu.pro | |
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/proto/menu.pro')
-rw-r--r-- | src/proto/menu.pro | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/proto/menu.pro b/src/proto/menu.pro index 411c040b4..95ee48b54 100644 --- a/src/proto/menu.pro +++ b/src/proto/menu.pro @@ -5,7 +5,6 @@ void remove_winbar(win_T *wp); char_u *set_context_in_menu_cmd(expand_T *xp, char_u *cmd, char_u *arg, int forceit); char_u *get_menu_name(expand_T *xp, int idx); char_u *get_menu_names(expand_T *xp, int idx); -char_u *menu_name_skip(char_u *name); int get_menu_index(vimmenu_T *menu, int state); int menu_is_menubar(char_u *name); int menu_is_popup(char_u *name); |