diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-04-03 18:02:37 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-04-03 18:02:37 +0100 |
commit | 0b962e5685edd41b55d5427b894797e725707639 (patch) | |
tree | 0b6bddeb6a2c7da603b71474b87f185dc14a02ea /src/testdir/test_clientserver.vim | |
parent | 292e1b9f681054a1de8fa22315ae6eedd7acb205 (diff) | |
download | vim-git-0b962e5685edd41b55d5427b894797e725707639.tar.gz |
patch 8.2.4677: the Athena GUI support is outdatedv8.2.4677
Problem: The Athena GUI support is outdated.
Solution: Remove the Athena GUI code.
Diffstat (limited to 'src/testdir/test_clientserver.vim')
-rw-r--r-- | src/testdir/test_clientserver.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/test_clientserver.vim b/src/testdir/test_clientserver.vim index 03d201ddf..aebbc2f6e 100644 --- a/src/testdir/test_clientserver.vim +++ b/src/testdir/test_clientserver.vim @@ -63,8 +63,8 @@ func Test_client_server() " the GUI and check that the remote command still works. " Need to wait for the GUI to start up, otherwise the send hangs in trying " to send to the terminal window. - if has('gui_athena') || has('gui_motif') - " For those GUIs, ignore the 'failed to create input context' error. + if has('gui_motif') + " For this GUI ignore the 'failed to create input context' error. call remote_send(name, ":call test_ignore_error('E285') | gui -f\<CR>") else call remote_send(name, ":gui -f\<CR>") |