From: Bram Moolenaar Date: Fri, 11 Mar 2005 22:51:16 +0000 (+0000) Subject: updated for version 7.0059 X-Git-Tag: v7.0059 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=11cbeb132602b5145d93aff4c2afe9888ccf03c3;p=vim updated for version 7.0059 --- diff --git a/src/eval.c b/src/eval.c index da2015f31..42556b537 100644 --- a/src/eval.c +++ b/src/eval.c @@ -2625,7 +2625,12 @@ set_context_for_expression(xp, arg, cmdidx) ? EXPAND_EXPRESSION : EXPAND_NOTHING; } else if (c != ' ') + { xp->xp_context = EXPAND_SETTINGS; + if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':') + xp->xp_pattern += 2; + + } } else if (c == '$') { diff --git a/src/installman.sh b/src/installman.sh index b49d2671c..3c34ab691 100755 --- a/src/installman.sh +++ b/src/installman.sh @@ -105,4 +105,4 @@ fi exit $errstatus -# vim: set sw=3 : +# vim: set sw=3 sts=3 :