Patch 9.0.1580
Problem: CI: indent test hangs on FreeBSD.
Solution: Set 'nomore' when running the indent tests. (Ozaki Kiichi,
closes #12446)
Files: runtime/indent/testdir/runtest.vim
*** ../vim-9.0.1579/runtime/indent/testdir/runtest.vim 2020-05-06
21:21:02.000000000 +0100
--- runtime/indent/testdir/runtest.vim 2023-05-26 14:35:50.941765120 +0100
***************
*** 11,16 ****
--- 11,18 ----
set nowrapscan
set report=9999
set modeline
+ set debug=throw
+ set nomore
au! SwapExists * call HandleSwapExists()
func HandleSwapExists()
***************
*** 84,90 ****
exe start + 1
if pattern == ''
! exe 'normal =' . (end - 1) . 'G'
else
let lnum = search(pattern)
if lnum <= 0
--- 86,97 ----
exe start + 1
if pattern == ''
! try
! exe 'normal =' . (end - 1) . 'G'
! catch
! call append(indent_at, 'ERROR: ' . v:exception)
! let failed = 1
! endtry
else
let lnum = search(pattern)
if lnum <= 0
***************
*** 99,105 ****
else
exe lnum - 1
endif
! normal ==
endif
endif
endwhile
--- 106,117 ----
else
exe lnum - 1
endif
! try
! normal ==
! catch
! call append(indent_at, 'ERROR: ' . v:exception)
! let failed = 1
! endtry
endif
endif
endwhile
*** ../vim-9.0.1579/src/version.c 2023-05-25 20:13:44.150836181 +0100
--- src/version.c 2023-05-26 14:37:44.665681879 +0100
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 1580,
/**/
--
hundred-and-one symptoms of being an internet addict:
81. At social functions you introduce your husband as "my domain server."
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20230526134249.B2E6F1C0F36%40moolenaar.net.