comparison src/edit.c @ 548:f43150a669dc

updated for version 7.0155
author vimboss
date Mon, 10 Oct 2005 20:59:28 +0000
parents 2df7f3a5eb96
children 25a70b1cd2da
comparison
equal deleted inserted replaced
547:513d037fad50 548:f43150a669dc
3029 break; 3029 break;
3030 3030
3031 #ifdef FEAT_COMPL_FUNC 3031 #ifdef FEAT_COMPL_FUNC
3032 case CTRL_X_FUNCTION: 3032 case CTRL_X_FUNCTION:
3033 case CTRL_X_OMNI: 3033 case CTRL_X_OMNI:
3034 if (*compl_pattern == NUL) 3034 num_matches = expand_by_function(type, compl_pattern, &matches);
3035 num_matches = 0;
3036 else
3037 num_matches = expand_by_function(type, compl_pattern, &matches);
3038 if (num_matches > 0) 3035 if (num_matches > 0)
3039 ins_compl_add_matches(num_matches, matches, dir); 3036 ins_compl_add_matches(num_matches, matches, dir);
3040 break; 3037 break;
3041 #endif 3038 #endif
3042 3039