Hi Kiwon and Keedi,
> [...]
> gui_gtk_x11.c: In function 'gui_mch_set_fontset':
> gui_gtk_x11.c:5348: error: 'gui_T' has no member named 'current_font'
> gui_gtk_x11.c: In function 'gui_mch_free_fontset':
> gui_gtk_x11.c:5374: warning: passing argument 1 of 'gdk_font_unref' from
> incompatible pointer type
> make: *** [objects/gui_gtk_x11.o] Error 1
>
> Turning off the '--enable-hangulinput' option might temporally resolve that.
> Now I'm also finding a way to settle the matter completely even turning on
> it.
> But no one has seemed to know it, poor...:-(
Try this patch:
Index: src/gui_gtk_x11.c
===================================================================
--- src/gui_gtk_x11.c (revision 396)
+++ src/gui_gtk_x11.c (working copy)
@@ -5347,7 +5347,7 @@
void
gui_mch_set_fontset(GuiFontset fontset)
{
- gui.current_font = fontset;
+ gui.fontset = fontset;
}
#endif
> [...]
By the way, please always use bottom-posting or interlaced-posting in
this mailing list. Bram hates top-posting.
Regards,
Edward L. Fox
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---