Skip to content

Commit 7416ff4

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 3549534 + 55952d4 commit 7416ff4

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/undo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ undo_read(bufinfo_T *bi, char_u *buffer, size_t size)
10761076
if (bi->bi_used >= bi->bi_avail)
10771077
{
10781078
n = fread(bi->bi_buffer, 1, (size_t)CRYPT_BUF_SIZE, bi->bi_fp);
1079-
if (n <= 0)
1079+
if (n == 0)
10801080
{
10811081
/* Error may be checked for only later. Fill with zeros,
10821082
* so that the reader won't use garbage. */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,8 @@ static char *(features[]) =
779779

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
63,
782784
/**/
783785
62,
784786
/**/

0 commit comments

Comments
 (0)