*** empty log message ***
authorKenichi Handa <handa@m17n.org>
Mon, 19 Jun 2006 13:02:33 +0000 (13:02 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 19 Jun 2006 13:02:33 +0000 (13:02 +0000)
lisp/ChangeLog.unicode
src/ChangeLog.unicode

index f9514dd..b354488 100644 (file)
@@ -1,3 +1,9 @@
+2006-06-19  Kenichi Handa  <handa@m17n.org>
+
+       * faces.el (font-weight-table): Treat regular and normal as the
+       same as medium.
+       (font-slant-table): Add (roman . 100).
+
 2006-06-09  Kenichi Handa  <handa@m17n.org>
 
        * tar-mode.el (tar-extract): Sync with HEAD.
index 5ccf791..171502b 100644 (file)
@@ -1,3 +1,34 @@
+2006-06-19  Kenichi Handa  <handa@m17n.org>
+
+       * font.h (QCspacing, QCdpi): Extern them.
+       (enum font_spacing): New enum.
+       (FONT_PIXEL_SIZE_QUANTUM): New macro.
+
+       * font.c (POINT_TO_PIXEL): Don't divice POINT by 10.
+       (QCspacing, QCdpi): New variables.
+       (syms_of_font): Initialize them.
+       (font_pixel_size): New function.
+       (font_put_extra): New function.
+       (font_parse_xlfd): Fix handling of font size.  Add QCdpi property
+       in FONT_EXTRA.
+       (font_parse_fcname): Handle enumenrated values (e.g. bold).  Fix
+       handling font size.  Add QCname property that contains only
+       unknown properties.
+       (font_score): Change argument.  Caller changed.  Pay attention to
+       FONT_PIXEL_SIZE_QUANTUM.
+       (font_sort_entites): Fix handling of font size.
+       (font_list_entities): Likewise.
+       (font_find_for_lface): Likewise.
+       (font_open_for_lface): Likewise.
+       (font_open_by_name): Likewise.
+       (Ffont_spec): Add QCname property that contains only unknown
+       properties.
+
+       * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.  Don't
+       include weight in listing pattern, instead check weight of each
+       listed font.  Don't include scalable in pattern.  Pay attention to
+       FONT_PIXEL_SIZE_QUANTUM.
+
 2006-06-19  Kenichi Handa  <handa@m17n.org>
 
        * lread.c (read_escape): Fix the code synched with HEAD.