comparison src/testdir/test_clientserver.vim @ 28303:9849df834f1d v8.2.4677

patch 8.2.4677: the Athena GUI support is outdated Commit: https://github.com/vim/vim/commit/0b962e5685edd41b55d5427b894797e725707639 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 3 18:02:37 2022 +0100 patch 8.2.4677: the Athena GUI support is outdated Problem: The Athena GUI support is outdated. Solution: Remove the Athena GUI code.
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Apr 2022 19:15:04 +0200
parents a5a772dace5b
children 98f5a0618a77
comparison
equal deleted inserted replaced
28302:d81a8f2db704 28303:9849df834f1d
61 if has('unix') && has('gui') && !has('gui_running') 61 if has('unix') && has('gui') && !has('gui_running')
62 " Running in a terminal and the GUI is available: Tell the server to open 62 " Running in a terminal and the GUI is available: Tell the server to open
63 " the GUI and check that the remote command still works. 63 " the GUI and check that the remote command still works.
64 " Need to wait for the GUI to start up, otherwise the send hangs in trying 64 " Need to wait for the GUI to start up, otherwise the send hangs in trying
65 " to send to the terminal window. 65 " to send to the terminal window.
66 if has('gui_athena') || has('gui_motif') 66 if has('gui_motif')
67 " For those GUIs, ignore the 'failed to create input context' error. 67 " For this GUI ignore the 'failed to create input context' error.
68 call remote_send(name, ":call test_ignore_error('E285') | gui -f\<CR>") 68 call remote_send(name, ":call test_ignore_error('E285') | gui -f\<CR>")
69 else 69 else
70 call remote_send(name, ":gui -f\<CR>") 70 call remote_send(name, ":gui -f\<CR>")
71 endif 71 endif
72 " Wait for the server to be up and answering requests. 72 " Wait for the server to be up and answering requests.