summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-02-07 22:03:36 +0000
committerBram Moolenaar <Bram@vim.org>2005-02-07 22:03:36 +0000
commitbee0c5b29f3240868be0677bf964bd3cf2ca52c7 (patch)
tree490728d8cfa7295d31f14599c21e574ebd5d8ad4 /src
parent7c62692d430af7313d52257895cfa8298676b6f6 (diff)
updated for version 7.0049
Diffstat (limited to 'src')
-rw-r--r--src/menu.c3
-rw-r--r--src/proto/ex_cmds2.pro1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/menu.c b/src/menu.c
index 17d4371218..08a7314a25 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -1001,6 +1001,9 @@ free_menu(menup)
vim_free(menu->actext);
#ifdef FEAT_TOOLBAR
vim_free(menu->iconfile);
+# ifdef FEAT_GUI_MOTIF
+ vim_free(menu->xpm_fname);
+# endif
#endif
for (i = 0; i < MENU_MODES; i++)
free_menu_string(menu, i);
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro
index 304bbef8af..3fa692212e 100644
--- a/src/proto/ex_cmds2.pro
+++ b/src/proto/ex_cmds2.pro
@@ -43,6 +43,7 @@ int *source_dbg_tick __ARGS((void *cookie));
int source_level __ARGS((void *cookie));
int do_source __ARGS((char_u *fname, int check_other, int is_vimrc));
void ex_scriptnames __ARGS((exarg_T *eap));
+int has_scriptname __ARGS((char_u *name));
void scriptnames_slash_adjust __ARGS((void));
char_u *get_scriptname __ARGS((scid_T id));
char *fgets_cr __ARGS((char *s, int n, FILE *stream));