diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-03-15 22:34:55 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-03-15 22:34:55 +0000 |
commit | 3918c950c99a626a9fa40e58d7976bffb2e17f5e (patch) | |
tree | 43cc4ce3c4ed5473772cd4e175f009290efdf961 /src/gui_w16.c | |
parent | 28a37ffcf79cfa8139246cecba918f3258e411ea (diff) | |
download | vim-git-3918c950c99a626a9fa40e58d7976bffb2e17f5e.tar.gz |
updated for version 7.0060
Diffstat (limited to 'src/gui_w16.c')
-rw-r--r-- | src/gui_w16.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/gui_w16.c b/src/gui_w16.c index e6aa85057..497033642 100644 --- a/src/gui_w16.c +++ b/src/gui_w16.c @@ -584,9 +584,6 @@ gui_mch_set_font(GuiFont font) SelectFont(s_hdc, gui.currFont); } - - - /* * Set the current text foreground color. */ @@ -610,6 +607,15 @@ gui_mch_set_bg_color(guicolor_T color) SetBkColor(s_hdc, gui.currBgColor); } +/* + * Set the current text special color. + */ + void +gui_mch_set_sp_color(guicolor_T color) +{ + /* TODO */ +} + void |