diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-14 21:36:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-14 21:36:54 +0200 |
commit | 0554fa478d27c611d23a814c987eb66f9daae6f7 (patch) | |
tree | f1dc359a778da461f7d32e20aa6f4e50ee0df530 /src/ops.c | |
parent | f42397c395ec8ff2dffef914805b4d9cbf1d600b (diff) | |
download | vim-git-0554fa478d27c611d23a814c987eb66f9daae6f7.tar.gz |
patch 8.1.1531: clipboard type name is inconsistentv8.1.1531
Problem: Clipboard type name is inconsistent.
Solution: Rename VimClipboard to Clipboard_T.
Diffstat (limited to 'src/ops.c')
-rw-r--r-- | src/ops.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6460,7 +6460,7 @@ x11_export_final_selection(void) #endif void -clip_free_selection(VimClipboard *cbd) +clip_free_selection(Clipboard_T *cbd) { yankreg_T *y_ptr = y_current; @@ -6477,7 +6477,7 @@ clip_free_selection(VimClipboard *cbd) * Get the selected text and put it in register '*' or '+'. */ void -clip_get_selection(VimClipboard *cbd) +clip_get_selection(Clipboard_T *cbd) { yankreg_T *old_y_previous, *old_y_current; pos_T old_cursor; @@ -6542,7 +6542,7 @@ clip_yank_selection( int type, char_u *str, long len, - VimClipboard *cbd) + Clipboard_T *cbd) { yankreg_T *y_ptr; @@ -6562,7 +6562,7 @@ clip_yank_selection( * Returns the motion type, or -1 for failure. */ int -clip_convert_selection(char_u **str, long_u *len, VimClipboard *cbd) +clip_convert_selection(char_u **str, long_u *len, Clipboard_T *cbd) { char_u *p; int lnum; |