aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-08-19 02:47:19 +0000
committerKenichi Handa2002-08-19 02:47:19 +0000
commit775b3d2d87ef566e43f56b7dee53b5036d7eba02 (patch)
tree3f4e8079cb28dc9d7b2ad15cb1d0f20f1d4ebb61 /src
parentc1de6316cfe94ed9fbffcdd6554bdd599d1cc03c (diff)
downloademacs-775b3d2d87ef566e43f56b7dee53b5036d7eba02.tar.gz
emacs-775b3d2d87ef566e43f56b7dee53b5036d7eba02.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/composite.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index cf6b382b0d5..d592bad9b52 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12002-08-19 Kenichi Handa <handa@localhost>
2
3 * composite.c (run_composition_function): Call FUNC if it is
4 fboundp.
5
6 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
7 cons, return Qnil.
8
12002-08-17 Richard M. Stallman <rms@gnu.org> 92002-08-17 Richard M. Stallman <rms@gnu.org>
2 10
3 * s/sol2-5.h (BROKEN_SIGIO): Add #undef. 11 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
diff --git a/src/composite.c b/src/composite.c
index c618b6adc1e..1cc4679d891 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -462,7 +462,7 @@ run_composition_function (from, to, prop)
462 && find_composition (to, -1, &start, &end, &prop, Qnil) 462 && find_composition (to, -1, &start, &end, &prop, Qnil)
463 && !COMPOSITION_VALID_P (start, end, prop)) 463 && !COMPOSITION_VALID_P (start, end, prop))
464 to = end; 464 to = end;
465 if (!NILP (Ffbounpd (func))) 465 if (!NILP (Ffboundp (func)))
466 call2 (func, make_number (from), make_number (to)); 466 call2 (func, make_number (from), make_number (to));
467 else if (!NILP (Ffboundp (Vcompose_chars_after_function))) 467 else if (!NILP (Ffboundp (Vcompose_chars_after_function)))
468 call3 (Vcompose_chars_after_function, 468 call3 (Vcompose_chars_after_function,