From: Bram Moolenaar Date: Tue, 7 Nov 2006 17:02:30 +0000 (+0000) Subject: updated for version 7.0-159 X-Git-Tag: v7.0.159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f2d9814e58b88c7d298df849e6532791026fa53;p=vim updated for version 7.0-159 --- diff --git a/src/memfile.c b/src/memfile.c index ba2a379af..eac0c0877 100644 --- a/src/memfile.c +++ b/src/memfile.c @@ -1028,12 +1028,12 @@ mf_read(mfp, hp) size = page_size * hp->bh_page_count; if (lseek(mfp->mf_fd, offset, SEEK_SET) != offset) { - EMSG(_("E294: Seek error in swap file read")); + PERROR(_("E294: Seek error in swap file read")); return FAIL; } if ((unsigned)vim_read(mfp->mf_fd, hp->bh_data, size) != size) { - EMSG(_("E295: Read error in swap file")); + PERROR(_("E295: Read error in swap file")); return FAIL; } return OK; @@ -1085,7 +1085,7 @@ mf_write(mfp, hp) offset = (off_t)page_size * nr; if (lseek(mfp->mf_fd, offset, SEEK_SET) != offset) { - EMSG(_("E296: Seek error in swap file write")); + PERROR(_("E296: Seek error in swap file write")); return FAIL; } if (hp2 == NULL) /* freed block, fill with dummy data */ diff --git a/src/version.c b/src/version.c index 772e19cd5..cc123b228 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 159, /**/ 158, /**/