diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-01-06 18:25:34 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-01-06 18:25:34 +0100 |
commit | ba07ce32cc979417ae41cb7be48ba35c9b4809cd (patch) | |
tree | 13a880ae0a03161ffbbb1b629c4963278080e902 /src/workshop.c | |
parent | 6f9770137369e00bdad6fe9dcfe282cac4dd8c40 (diff) | |
download | vim-git-ba07ce32cc979417ae41cb7be48ba35c9b4809cd.tar.gz |
updated for version 7.2.327v7.2.327
Diffstat (limited to 'src/workshop.c')
-rw-r--r-- | src/workshop.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/workshop.c b/src/workshop.c index 1b491bbb0..7d4e891f3 100644 --- a/src/workshop.c +++ b/src/workshop.c @@ -56,12 +56,12 @@ static void load_buffer_by_number(int, int); static void load_window(char *, int lnum); static void warp_to_pc(int); #ifdef FEAT_BEVAL -void workshop_beval_cb(BalloonEval *, int); +void workshop_beval_cb(BalloonEval *, int); +static int computeIndex(int, char_u *, int); #endif static char *fixAccelText(char *); static void addMenu(char *, char *, char *); static char *lookupVerb(char *, int); -static int computeIndex(int, char_u *, int); static void coloncmd(char *, Boolean); extern Widget vimShell; @@ -1624,8 +1624,6 @@ workshop_beval_cb( } } } -#endif - static int computeIndex( @@ -1649,6 +1647,7 @@ computeIndex( return -1; } +#endif static void addMenu( |