From 5e3d6ca435321c82b3e97e536549a30dc3580e17 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 22 Jan 2011 21:25:11 +0100 Subject: [PATCH] updated for version 7.3.107 Problem: Year number for :undolist can be confused with month or day. Solution: Change "%y" to "%Y". --- src/undo.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/undo.c b/src/undo.c index af91bd3cd..998f3f3ae 100644 --- a/src/undo.c +++ b/src/undo.c @@ -2884,7 +2884,7 @@ u_add_time(buf, buflen, tt) (void)strftime((char *)buf, buflen, "%m/%d %H:%M:%S", curtime); else /* long ago */ - (void)strftime((char *)buf, buflen, "%y/%m/%d %H:%M:%S", curtime); + (void)strftime((char *)buf, buflen, "%Y/%m/%d %H:%M:%S", curtime); } else #endif diff --git a/src/version.c b/src/version.c index 0e0870364..12aa05b8f 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 107, /**/ 106, /**/ -- 2.50.1