diff options
Diffstat (limited to 'iconv/skeleton.c')
-rw-r--r-- | iconv/skeleton.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/iconv/skeleton.c b/iconv/skeleton.c index dca2c7f7a6..d64d7599b4 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -412,6 +412,13 @@ FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data, } #endif + /* Give the transliteration module the chance to store the + original text and the result in case it needs a context. */ + if (data->__trans.__trans_context_fct != NULL) + DL_CALL_FCT (data->__trans.__trans_context_fct, + (data->__trans.__data, inptr, *inptrp, + outstart, outbuf)); + /* We finished one use of the loops. */ ++data->__invocation_counter; |