Mercurial > vim
comparison src/ex_getln.c @ 1694:3c6417b7e6ef v7.2b.027
updated for version 7.2b-027
author | vimboss |
---|---|
date | Wed, 06 Aug 2008 12:19:26 +0000 |
parents | 7015ddf81055 |
children | 0c4a465bd741 |
comparison
equal
deleted
inserted
replaced
1693:b6ffc2045211 | 1694:3c6417b7e6ef |
---|---|
6250 eap->cstack->cs_looplevel > 0 ? -1 : | 6250 eap->cstack->cs_looplevel > 0 ? -1 : |
6251 #endif | 6251 #endif |
6252 NUL, eap->cookie, 0); | 6252 NUL, eap->cookie, 0); |
6253 | 6253 |
6254 if (theline == NULL || STRCMP(end_pattern, theline) == 0) | 6254 if (theline == NULL || STRCMP(end_pattern, theline) == 0) |
6255 { | |
6256 vim_free(theline); | |
6255 break; | 6257 break; |
6258 } | |
6256 | 6259 |
6257 ga_concat(&ga, theline); | 6260 ga_concat(&ga, theline); |
6258 ga_append(&ga, '\n'); | 6261 ga_append(&ga, '\n'); |
6259 vim_free(theline); | 6262 vim_free(theline); |
6260 } | 6263 } |