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

updated for version 7.2-169
author vimboss
date Wed, 13 May 2009 16:56:33 +0000
parents f38b7359dafd
children 932ff0c0f57b
comparison
equal deleted inserted replaced
1871:ad41c6afaa7b 1872:f13849167330
3371 if (sp->nextline == NULL) 3371 if (sp->nextline == NULL)
3372 break; 3372 break;
3373 p = skipwhite(sp->nextline); 3373 p = skipwhite(sp->nextline);
3374 if (*p != '\\') 3374 if (*p != '\\')
3375 break; 3375 break;
3376 s = alloc((int)(STRLEN(line) + STRLEN(p))); 3376 s = alloc((unsigned)(STRLEN(line) + STRLEN(p)));
3377 if (s == NULL) /* out of memory */ 3377 if (s == NULL) /* out of memory */
3378 break; 3378 break;
3379 STRCPY(s, line); 3379 STRCPY(s, line);
3380 STRCAT(s, p + 1); 3380 STRCAT(s, p + 1);
3381 vim_free(line); 3381 vim_free(line);