From d8b0cf1cc5231e19116cc3208b680a07f842bfe9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 12 Dec 2004 11:33:30 +0000 Subject: updated for version 7.0022 --- src/gui_photon.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/gui_photon.c') diff --git a/src/gui_photon.c b/src/gui_photon.c index f2bd5f09b0..b7c92df3dd 100644 --- a/src/gui_photon.c +++ b/src/gui_photon.c @@ -2986,6 +2986,7 @@ gui_mch_init_font(char_u *vim_font_name, int fontset) vim_free( font_name ); return( FAIL ); } + gui_mch_free_font( gui.norm_font ); gui.norm_font = font_tag; } @@ -3046,6 +3047,20 @@ gui_mch_get_font(char_u *vim_font_name, int report_error) return( FAIL ); } +/* + * Return the name of font "font" in allocated memory. + * Don't know how to get the actual name, thus use the provided name. + */ + char_u * +gui_mch_get_fontname(font, name) + GuiFont font; + char_u *name; +{ + if (name == NULL) + return NULL; + return vim_strsave(name); +} + void gui_mch_set_font(GuiFont font) { -- cgit v1.2.3