0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.1.1531: clipboard type name is inconsistent

Problem:    Clipboard type name is inconsistent.
Solution:   Rename VimClipboard to Clipboard_T.
This commit is contained in:
Bram Moolenaar
2019-06-14 21:36:54 +02:00
parent f42397c395
commit 0554fa478d
19 changed files with 112 additions and 111 deletions

View File

@@ -2872,26 +2872,26 @@ gui_x11_check_copy_area(void)
*/
void
clip_mch_lose_selection(VimClipboard *cbd)
clip_mch_lose_selection(Clipboard_T *cbd)
{
clip_x11_lose_selection(vimShell, cbd);
}
int
clip_mch_own_selection(VimClipboard *cbd)
clip_mch_own_selection(Clipboard_T *cbd)
{
return clip_x11_own_selection(vimShell, cbd);
}
void
clip_mch_request_selection(VimClipboard *cbd)
clip_mch_request_selection(Clipboard_T *cbd)
{
clip_x11_request_selection(vimShell, gui.dpy, cbd);
}
void
clip_mch_set_selection(
VimClipboard *cbd)
Clipboard_T *cbd)
{
clip_x11_set_selection(cbd);
}