comparison src/spell.c @ 1872:f13849167330 v7.2.169

updated for version 7.2-169
author vimboss
date Wed, 13 May 2009 16:56:33 +0000
parents e2d7622d7089
children c8f343a465a2
comparison
equal deleted inserted replaced
1871:ad41c6afaa7b 1872:f13849167330
16149 * Get list of spelling suggestions. 16149 * Get list of spelling suggestions.
16150 * Used for Insert mode completion CTRL-X ?. 16150 * Used for Insert mode completion CTRL-X ?.
16151 * Returns the number of matches. The matches are in "matchp[]", array of 16151 * Returns the number of matches. The matches are in "matchp[]", array of
16152 * allocated strings. 16152 * allocated strings.
16153 */ 16153 */
16154 /*ARGSUSED*/
16155 int 16154 int
16156 expand_spelling(lnum, col, pat, matchp) 16155 expand_spelling(lnum, pat, matchp)
16157 linenr_T lnum; 16156 linenr_T lnum;
16158 int col;
16159 char_u *pat; 16157 char_u *pat;
16160 char_u ***matchp; 16158 char_u ***matchp;
16161 { 16159 {
16162 garray_T ga; 16160 garray_T ga;
16163 16161