From d322be894e532e9148979ab10f3e277f1f359eb1 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 14 Apr 2014 13:36:58 +0200 Subject: vim-patch:7.4.229 Problem: Using ":let" for listing variables and the second one is a curly braces expression may fail. Solution: Check for an "=" in a better way. (ZyX) https://code.google.com/p/vim/source/detail?r=839cca5ec18d560e3714065e54ed38b6e812aaf7 --- src/testdir/test104.in | 16 +++++++++++++++- src/testdir/test104.ok | 11 +++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) (limited to 'src/testdir') diff --git a/src/testdir/test104.in b/src/testdir/test104.in index f329d2dbed..fd847131e9 100644 --- a/src/testdir/test104.in +++ b/src/testdir/test104.in @@ -1,4 +1,4 @@ -Tests for autoload. vim: set ft=vim ts=8 : +Tests for :let. vim: set ft=vim ts=8 : STARTTEST :so small.vim @@ -10,6 +10,20 @@ STARTTEST :catch : $put ='FAIL: ' . v:exception :endtry +:let a = 1 +:let b = 2 +:for letargs in ['a b', '{0 == 1 ? "a" : "b"}', '{0 == 1 ? "a" : "b"} a', 'a {0 == 1 ? "a" : "b"}'] +: try +: redir => messages +: execute 'let' letargs +: redir END +: $put ='OK:' +: $put =split(substitute(messages, '\n', '\0 ', 'g'), '\n') +: catch +: $put ='FAIL: ' . v:exception +: redir END +: endtry +:endfor :/^Results/,$wq! test.out ENDTEST diff --git a/src/testdir/test104.ok b/src/testdir/test104.ok index 5c16509af9..5fb20945c3 100644 --- a/src/testdir/test104.ok +++ b/src/testdir/test104.ok @@ -1,2 +1,13 @@ Results of test104: OK: function('tr') +OK: + a #1 + b #2 +OK: + b #2 +OK: + b #2 + a #1 +OK: + a #1 + b #2 -- cgit