comparison src/misc1.c @ 4940:8bbd0ff486b3 v7.3.1215

updated for version 7.3.1215 Problem: Compiler warning for function not defined. Solution: Add #ifdef.
author Bram Moolenaar <bram@vim.org>
date Mon, 17 Jun 2013 19:26:36 +0200
parents bcb84438bb5b
children 93cccad6a26b
comparison
equal deleted inserted replaced
4939:6e9667d3f166 4940:8bbd0ff486b3
14 #include "vim.h" 14 #include "vim.h"
15 #include "version.h" 15 #include "version.h"
16 16
17 static char_u *vim_version_dir __ARGS((char_u *vimdir)); 17 static char_u *vim_version_dir __ARGS((char_u *vimdir));
18 static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name)); 18 static char_u *remove_tail __ARGS((char_u *p, char_u *pend, char_u *name));
19 #if defined(FEAT_CMDL_COMPL)
19 static void init_users __ARGS((void)); 20 static void init_users __ARGS((void));
21 #endif
20 static int copy_indent __ARGS((int size, char_u *src)); 22 static int copy_indent __ARGS((int size, char_u *src));
21 23
22 /* All user names (for ~user completion as done by shell). */ 24 /* All user names (for ~user completion as done by shell). */
23 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) 25 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
24 static garray_T ga_users; 26 static garray_T ga_users;