comparison src/ex_getln.c @ 4265:76aa34cef80f v7.3.883

updated for version 7.3.883 Problem: Can't build with some combination of features. Solution: Adjust #ifdefs.
author Bram Moolenaar <bram@vim.org>
date Sat, 06 Apr 2013 14:29:00 +0200
parents 9945fe0536a3
children 1dc160bf2488
comparison
equal deleted inserted replaced
4264:2d1383658bb4 4265:76aa34cef80f
112 #ifdef FEAT_CMDL_COMPL 112 #ifdef FEAT_CMDL_COMPL
113 static int expand_shellcmd __ARGS((char_u *filepat, int *num_file, char_u ***file, int flagsarg)); 113 static int expand_shellcmd __ARGS((char_u *filepat, int *num_file, char_u ***file, int flagsarg));
114 static int ExpandRTDir __ARGS((char_u *pat, int *num_file, char_u ***file, char *dirname[])); 114 static int ExpandRTDir __ARGS((char_u *pat, int *num_file, char_u ***file, char *dirname[]));
115 # ifdef FEAT_CMDHIST 115 # ifdef FEAT_CMDHIST
116 static char_u *get_history_arg __ARGS((expand_T *xp, int idx)); 116 static char_u *get_history_arg __ARGS((expand_T *xp, int idx));
117 static void clear_hist_entry __ARGS((histentry_T *hisptr));
118 # endif 117 # endif
119 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) 118 # if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL)
120 static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file)); 119 static int ExpandUserDefined __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
121 static int ExpandUserList __ARGS((expand_T *xp, int *num_file, char_u ***file)); 120 static int ExpandUserList __ARGS((expand_T *xp, int *num_file, char_u ***file));
122 # endif 121 # endif
122 #endif
123 #ifdef FEAT_CMDHIST
124 static void clear_hist_entry __ARGS((histentry_T *hisptr));
123 #endif 125 #endif
124 126
125 #ifdef FEAT_CMDWIN 127 #ifdef FEAT_CMDWIN
126 static int ex_window __ARGS((void)); 128 static int ex_window __ARGS((void));
127 #endif 129 #endif