diff options
| author | Kenichi Handa | 2006-07-26 01:15:30 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-07-26 01:15:30 +0000 |
| commit | 297cc20aff62790288b3d6c804c1ce668a26e6d2 (patch) | |
| tree | 9fdcad049d86ce1a8ecd6dc85069b83518384224 /src | |
| parent | 1f221e7a9de90caff4c237c7ed7abffb8f9407b6 (diff) | |
| download | emacs-297cc20aff62790288b3d6c804c1ce668a26e6d2.tar.gz emacs-297cc20aff62790288b3d6c804c1ce668a26e6d2.zip | |
(x_create_tip_frame) [USE_FONT_BACKEND]: Handle
FontBackend frame parameter.
(x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
x_set_font_backend.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index 85296bc6c35..cc02ac21393 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -3193,6 +3193,9 @@ This function is an internal primitive--use `make-frame' instead. */) | |||
| 3193 | #endif /* not HAVE_XFT */ | 3193 | #endif /* not HAVE_XFT */ |
| 3194 | #endif /* HAVE_FREETYPE */ | 3194 | #endif /* HAVE_FREETYPE */ |
| 3195 | register_font_driver (&xfont_driver, f); | 3195 | register_font_driver (&xfont_driver, f); |
| 3196 | |||
| 3197 | x_default_parameter (f, parms, Qfont_backend, Qnil, | ||
| 3198 | "fontBackend", "FontBackend", RES_TYPE_STRING); | ||
| 3196 | } | 3199 | } |
| 3197 | #endif /* USE_FONT_BACKEND */ | 3200 | #endif /* USE_FONT_BACKEND */ |
| 3198 | 3201 | ||
| @@ -5762,6 +5765,9 @@ frame_parm_handler x_frame_parm_handlers[] = | |||
| 5762 | x_set_fringe_width, | 5765 | x_set_fringe_width, |
| 5763 | x_set_wait_for_wm, | 5766 | x_set_wait_for_wm, |
| 5764 | x_set_fullscreen, | 5767 | x_set_fullscreen, |
| 5768 | #ifdef USE_FONT_BACKEND | ||
| 5769 | x_set_font_backend | ||
| 5770 | #endif /* USE_FONT_BACKEND */ | ||
| 5765 | }; | 5771 | }; |
| 5766 | 5772 | ||
| 5767 | void | 5773 | void |