summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/os_macosx.m8
-rw-r--r--src/version.c2
2 files changed, 6 insertions, 4 deletions
diff --git a/src/os_macosx.m b/src/os_macosx.m
index 3b5c35adb..4c04395ea 100644
--- a/src/os_macosx.m
+++ b/src/os_macosx.m
@@ -40,13 +40,13 @@
NSString *VimPboardType = @"VimPboardType";
void
-clip_mch_lose_selection(VimClipboard *cbd UNUSED)
+clip_mch_lose_selection(Clipboard_T *cbd UNUSED)
{
}
int
-clip_mch_own_selection(VimClipboard *cbd UNUSED)
+clip_mch_own_selection(Clipboard_T *cbd UNUSED)
{
/* This is called whenever there is a new selection and 'guioptions'
* contains the "a" flag (automatically copy selection). Return TRUE, else
@@ -58,7 +58,7 @@ clip_mch_own_selection(VimClipboard *cbd UNUSED)
void
-clip_mch_request_selection(VimClipboard *cbd)
+clip_mch_request_selection(Clipboard_T *cbd)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
@@ -148,7 +148,7 @@ releasepool:
* Send the current selection to the clipboard.
*/
void
-clip_mch_set_selection(VimClipboard *cbd)
+clip_mch_set_selection(Clipboard_T *cbd)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
diff --git a/src/version.c b/src/version.c
index 146f99680..18ef97e5b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -778,6 +778,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1533,
+/**/
1532,
/**/
1531,