From: Bram Moolenaar Date: Sun, 1 Mar 2020 18:41:43 +0000 (+0100) Subject: patch 8.2.0344: ":def" not skipped properly X-Git-Tag: v8.2.0344 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab55c6826f9080477fea6d5593f0b77931acfc1d;p=vim patch 8.2.0344: ":def" not skipped properly Problem: ":def" not skipped properly. Solution: Add CMD_def to list of commands the require evaluation even when not being executed. --- diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 62cab6e22..f2fb64698 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -2357,6 +2357,7 @@ do_one_cmd( case CMD_finally: case CMD_endtry: case CMD_function: + case CMD_def: break; // Commands that handle '|' themselves. Check: A command should diff --git a/src/version.c b/src/version.c index 56a0aeeef..40c3c75c7 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 344, /**/ 343, /**/