aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2006-06-19 13:02:33 +0000
committerKenichi Handa2006-06-19 13:02:33 +0000
commitb69299e7fd030fb065d35de2480dcbcbd789a22e (patch)
tree524869a0b6f37b741d677de9e169d848d6ba23a8
parente81f7a5a5606789e32dc8b43e52c05c069b009f4 (diff)
downloademacs-b69299e7fd030fb065d35de2480dcbcbd789a22e.tar.gz
emacs-b69299e7fd030fb065d35de2480dcbcbd789a22e.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog.unicode6
-rw-r--r--src/ChangeLog.unicode31
2 files changed, 37 insertions, 0 deletions
diff --git a/lisp/ChangeLog.unicode b/lisp/ChangeLog.unicode
index f9514dd23cf..b3544889e48 100644
--- a/lisp/ChangeLog.unicode
+++ b/lisp/ChangeLog.unicode
@@ -1,3 +1,9 @@
12006-06-19 Kenichi Handa <handa@m17n.org>
2
3 * faces.el (font-weight-table): Treat regular and normal as the
4 same as medium.
5 (font-slant-table): Add (roman . 100).
6
12006-06-09 Kenichi Handa <handa@m17n.org> 72006-06-09 Kenichi Handa <handa@m17n.org>
2 8
3 * tar-mode.el (tar-extract): Sync with HEAD. 9 * tar-mode.el (tar-extract): Sync with HEAD.
diff --git a/src/ChangeLog.unicode b/src/ChangeLog.unicode
index 5ccf791a154..171502bc337 100644
--- a/src/ChangeLog.unicode
+++ b/src/ChangeLog.unicode
@@ -1,5 +1,36 @@
12006-06-19 Kenichi Handa <handa@m17n.org> 12006-06-19 Kenichi Handa <handa@m17n.org>
2 2
3 * font.h (QCspacing, QCdpi): Extern them.
4 (enum font_spacing): New enum.
5 (FONT_PIXEL_SIZE_QUANTUM): New macro.
6
7 * font.c (POINT_TO_PIXEL): Don't divice POINT by 10.
8 (QCspacing, QCdpi): New variables.
9 (syms_of_font): Initialize them.
10 (font_pixel_size): New function.
11 (font_put_extra): New function.
12 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
13 in FONT_EXTRA.
14 (font_parse_fcname): Handle enumenrated values (e.g. bold). Fix
15 handling font size. Add QCname property that contains only
16 unknown properties.
17 (font_score): Change argument. Caller changed. Pay attention to
18 FONT_PIXEL_SIZE_QUANTUM.
19 (font_sort_entites): Fix handling of font size.
20 (font_list_entities): Likewise.
21 (font_find_for_lface): Likewise.
22 (font_open_for_lface): Likewise.
23 (font_open_by_name): Likewise.
24 (Ffont_spec): Add QCname property that contains only unknown
25 properties.
26
27 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
28 include weight in listing pattern, instead check weight of each
29 listed font. Don't include scalable in pattern. Pay attention to
30 FONT_PIXEL_SIZE_QUANTUM.
31
322006-06-19 Kenichi Handa <handa@m17n.org>
33
3 * lread.c (read_escape): Fix the code synched with HEAD. 34 * lread.c (read_escape): Fix the code synched with HEAD.
4 35
5 * font.c (font_parse_fcname): Fix parsing of point-size. 36 * font.c (font_parse_fcname): Fix parsing of point-size.