# HG changeset patch # User Bram Moolenaar # Date 1399981593 -7200 # Node ID be19015ef43cc17825929206790696c2e716035d # Parent 2f9d5f8dc2b6a105044bc8fb0c57d3e4492461b6 updated for version 7.4.286 Problem: Error messages are inconsistant. (ZyX) Solution: Change "Lists" to "list". diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -4431,7 +4431,7 @@ eval4(arg, rettv, evaluate) if (rettv->v_type != var2.v_type) EMSG(_("E691: Can only compare List with List")); else - EMSG(_("E692: Invalid operation for Lists")); + EMSG(_("E692: Invalid operation for List")); clear_tv(rettv); clear_tv(&var2); return FAIL; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 286, +/**/ 285, /**/ 284,