From 135b410607f008d3709a7b1374f3f37924eb9fe4 Mon Sep 17 00:00:00 2001 From: Sam Bingner Date: Fri, 3 Aug 2018 15:06:38 -1000 Subject: Update vim --- data/vim/patches/8.1.0204 | 58 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 data/vim/patches/8.1.0204 (limited to 'data/vim/patches/8.1.0204') diff --git a/data/vim/patches/8.1.0204 b/data/vim/patches/8.1.0204 new file mode 100644 index 000000000..1f7766673 --- /dev/null +++ b/data/vim/patches/8.1.0204 @@ -0,0 +1,58 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.0204 +Fcc: outbox +From: Bram Moolenaar +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 8.1.0204 +Problem: inputlist() is not tested. +Solution: Add a test. (Dominique Pelle, closes #3240) +Files: src/testdir/test_functions.vim + + +*** ../vim-8.1.0203/src/testdir/test_functions.vim 2018-07-15 20:24:25.827299588 +0200 +--- src/testdir/test_functions.vim 2018-07-22 19:33:58.235966937 +0200 +*************** +*** 810,815 **** +--- 810,826 ---- + bw! + endfunc + ++ func Test_inputlist() ++ call feedkeys(":let c = inputlist(['Select color:', '1. red', '2. green', '3. blue'])\1\", 'tx') ++ call assert_equal(1, c) ++ call feedkeys(":let c = inputlist(['Select color:', '1. red', '2. green', '3. blue'])\2\", 'tx') ++ call assert_equal(2, c) ++ call feedkeys(":let c = inputlist(['Select color:', '1. red', '2. green', '3. blue'])\3\", 'tx') ++ call assert_equal(3, c) ++ ++ call assert_fails('call inputlist("")', 'E686:') ++ endfunc ++ + func Test_balloon_show() + if has('balloon_eval') + " This won't do anything but must not crash either. +*** ../vim-8.1.0203/src/version.c 2018-07-22 07:31:04.742472292 +0200 +--- src/version.c 2018-07-22 19:35:05.935590559 +0200 +*************** +*** 795,796 **** +--- 795,798 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 204, + /**/ + +-- +DINGO: Wicked wicked Zoot ... she is a bad person and she must pay the + penalty. And here in Castle Anthrax, we have but one punishment + ... you must tie her down on a bed ... and spank her. Come! +GIRLS: A spanking! A spanking! + "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD + + /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ +/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ +\\\ an exciting new programming language -- http://www.Zimbu.org /// + \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- cgit v1.2.3