diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog.unicode | 17 | ||||
| -rw-r--r-- | src/font.c | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/src/ChangeLog.unicode b/src/ChangeLog.unicode index c7cfafded09..3b7602b587d 100644 --- a/src/ChangeLog.unicode +++ b/src/ChangeLog.unicode | |||
| @@ -1,3 +1,20 @@ | |||
| 1 | 2006-08-21 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * font.c (font_matching_entity): Dolete unused local var. | ||
| 4 | |||
| 5 | * xftfont.c (xftfont_open): Call XftDefaultSubstitute before | ||
| 6 | opening a font. | ||
| 7 | |||
| 8 | * fileio.c (Finsert_file_contents): On recovering a file, assume | ||
| 9 | Unix-like eol. | ||
| 10 | (choose_write_coding_system): On auto-saving a file, force | ||
| 11 | Unix-like eol. | ||
| 12 | |||
| 13 | * coding.c (setup_coding_system): Fix setting of | ||
| 14 | coding->common_flags based on eol_type. | ||
| 15 | (coding_inherit_eol_type): If PARENT is not nil, be sure to | ||
| 16 | inherit from it. | ||
| 17 | |||
| 1 | 2006-08-04 Kenichi Handa <handa@m17n.org> | 18 | 2006-08-04 Kenichi Handa <handa@m17n.org> |
| 2 | 19 | ||
| 3 | * alloc.c (NSTATICS): Increased to 0x600. | 20 | * alloc.c (NSTATICS): Increased to 0x600. |
diff --git a/src/font.c b/src/font.c index b5d814b1dc6..63b762e27ea 100644 --- a/src/font.c +++ b/src/font.c | |||
| @@ -2393,7 +2393,7 @@ font_matching_entity (frame, spec) | |||
| 2393 | && (NILP (ftype) || EQ (driver_list->driver->type, ftype))) | 2393 | && (NILP (ftype) || EQ (driver_list->driver->type, ftype))) |
| 2394 | { | 2394 | { |
| 2395 | Lisp_Object cache = driver_list->driver->get_cache (frame); | 2395 | Lisp_Object cache = driver_list->driver->get_cache (frame); |
| 2396 | Lisp_Object val, key; | 2396 | Lisp_Object key; |
| 2397 | 2397 | ||
| 2398 | xassert (CONSP (cache)); | 2398 | xassert (CONSP (cache)); |
| 2399 | ASET (spec, FONT_TYPE_INDEX, driver_list->driver->type); | 2399 | ASET (spec, FONT_TYPE_INDEX, driver_list->driver->type); |