|
Karsten Hopp |
39fe9c |
To: vim-dev@vim.org
|
|
Karsten Hopp |
39fe9c |
Subject: Patch 7.3.015
|
|
Karsten Hopp |
39fe9c |
Fcc: outbox
|
|
Karsten Hopp |
39fe9c |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
39fe9c |
Mime-Version: 1.0
|
|
Karsten Hopp |
39fe9c |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
39fe9c |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
39fe9c |
------------
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
Patch 7.3.015
|
|
Karsten Hopp |
39fe9c |
Problem: Test is using error message that no longer exists.
|
|
Karsten Hopp |
39fe9c |
Solution: Change E106 to E121. (Dominique Pelle)
|
|
Karsten Hopp |
39fe9c |
Files: src/testdir/test49.vim
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
*** ../vim-7.3.014/src/testdir/test49.vim 2010-08-15 21:57:29.000000000 +0200
|
|
Karsten Hopp |
39fe9c |
--- src/testdir/test49.vim 2010-09-29 16:52:06.000000000 +0200
|
|
Karsten Hopp |
39fe9c |
***************
|
|
Karsten Hopp |
39fe9c |
*** 1,6 ****
|
|
Karsten Hopp |
39fe9c |
" Vim script language tests
|
|
Karsten Hopp |
39fe9c |
" Author: Servatius Brandt <Servatius.Brandt@fujitsu-siemens.com>
|
|
Karsten Hopp |
39fe9c |
! " Last Change: 2006 Apr 28
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
"-------------------------------------------------------------------------------
|
|
Karsten Hopp |
39fe9c |
" Test environment {{{1
|
|
Karsten Hopp |
39fe9c |
--- 1,6 ----
|
|
Karsten Hopp |
39fe9c |
" Vim script language tests
|
|
Karsten Hopp |
39fe9c |
" Author: Servatius Brandt <Servatius.Brandt@fujitsu-siemens.com>
|
|
Karsten Hopp |
39fe9c |
! " Last Change: 2010 Sep 29
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
"-------------------------------------------------------------------------------
|
|
Karsten Hopp |
39fe9c |
" Test environment {{{1
|
|
Karsten Hopp |
39fe9c |
***************
|
|
Karsten Hopp |
39fe9c |
*** 8711,8717 ****
|
|
Karsten Hopp |
39fe9c |
endif
|
|
Karsten Hopp |
39fe9c |
else
|
|
Karsten Hopp |
39fe9c |
if cmd == "let"
|
|
Karsten Hopp |
39fe9c |
! let match = MATCH(0, thrmsg, 'E106', "Unknown variable")
|
|
Karsten Hopp |
39fe9c |
elseif cmd == "unlet"
|
|
Karsten Hopp |
39fe9c |
let match = MATCH(0, thrmsg, 'E108', "No such variable")
|
|
Karsten Hopp |
39fe9c |
endif
|
|
Karsten Hopp |
39fe9c |
--- 8711,8717 ----
|
|
Karsten Hopp |
39fe9c |
endif
|
|
Karsten Hopp |
39fe9c |
else
|
|
Karsten Hopp |
39fe9c |
if cmd == "let"
|
|
Karsten Hopp |
39fe9c |
! let match = MATCH(0, thrmsg, 'E121', "Undefined variable")
|
|
Karsten Hopp |
39fe9c |
elseif cmd == "unlet"
|
|
Karsten Hopp |
39fe9c |
let match = MATCH(0, thrmsg, 'E108', "No such variable")
|
|
Karsten Hopp |
39fe9c |
endif
|
|
Karsten Hopp |
39fe9c |
*** ../vim-7.3.014/src/version.c 2010-09-29 15:50:14.000000000 +0200
|
|
Karsten Hopp |
39fe9c |
--- src/version.c 2010-09-29 16:55:03.000000000 +0200
|
|
Karsten Hopp |
39fe9c |
***************
|
|
Karsten Hopp |
39fe9c |
*** 716,717 ****
|
|
Karsten Hopp |
39fe9c |
--- 716,719 ----
|
|
Karsten Hopp |
39fe9c |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
39fe9c |
+ /**/
|
|
Karsten Hopp |
39fe9c |
+ 15,
|
|
Karsten Hopp |
39fe9c |
/**/
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
--
|
|
Karsten Hopp |
39fe9c |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
39fe9c |
228. You spend Saturday night making the counter on your home page
|
|
Karsten Hopp |
39fe9c |
pass that 2000 mark.
|
|
Karsten Hopp |
39fe9c |
|
|
Karsten Hopp |
39fe9c |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
39fe9c |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
39fe9c |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
39fe9c |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|