# HG changeset patch # User Bram Moolenaar # Date 1295727911 -3600 # Node ID 26fb122355d4d6b04850f7608f1d82da8dbc51c7 # Parent f016c3708ae32436ab545762a1bfb8ebd31af975 updated for version 7.3.107 Problem: Year number for :undolist can be confused with month or day. Solution: Change "%y" to "%Y". diff --git a/src/undo.c b/src/undo.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 107, +/**/ 106, /**/ 105,