comparison src/globals.h @ 17063:3147c7c2e86b v8.1.1531

patch 8.1.1531: clipboard type name is inconsistent commit https://github.com/vim/vim/commit/0554fa478d27c611d23a814c987eb66f9daae6f7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 14 21:36:54 2019 +0200 patch 8.1.1531: clipboard type name is inconsistent Problem: Clipboard type name is inconsistent. Solution: Rename VimClipboard to Clipboard_T.
author Bram Moolenaar <Bram@vim.org>
date Fri, 14 Jun 2019 21:45:06 +0200
parents d4a7c690c8e6
children 94007c802045
comparison
equal deleted inserted replaced
17062:ee88967a2cd5 17063:3147c7c2e86b
543 EXTERN int gui_win_x INIT(= -1); 543 EXTERN int gui_win_x INIT(= -1);
544 EXTERN int gui_win_y INIT(= -1); 544 EXTERN int gui_win_y INIT(= -1);
545 #endif 545 #endif
546 546
547 #ifdef FEAT_CLIPBOARD 547 #ifdef FEAT_CLIPBOARD
548 EXTERN VimClipboard clip_star; /* PRIMARY selection in X11 */ 548 EXTERN Clipboard_T clip_star; // PRIMARY selection in X11
549 # ifdef FEAT_X11 549 # ifdef FEAT_X11
550 EXTERN VimClipboard clip_plus; /* CLIPBOARD selection in X11 */ 550 EXTERN Clipboard_T clip_plus; // CLIPBOARD selection in X11
551 # else 551 # else
552 # define clip_plus clip_star /* there is only one clipboard */ 552 # define clip_plus clip_star // there is only one clipboard
553 # define ONE_CLIPBOARD 553 # define ONE_CLIPBOARD
554 # endif 554 # endif
555 555
556 # define CLIP_UNNAMED 1 556 # define CLIP_UNNAMED 1
557 # define CLIP_UNNAMED_PLUS 2 557 # define CLIP_UNNAMED_PLUS 2