Skip to content

Commit be4f02a

Browse files
committed
Update vim to 8.0.0002
1 parent 32526c1 commit be4f02a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
cmake_minimum_required(VERSION 2.6)
44
project(VIM)
55

6-
set(VIMMAJOR 7)
7-
set(VIMMINOR 4)
8-
set(VIMPATCH 2156)
6+
set(VIMMAJOR 8)
7+
set(VIMMINOR 0)
8+
set(VIMPATCH 0002)
99
set(VIM_VERSION "${VIMMAJOR}.${VIMMINOR}.${VIMPATCH}")
10-
set(VIM_COCOA_VERSION "0.10")
10+
set(VIM_COCOA_VERSION "0.11")
1111

1212
if (NOT CMAKE_BUILD_TYPE)
1313
set(CMAKE_BUILD_TYPE "Release")

src/gui_mac.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1458,7 +1458,7 @@ int gui_mch_dialog(
14581458
#define Green(c) ((c & 0x0000FF00) >> 8)
14591459
#define Blue(c) ((c & 0x000000FF) >> 0)
14601460

1461-
long_u gui_mch_get_rgb(guicolor_T pixel)
1461+
guicolor_T gui_mch_get_rgb(guicolor_T pixel)
14621462
{
14631463
return (Red(pixel) << 16) + (Green(pixel) << 8) + Blue(pixel);
14641464
}

src/proto/gui_cocoa.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void gui_mch_menu_grey(vimmenu_T *menu, int grey);
6464
void gui_mch_menu_hidden(vimmenu_T *menu, int hidden);
6565
void gui_mch_draw_menubar(void);
6666
int gui_mch_get_lightness(guicolor_T pixel);
67-
long_u gui_mch_get_rgb(guicolor_T pixel);
67+
guicolor_T gui_mch_get_rgb(guicolor_T pixel);
6868
int gui_mch_get_mouse_x(void);
6969
int gui_mch_get_mouse_y(void);
7070
void gui_mch_setmouse(int x, int y);

0 commit comments

Comments
 (0)