From: Bram Moolenaar Date: Thu, 2 Jun 2016 20:18:47 +0000 (+0200) Subject: patch 7.4.1882 X-Git-Tag: v7.4.1882 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b37662a0fbb952838fca87aff4d26b596030b67b;p=thirdparty%2Fvim.git patch 7.4.1882 Problem: Check for line break at end of line wrong. (Dominique Pelle) Solution: Correct the logic. --- diff --git a/src/quickfix.c b/src/quickfix.c index 5228c73e61..23b1705b33 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -643,9 +643,9 @@ qf_init_ext( discard = FALSE; linelen = (int)STRLEN(IObuff); - if (linelen == IOSIZE - 1 && (IObuff[linelen - 1] != '\n' + if (linelen == IOSIZE - 1 && !(IObuff[linelen - 1] == '\n' #ifdef USE_CRNL - || IObuff[linelen - 1] != '\r' + || IObuff[linelen - 1] == '\r' #endif )) { diff --git a/src/version.c b/src/version.c index 53f6098187..5a84b80fdc 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1882, /**/ 1881, /**/