0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -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

@@ -545,11 +545,11 @@ EXTERN int gui_win_y INIT(= -1);
#endif
#ifdef FEAT_CLIPBOARD
EXTERN VimClipboard clip_star; /* PRIMARY selection in X11 */
EXTERN Clipboard_T clip_star; // PRIMARY selection in X11
# ifdef FEAT_X11
EXTERN VimClipboard clip_plus; /* CLIPBOARD selection in X11 */
EXTERN Clipboard_T clip_plus; // CLIPBOARD selection in X11
# else
# define clip_plus clip_star /* there is only one clipboard */
# define clip_plus clip_star // there is only one clipboard
# define ONE_CLIPBOARD
# endif