# HG changeset patch # User Bram Moolenaar # Date 1653679803 -7200 # Node ID b9b8422ad67108f97f1a53ad6612695b7fc6de0a # Parent 7cf98b61e0223b98d2bceeccf9ab3e48431bcfcb patch 8.2.5032: Python 3 test fails without the GUI Commit: https://github.com/vim/vim/commit/ddf531292971f44e8545a3e097c0d8a11773eb38 Author: Bram Moolenaar Date: Fri May 27 20:23:20 2022 +0100 patch 8.2.5032: Python 3 test fails without the GUI Problem: Python 3 test fails without the GUI. Solution: Check the balloon_eval feature is available. diff --git a/src/testdir/test_python3.vim b/src/testdir/test_python3.vim --- a/src/testdir/test_python3.vim +++ b/src/testdir/test_python3.vim @@ -381,11 +381,13 @@ func Test_python3_opt_reset_local_to_glo \ ['errorformat', '%f:%l:%m', '%s-%l-%m', ''], \ ['grepprg', 'ggprg', 'lgprg', ''], \ ['makeprg', 'gmprg', 'lmprg', ''], - \ ['balloonexpr', 'gbexpr', 'lbexpr', ''], \ ['cryptmethod', 'blowfish2', 'zip', ''], \ ['lispwords', 'abc', 'xyz', ''], \ ['makeencoding', 'utf-8', 'latin1', ''], \ ['undolevels', 100, 200, -123456]] + if has('balloon_eval') + call add(bopts, ['balloonexpr', 'gbexpr', 'lbexpr', '']) + endif " Set the global and buffer-local option values and then clear the " buffer-local option value. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 5032, +/**/ 5031, /**/ 5030,