aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2000-11-06 12:40:14 +0000
committerKenichi Handa2000-11-06 12:40:14 +0000
commitff8dd5d53b117abf8603518355f1e6cd13685ea0 (patch)
treee74bcaed6233ff9ecf0f1b9fc8b7756a73a9810b
parent35bc5887595612ef1660bac93057921411ad79bf (diff)
downloademacs-ff8dd5d53b117abf8603518355f1e6cd13685ea0.tar.gz
emacs-ff8dd5d53b117abf8603518355f1e6cd13685ea0.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog6
-rw-r--r--src/ChangeLog19
2 files changed, 25 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 62276d314d9..749be514062 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-11-06 Kenichi Handa <handa@etl.go.jp>
2
3 * composite.el (composition-function-table): Variable declaration
4 moved to src/composite.c.
5 (compose-chars-after): New optional arg object.
6
12000-11-06 Gerd Moellmann <gerd@gnu.org> 72000-11-06 Gerd Moellmann <gerd@gnu.org>
2 8
3 * startup.el (fancy-splash-delay): Set to 10 seconds. 9 * startup.el (fancy-splash-delay): Set to 10 seconds.
diff --git a/src/ChangeLog b/src/ChangeLog
index 168d290ea2c..4b36b5a39ab 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,22 @@
12000-11-06 Kenichi Handa <handa@etl.go.jp>
2
3 * composite.h (compose_chars_in_text): Add prototype.
4
5 * composite.c (Vcomposition_function_table): New variable.
6 (Qcomposition_function_table): New variable.
7 (run_composition_function): Call
8 Vcompose_chars_after_function with three arguments.
9 (compose_chars_in_text): New function.
10 (syms_of_composite): Modified the doc-string of
11 Vcompose_chars_after_function. Declare composition-function-table
12 as a lisp variable, and initialize it.
13
14 * xfns.c (x_encode_text): Suppress producing escape sequences for
15 composition.
16
17 * xselect.c: Include composite.h.
18 (selection_data_to_lisp_data): Call compose_chars_in_text on STR.
19
12000-11-05 Andrew Innes <andrewi@gnu.org> 202000-11-05 Andrew Innes <andrewi@gnu.org>
2 21
3 * w32term.c (x_produce_glyphs): Fix typo in enum name. 22 * w32term.c (x_produce_glyphs): Fix typo in enum name.