comparison src/structs.h @ 632:b6632d553df3 v7.0182

updated for version 7.0182
author vimboss
date Thu, 19 Jan 2006 22:16:24 +0000
parents 81fe2ccc1207
children e4fa26ce8769
comparison
equal deleted inserted replaced
631:68a196b7504d 632:b6632d553df3
399 #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL) 399 #if defined(FEAT_USR_CMDS) && defined(FEAT_EVAL) && defined(FEAT_CMDL_COMPL)
400 char_u *xp_arg; /* completion function */ 400 char_u *xp_arg; /* completion function */
401 int xp_scriptID; /* SID for completion function */ 401 int xp_scriptID; /* SID for completion function */
402 #endif 402 #endif
403 int xp_backslash; /* one of the XP_BS_ values */ 403 int xp_backslash; /* one of the XP_BS_ values */
404 #ifndef BACKSLASH_IN_FILENAME
405 int xp_shell; /* for a shell command more characters
406 need to be escaped */
407 #endif
404 int xp_numfiles; /* number of files found by 408 int xp_numfiles; /* number of files found by
405 file name completion */ 409 file name completion */
406 char_u **xp_files; /* list of files */ 410 char_u **xp_files; /* list of files */
407 } expand_T; 411 } expand_T;
408 412