comparison src/composite.c @ 46940:545e543e82d5

*** empty log message ***
author Kenichi Handa <handa@m17n.org>
date Mon, 19 Aug 2002 02:47:19 +0000
parents 2de09ed6c85b
children 49ac77cddafb
comparison
equal deleted inserted replaced
46939:6c76daadf530 46940:545e543e82d5
460 from = start; 460 from = start;
461 if (to < ZV 461 if (to < ZV
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,
469 make_number (from), make_number (to), Qnil); 469 make_number (from), make_number (to), Qnil);
470 } 470 }