Skip to content

Commit 63488e8

Browse files
committed
Workaround for #1050
* Revert [MMBackend update] * Skip RunVim in Test_opt_default_cdpath
1 parent 1da0502 commit 63488e8

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/MacVim/MMBackend.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,6 @@ - (void)update
633633
while (CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true)
634634
== kCFRunLoopRunHandledSource)
635635
; // do nothing
636-
[self processInputQueue];
637636
}
638637

639638
- (void)flushQueue:(BOOL UNUSED)force

src/testdir/test_options.vim

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,10 +850,13 @@ func Test_opt_default_cdpath()
850850
else
851851
let $CDPATH='/path/to/dir1;/path/to/dir2'
852852
endif
853+
" Workaround for https://github.com/macvim-dev/macvim/issues/1050
854+
if !(has('gui_macvim') && has('gui_running'))
853855
if RunVim([], after, '')
854856
call assert_equal([], readfile('Xtestout'))
855857
call delete('Xtestout')
856858
endif
859+
endif
857860
endfunc
858861

859862
" Test for setting keycodes using set

0 commit comments

Comments
 (0)