From: Bram Moolenaar Date: Tue, 14 Aug 2007 20:41:13 +0000 (+0000) Subject: updated for version 7.1-075 X-Git-Tag: v7.1.075 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3185918f8cd281d0af9bd154198491c9744ba4d8;p=vim updated for version 7.1-075 --- diff --git a/src/eval.c b/src/eval.c index f58f52500..8b239f3b2 100644 --- a/src/eval.c +++ b/src/eval.c @@ -18022,7 +18022,9 @@ list_one_var_a(prefix, name, type, string) int type; char_u *string; { - msg_attr(prefix, 0); /* don't use msg(), it overwrites "v:statusmsg" */ + /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */ + msg_start(); + msg_puts(prefix); if (name != NULL) /* "a:" vars don't have a name stored */ msg_puts(name); msg_putchar(' '); diff --git a/src/version.c b/src/version.c index bf7d4e30b..1f98a3b6e 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 75, /**/ 74, /**/