diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-01 00:01:28 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-01 00:01:28 +0000 |
commit | e224ffa156ce968d3e823fb8aa77d93812ca4092 (patch) | |
tree | 3b2339f73910b010487b90c7f12ed960c562e46e /src/testdir/test49.vim | |
parent | 03f4855fc252dd389622715dd56cbc49423057ba (diff) | |
download | vim-git-e224ffa156ce968d3e823fb8aa77d93812ca4092.tar.gz |
updated for version 7.0210v7.0210
Diffstat (limited to 'src/testdir/test49.vim')
-rw-r--r-- | src/testdir/test49.vim | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/testdir/test49.vim b/src/testdir/test49.vim index 092c0c809..19ef949ac 100644 --- a/src/testdir/test49.vim +++ b/src/testdir/test49.vim @@ -1,6 +1,6 @@ " Vim script language tests " Author: Servatius Brandt <Servatius.Brandt@fujitsu-siemens.com> -" Last Change: 2005 Jun 18 +" Last Change: 2006 Feb 28 "------------------------------------------------------------------------------- " Test environment {{{1 @@ -382,11 +382,6 @@ function! ExtraVim(...) let func_start = line(".") let func_name = substitute(theline, \ '^\s*fu\%[nction]!\=\s*\(\%(\u\|s:\)\w*\).*', '\1', "") - let func_conts = 0 - elseif theline =~ '^\s*\\' - if in_func - let func_conts = func_conts + 1 - endif elseif theline =~ '^\s*endf' " End of function definition. let in_func = 0 @@ -411,7 +406,7 @@ function! ExtraVim(...) " Add the function breakpoint and note the number of quits " to be used, if specified, or one for every call else. let breakpoints = breakpoints . " -c 'breakadd func " . - \ (line(".") - func_start - func_conts) . " " . + \ (line(".") - func_start) . " " . \ func_name . "'" if quits != "" let debug_quits = debug_quits . quits |