diff options
| author | Kenichi Handa | 2009-05-21 11:24:19 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2009-05-21 11:24:19 +0000 |
| commit | ef6e069495ace3eab6bf810673f5b3741ceff30c (patch) | |
| tree | a914de3eb3933ea29a312c8cd05843d4e97b6460 /src | |
| parent | 5a189ffa3f87c470840752ea8d3a188f217c31c6 (diff) | |
| download | emacs-ef6e069495ace3eab6bf810673f5b3741ceff30c.tar.gz emacs-ef6e069495ace3eab6bf810673f5b3741ceff30c.zip | |
(Qlatin): Don't make it static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 24 | ||||
| -rw-r--r-- | src/fontset.c | 2 |
2 files changed, 25 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b73bc05325e..d4b1c2daadd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,27 @@ | |||
| 1 | 2009-05-21 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * fontset.c (Qlatin): Don't make it static. | ||
| 4 | |||
| 5 | * xfont.c (xfont_chars_supported, xfont_supported_scripts): New | ||
| 6 | functions. | ||
| 7 | (xfont_scripts_cache, xfont_scratch_props): New variables. | ||
| 8 | (Qlatin, Vscalable_fonts_allowed): Extern it. | ||
| 9 | (xfont_list_pattern): Argument changed. Callers changed. Check | ||
| 10 | Vscalable_fonts_allowed. Check the support of a script. | ||
| 11 | (xfont_list): Don't reject a font spec with :script property. | ||
| 12 | (xfont_has_char): Fix setting of encoding. | ||
| 13 | (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and | ||
| 14 | xfont_scratch_props. | ||
| 15 | |||
| 16 | 2009-05-19 Kenichi Handa <handa@m17n.org> | ||
| 17 | |||
| 18 | * font.c (font_sort_entities): Renamed from font_sort_entites. | ||
| 19 | Callers changed. | ||
| 20 | |||
| 21 | 2009-05-18 Kenichi Handa <handa@m17n.org> | ||
| 22 | |||
| 23 | * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too. | ||
| 24 | |||
| 1 | 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca> | 25 | 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 26 | ||
| 3 | * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window. | 27 | * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window. |
diff --git a/src/fontset.c b/src/fontset.c index 2d3f10d493c..c9ffb6f2c60 100644 --- a/src/fontset.c +++ b/src/fontset.c | |||
| @@ -180,7 +180,7 @@ extern Lisp_Object Qfont; | |||
| 180 | static Lisp_Object Qfontset; | 180 | static Lisp_Object Qfontset; |
| 181 | static Lisp_Object Qfontset_info; | 181 | static Lisp_Object Qfontset_info; |
| 182 | static Lisp_Object Qprepend, Qappend; | 182 | static Lisp_Object Qprepend, Qappend; |
| 183 | static Lisp_Object Qlatin; | 183 | Lisp_Object Qlatin; |
| 184 | 184 | ||
| 185 | /* Vector containing all fontsets. */ | 185 | /* Vector containing all fontsets. */ |
| 186 | static Lisp_Object Vfontset_table; | 186 | static Lisp_Object Vfontset_table; |