1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 18:41:25 -08:00

*** empty log message ***

This commit is contained in:
Kenichi Handa 2002-08-19 02:47:19 +00:00
parent c1de6316cf
commit 775b3d2d87
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,11 @@
2002-08-19 Kenichi Handa <handa@localhost>
* composite.c (run_composition_function): Call FUNC if it is
fboundp.
* composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
cons, return Qnil.
2002-08-17 Richard M. Stallman <rms@gnu.org>
* s/sol2-5.h (BROKEN_SIGIO): Add #undef.

View file

@ -462,7 +462,7 @@ run_composition_function (from, to, prop)
&& find_composition (to, -1, &start, &end, &prop, Qnil)
&& !COMPOSITION_VALID_P (start, end, prop))
to = end;
if (!NILP (Ffbounpd (func)))
if (!NILP (Ffboundp (func)))
call2 (func, make_number (from), make_number (to));
else if (!NILP (Ffboundp (Vcompose_chars_after_function)))
call3 (Vcompose_chars_after_function,