diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-07-25 20:42:36 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-07-25 20:42:36 +0000 |
commit | 027436338b4b3e746ae5087b8a01c7404619d97b (patch) | |
tree | bd958bdd54dfad7073d368c34fc8cdcf863df9af /src/gui_mac.c | |
parent | c013cb66a6f2403e90a43203e4059b4bb531a8e8 (diff) | |
download | vim-git-027436338b4b3e746ae5087b8a01c7404619d97b.tar.gz |
updated for version 7.0116
Diffstat (limited to 'src/gui_mac.c')
-rw-r--r-- | src/gui_mac.c | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/src/gui_mac.c b/src/gui_mac.c index 8f5424959..f01dc86f3 100644 --- a/src/gui_mac.c +++ b/src/gui_mac.c @@ -3936,8 +3936,11 @@ gui_mch_init_font(font_name, fontset) } +/* + * Adjust gui.char_height (after 'linespace' was changed). + */ int -gui_mch_adjust_charsize() +gui_mch_adjust_charheight() { FontInfo font_info; @@ -4092,19 +4095,6 @@ gui_mch_set_font(font) TextFont(font & 0xFFFF); } -#if 0 /* not used */ -/* - * Return TRUE if the two fonts given are equivalent. - */ - int -gui_mch_same_font(f1, f2) - GuiFont f1; - GuiFont f2; -{ - return f1 == f2; -} -#endif - /* * If a font is not going to be used, free its structure. */ @@ -5107,10 +5097,7 @@ gui_mch_enable_menu(flag) int flag; { /* - * Menu is always active in itself - * (maybe we should only disable a vim menu - * and keep standard menu) - * + * Menu is always active. */ } @@ -5122,9 +5109,7 @@ gui_mch_set_menu_pos(x, y, w, h) int h; { /* - * The menu is always at the top of the screen - * Maybe a futur version will permit a menu in the window - * + * The menu is always at the top of the screen. */ } |