/* Code conversion functions.
Copyright (C) 1991, 1995 Free Software Foundation, Inc.
Copyright (C) 1995 Sun Microsystems, Inc.
- Copyright (C) 1999,2000,2001,2002,2003,2004,2005,2008 MORIOKA Tomohiko
+ Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2011
+ MORIOKA Tomohiko
This file is part of XEmacs.
/************************************************************************/
/* character composition */
/************************************************************************/
-extern Lisp_Object Qcomposition;
+extern Lisp_Object Qcomposition, Qrep_decomposition;
INLINE_HEADER void
COMPOSE_FLUSH_CHARS (struct decoding_stream *str, unsigned_char_dynarr* dst);
if ( (code_point < 0) || (code_point > 0xEFFFF) )
{
- Lisp_Object map
- = CODING_SYSTEM_ISO2022_INITIAL_CHARSET (str->codesys, 1);
- Lisp_Object ret;
+ Lisp_Object seq = Fchar_feature (make_char (ch),
+ Qrep_decomposition, Qnil,
+ Qnil, Qnil);
+ Lisp_Object map, ret;
+ if ( CONSP (seq) )
+ {
+ Lisp_Object base = Fcar (seq);
+
+ seq = Fcdr (seq);
+ if ( CHARP (base) && CONSP (seq) )
+ {
+ Lisp_Object comb = Fcar (seq);
+
+ if ( CHARP (comb) )
+ {
+ char_encode_utf8 (str, XCHAR (base), dst, flags);
+ char_encode_utf8 (str, XCHAR (comb), dst, flags);
+ return;
+ }
+ }
+ }
+
+ map = CODING_SYSTEM_ISO2022_INITIAL_CHARSET (str->codesys, 1);
if ( !NILP (map)
&& INTP (ret = Fchar_feature (make_char (ch),
map, Qnil,