1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 12:20:39 -08:00

(COMPOSITION_MODIFICATION_FUNC): If PROP is not a cons, return Qnil.

This commit is contained in:
Kenichi Handa 2002-08-19 02:46:28 +00:00
parent 9b3b318992
commit c1de6316cf

View file

@ -76,7 +76,7 @@ extern Lisp_Object composition_temp;
#define COMPOSITION_MODIFICATION_FUNC(prop) \
(COMPOSITION_REGISTERD_P (prop) \
? XCDR (XCDR (XCDR (prop))) \
: XCDR (prop))
: CONSP (prop) ? XCDR (prop) : Qnil)
/* Return the method of composition. */
#define COMPOSITION_METHOD(prop) \