# HG changeset patch # User Christian Brabandt # Date 1470167105 -7200 # Node ID 6818e3c964733dd0b66380596e5f6b74a33727a6 # Parent 35ce559b8553faaf11ac1be3f69c7b3345371b3a commit https://github.com/vim/vim/commit/796aa9c804f09276bd3cc45123f4a191a001dec2 Author: Bram Moolenaar Date: Tue Aug 2 21:41:28 2016 +0200 patch 7.4.2144 Problem: On MS-Windows quickix does not handle a line with 1023 bytes ending in CR-LF properly. Solution: Don't consider CR a line break. (Ken Takata) diff --git a/src/quickfix.c b/src/quickfix.c --- a/src/quickfix.c +++ b/src/quickfix.c @@ -651,11 +651,7 @@ qf_get_next_file_line(qfstate_T *state) discard = FALSE; state->linelen = (int)STRLEN(IObuff); - if (state->linelen == IOSIZE - 1 && !(IObuff[state->linelen - 1] == '\n' -#ifdef USE_CRNL - || IObuff[state->linelen - 1] == '\r' -#endif - )) + if (state->linelen == IOSIZE - 1 && !(IObuff[state->linelen - 1] == '\n')) { /* * The current line exceeds IObuff, continue reading using @@ -680,11 +676,7 @@ qf_get_next_file_line(qfstate_T *state) break; state->linelen = (int)STRLEN(state->growbuf + growbuflen); growbuflen += state->linelen; - if ((state->growbuf)[growbuflen - 1] == '\n' -#ifdef USE_CRNL - || (state->growbuf)[growbuflen - 1] == '\r' -#endif - ) + if ((state->growbuf)[growbuflen - 1] == '\n') break; if (state->growbufsiz == LINE_MAXLEN) { @@ -708,11 +700,7 @@ qf_get_next_file_line(qfstate_T *state) */ if (fgets((char *)IObuff, IOSIZE, state->fd) == NULL || (int)STRLEN(IObuff) < IOSIZE - 1 - || IObuff[IOSIZE - 1] == '\n' -#ifdef USE_CRNL - || IObuff[IOSIZE - 1] == '\r' -#endif - ) + || IObuff[IOSIZE - 1] == '\n') break; } @@ -757,11 +745,13 @@ qf_get_nextline(qfstate_T *state) /* remove newline/CR from the line */ if (state->linelen > 0 && state->linebuf[state->linelen - 1] == '\n') + { state->linebuf[state->linelen - 1] = NUL; #ifdef USE_CRNL - if (state->linelen > 0 && state->linebuf[state->linelen - 1] == '\r') - state->linebuf[state->linelen - 1] = NUL; + if (state->linelen > 1 && state->linebuf[state->linelen - 2] == '\r') + state->linebuf[state->linelen - 2] = NUL; #endif + } #ifdef FEAT_MBYTE remove_bom(state->linebuf); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2144, +/**/ 2143, /**/ 2142,