File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,11 +92,7 @@ func RetabLoop()
9292endfunc
9393
9494func Test_retab_endless ()
95- " FIXME: why does this hang on MS-Windows?
96- CheckNotMSWindows
97-
9895 " inside try/catch we catch the error message
99- new
10096 call setline (1 , " \t 0\t " )
10197 let caught = ' no'
10298 try
@@ -105,20 +101,21 @@ func Test_retab_endless()
105101 let caught = v: exception
106102 endtry
107103 call assert_match (' E1240:' , caught)
108- bwipe !
104+
109105 set tabstop &
110106endfunc
111107
112108func Test_nocatch_retab_endless ()
113- " FIXME: does this hang on MS-Windows?
114- CheckNotMSWindows
109+ " FIXME: why does this hang on MS-Windows? Is got_int reset somewhere?
110+ if has (' win32' )
111+ let g: skipped_reason = " does not work on MS-Windows"
112+ return
113+ endif
115114
116115 " not inside try/catch an interrupt is generated to get out of loops
117- new
118116 call setline (1 , " \t 0\t " )
119117 call assert_fails (' call RetabLoop()' , [' E1240:' , ' Interrupted' ])
120118
121- bwipe!
122119 set tabstop &
123120endfunc
124121
Original file line number Diff line number Diff line change @@ -734,6 +734,8 @@ static char *(features[]) =
734734
735735static int included_patches [] =
736736{ /* Add new patch number below this line */
737+ /**/
738+ 5105 ,
737739/**/
738740 5104 ,
739741/**/
You can’t perform that action at this time.
0 commit comments