comparison src/os_macosx.m @ 21785:c346db463a59 v8.2.1442

patch 8.2.1442: outdated references to the Mac Carbon GUI Commit: https://github.com/vim/vim/commit/be7529e8890f6e8a656efee8bc60c125dc8c2002 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 13 21:05:39 2020 +0200 patch 8.2.1442: outdated references to the Mac Carbon GUI Problem: Outdated references to the Mac Carbon GUI. Solution: Remove or update references. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/6703)
author Bram Moolenaar <Bram@vim.org>
date Thu, 13 Aug 2020 21:15:03 +0200
parents e86237409bd2
children b90bca860b5a
comparison
equal deleted inserted replaced
21784:a6db2792aefe 21785:c346db463a59
27 #import <AppKit/AppKit.h> 27 #import <AppKit/AppKit.h>
28 28
29 29
30 /* 30 /*
31 * Clipboard support for the console. 31 * Clipboard support for the console.
32 * Don't include this when building the GUI version, the functions in 32 */
33 * gui_mac.c are used then. TODO: remove those instead? 33 #if defined(FEAT_CLIPBOARD)
34 * But for MacVim we do need these ones.
35 */
36 #if defined(FEAT_CLIPBOARD) && (!defined(FEAT_GUI_ENABLED))
37 34
38 /* Used to identify clipboard data copied from Vim. */ 35 /* Used to identify clipboard data copied from Vim. */
39 36
40 NSString *VimPboardType = @"VimPboardType"; 37 NSString *VimPboardType = @"VimPboardType";
41 38