forked from aniani/vim
		
	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:
		| @@ -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 | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user