We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd190f commit b70aad4Copy full SHA for b70aad4
src/eval.c
@@ -14318,7 +14318,7 @@ f_readfile(argvars, rettv)
14318
tolist = 0;
14319
for ( ; filtd < buflen || readlen <= 0; ++filtd)
14320
{
14321
- if (buf[filtd] == '\n' || readlen <= 0)
+ if (readlen <= 0 || buf[filtd] == '\n')
14322
14323
/* In binary mode add an empty list item when the last
14324
* non-empty line ends in a '\n'. */
src/version.c
@@ -709,6 +709,8 @@ static char *(features[]) =
709
710
static int included_patches[] =
711
{ /* Add new patch number below this line */
712
+/**/
713
+ 243,
714
/**/
715
242,
716
0 commit comments