0
0
mirror of https://github.com/vim/vim.git synced 2025-10-01 04:54:07 -04:00

updated for version 7.0022

This commit is contained in:
Bram Moolenaar
2004-12-12 11:33:30 +00:00
parent 293ee4d421
commit d8b0cf1cc5
20 changed files with 347 additions and 120 deletions

View File

@@ -1209,6 +1209,11 @@ gui_mch_destroy_scrollbar(scrollbar_T *sb)
}
#endif
char_u *gui_mch_getfontname(GuiFont font)
{
return vim_strsave((char_u *)"default");
}
int gui_mch_init_font(char_u *font_name, int fontset)
{
/*D("gui_mch_init_font");*/
@@ -1227,12 +1232,22 @@ gui_mch_adjust_charsize()
}
GuiFont
gui_mch_get_font( char_u *name, int giveErrorIfMissing)
gui_mch_get_font(char_u *name, int giveErrorIfMissing)
{
/*D("gui_mch_get_font");*/
return NULL;
}
/*
* Return the name of font "font" in allocated memory.
* We always use the default font.
*/
char_u *
gui_mch_get_fontname(GuiFont font, char_u *name)
{
return vim_strsave((char_u *)"default");
}
void
gui_mch_set_font(GuiFont font)
{