# HG changeset patch # User Bram Moolenaar # Date 1390497169 -3600 # Node ID be61f315eafe5cbadbd00bf7275e004fe09779db # Parent 5c41aa1c24cf1b5ea7a598ee60ad4474c452eeea updated for version 7.4.157 Problem: Error number used twice. (Yukihiro Nakadaira) Solution: Change the one not referred in the docs. diff --git a/src/undo.c b/src/undo.c --- a/src/undo.c +++ b/src/undo.c @@ -409,7 +409,7 @@ u_savecommon(top, bot, newbot, reload) { /* This happens when the FileChangedRO autocommand changes the * file in a way it becomes shorter. */ - EMSG(_("E834: Line count changed unexpectedly")); + EMSG(_("E881: Line count changed unexpectedly")); return FAIL; } #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 157, +/**/ 156, /**/ 155,