aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2008-08-29 08:02:19 +0000
committerKenichi Handa2008-08-29 08:02:19 +0000
commit94baaf4f7c2e85b951dac04c8576c3a33336ccea (patch)
treecb91f3fbd41200d803b0d809219302f6c232fc08
parent3fe3d08bd048d63868bb6cae95337a3a55aa25b5 (diff)
downloademacs-94baaf4f7c2e85b951dac04c8576c3a33336ccea.tar.gz
emacs-94baaf4f7c2e85b951dac04c8576c3a33336ccea.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog50
-rw-r--r--src/ChangeLog5
2 files changed, 55 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bbb10dcf73e..ad294332bb3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,53 @@
12008-08-29 Kenichi Handa <handa@m17n.org>
2
3 These changes are to adjust the automatic composition for the new
4 implementation (avoid using text property).
5
6 * composite.el (composition-function-table): Declaration moved to
7 composite.c.
8 (terminal-composition-base-character-p): Delete it.
9 (terminal-composition-function): Delete it.
10 (terminal-composition-function-table): Delete it.
11 (lgstring-header, lgstring-set-header, lgstring-font)
12 (lgstring-char, lgstring-char-len, lgstring-shaped-p)
13 (lgstring-set-id, lgstring-glyph, lgstring-glyph-len)
14 (lgstring-set-glyph, lglyph-from, lglyph-to, lglyph-char)
15 (lglyph-code, lglyph-width, lglyph-lbearing, lglyph-rbearing)
16 (lglyph-ascent, lglyph-descent, lglyph-adjustment)
17 (lglyph-set-from-to, lglyph-copy, lgstring-insert-glyph)
18 (compose-glyph-string, compose-glyph-string-relative)
19 (compose-gstring-for-graphic, compose-gstring-for-terminal): New
20 functions.
21 (auto-compose-chars): Argument changed.
22
23 * language/european.el: Don't setup composition-function-table.
24 (diacritic-composition-pattern, diacritic-compose-region)
25 (diacritic-compose-string, diacritic-compose-buffer)
26 (diacritic-composition-function): Delete them.
27
28 * language/lao-util.el (lao-composition-function): Argument
29 changed.
30
31 * language/sinhala.el: Fix setting up of
32 composition-function-table.
33
34 * language/thai.el: Fix setting up of composition-function-table.
35
36 * language/thai-util.el: Encoding changed to utf-8.
37 (thai-composition-function): Argument changed.
38
39 * language/indian.el: Fix setting up of
40 composition-function-table.
41 (devanagari-composable-pattern)
42 (tamil-composable-pattern, kannada-composable-pattern)
43 (malayalam-composable-pattern): New variables.
44
45 * international/characters.el (unicode-category-table): Setup
46 unicode-category-table.
47
48 * international/fontset.el (setup-default-fontset): Prepend
49 iso10646-1 fonts to the fallback font groups instead of appending.
50
12008-08-29 Glenn Morris <rgm@gnu.org> 512008-08-29 Glenn Morris <rgm@gnu.org>
2 52
3 * cus-start.el (truncate-partial-width-windows): Changed in 23.1. 53 * cus-start.el (truncate-partial-width-windows): Changed in 23.1.
diff --git a/src/ChangeLog b/src/ChangeLog
index be8e537b34e..bd3d2cc3a81 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12008-08-29 Kenichi Handa <handa@m17n.org> 12008-08-29 Kenichi Handa <handa@m17n.org>
2 2
3 * fileio.c (report_file_error): Don't downcase the first character
4 of errstring if it is still unibyte.
5
62008-08-29 Kenichi Handa <handa@m17n.org>
7
3 These changes are to re-implement the automatic composition so 8 These changes are to re-implement the automatic composition so
4 that it doesn't use text properties. 9 that it doesn't use text properties.
5 10