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:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user