merge from trunk

This commit is contained in:
Joakim Verona 2013-09-16 18:10:39 +02:00
commit c1c9aa247c
3 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,9 @@
2013-09-16 Jan Djärv <jan.h.d@swipnet.se>
* font.c (syms_of_font): Move call to syms_of_(ns|mac)font ...
* nsterm.m (syms_of_nsterm): ... to here.
2013-09-16 Dmitry Antipov <dmantipov@yandex.ru>
* xterm.c (toolkit_scroll_bar_interaction): Use bool for boolean.

View file

@ -5197,12 +5197,6 @@ EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
#ifdef HAVE_NTGUI
syms_of_w32font ();
#endif /* HAVE_NTGUI */
#ifdef HAVE_NS
syms_of_nsfont ();
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050
syms_of_macfont ();
#endif
#endif /* HAVE_NS */
#endif /* HAVE_WINDOW_SYSTEM */
}

View file

@ -7461,4 +7461,12 @@ Nil means use fullscreen the old (< 10.7) way. The old way works better with
/* Tell Emacs about this window system. */
Fprovide (Qns, Qnil);
syms_of_nsfont ();
#ifdef NS_IMPL_COCOA
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050
syms_of_macfont ();
#endif
#endif
}