diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-04-26 21:51:48 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-04-26 21:51:48 +0200 |
commit | c285fe7c3ffdb3ec4eff20a1d1d5accfc80f1a86 (patch) | |
tree | e243faa803ac959df813ceae5dd28a9ba4bec459 /src/gui_w32.c | |
parent | e8aee7dcf9b12becff86e8ce1783a86801c5f9f6 (diff) | |
download | vim-git-c285fe7c3ffdb3ec4eff20a1d1d5accfc80f1a86.tar.gz |
patch 7.4.1794v7.4.1794
Problem: Can't build on MS-Windows.
Solution: Add missing declaration.
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 82cad1cf3..10c14c9d9 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1562,6 +1562,7 @@ gui_mch_free_font(GuiFont font) guicolor_T gui_mch_get_color(char_u *name) { + int i; typedef struct SysColorTable { @@ -1617,6 +1618,7 @@ gui_mch_get_color(char_u *name) return gui_get_color_cmn(name); } + /* * Return OK if the key with the termcap name "name" is supported. */ |