From 31e97bf0ee3149f11826032817c0c84cbca3a65c Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 10 Oct 2006 14:20:13 +0000 Subject: updated for version 7.0-127 --- src/memline.c | 15 ++++++++++++--- src/version.c | 2 ++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/memline.c b/src/memline.c index 6ea2dc5da..5c55e70f2 100644 --- a/src/memline.c +++ b/src/memline.c @@ -1633,6 +1633,7 @@ swapfile_info(fname) int fd; struct block0 b0; time_t x = (time_t)0; + char *p; #ifdef UNIX char_u uname[B0_UNAME_SIZE]; #endif @@ -1652,8 +1653,11 @@ swapfile_info(fname) #endif MSG_PUTS(_(" dated: ")); x = st.st_mtime; /* Manx C can't do &st.st_mtime */ - MSG_PUTS(ctime(&x)); /* includes '\n' */ - + p = ctime(&x); /* includes '\n' */ + if (p == NULL) + MSG_PUTS("(invalid)\n"); + else + MSG_PUTS(p); } /* @@ -3652,6 +3656,7 @@ attention_message(buf, fname) { struct stat st; time_t x, sx; + char *p; ++no_wait_return; (void)EMSG(_("E325: ATTENTION")); @@ -3666,7 +3671,11 @@ attention_message(buf, fname) { MSG_PUTS(_(" dated: ")); x = st.st_mtime; /* Manx C can't do &st.st_mtime */ - MSG_PUTS(ctime(&x)); + p = ctime(&x); /* includes '\n' */ + if (p == NULL) + MSG_PUTS("(invalid)\n"); + else + MSG_PUTS(p); if (sx != 0 && x > sx) MSG_PUTS(_(" NEWER than swap file!\n")); } diff --git a/src/version.c b/src/version.c index 5c5685243..d0cb708df 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 */ +/**/ + 127, /**/ 126, /**/ -- cgit v1.2.1