diff options
Diffstat (limited to 'Master/texmf-dist/tex/latex/base/ltluatex.lua')
-rw-r--r-- | Master/texmf-dist/tex/latex/base/ltluatex.lua | 54 |
1 files changed, 30 insertions, 24 deletions
diff --git a/Master/texmf-dist/tex/latex/base/ltluatex.lua b/Master/texmf-dist/tex/latex/base/ltluatex.lua index c98f1f6f076..cbd933531eb 100644 --- a/Master/texmf-dist/tex/latex/base/ltluatex.lua +++ b/Master/texmf-dist/tex/latex/base/ltluatex.lua @@ -254,36 +254,42 @@ local callbacktypes = callbacktypes or { read_truetype_file = exclusive, read_type1_file = exclusive, read_opentype_file = exclusive, + find_cidmap_file = data, + read_cidmap_file = exclusive, process_input_buffer = data, process_output_buffer = data, process_jobname = data, - token_filter = exclusive, - buildpage_filter = simple, - pre_linebreak_filter = list, - linebreak_filter = list, - post_linebreak_filter = list, - hpack_filter = list, - vpack_filter = list, - pre_output_filter = list, - hyphenate = simple, - ligaturing = simple, - kerning = simple, - mlist_to_hlist = list, - pre_dump = simple, - start_run = simple, - stop_run = simple, - start_page_number = simple, - stop_page_number = simple, - show_error_hook = simple, - show_error_message = simple, - show_lua_error_hook = simple, - start_file = simple, - stop_file = simple, + contribute_filter = simple, + buildpage_filter = simple, + pre_linebreak_filter = list, + linebreak_filter = list, + append_to_vlist_filter = list, + post_linebreak_filter = list, + hpack_filter = list, + vpack_filter = list, + hpack_quality = list, + vpack_quality = list, + pre_output_filter = list, + process_rule = list, + hyphenate = simple, + ligaturing = simple, + kerning = simple, + insert_local_par = simple, + mlist_to_hlist = list, + pre_dump = simple, + start_run = simple, + stop_run = simple, + start_page_number = simple, + stop_page_number = simple, + show_error_hook = simple, + show_warning_message = simple, + show_error_message = simple, + show_lua_error_hook = simple, + start_file = simple, + stop_file = simple, finish_pdffile = data, finish_pdfpage = data, define_font = exclusive, - find_cidmap_file = data, - pdf_stream_filter_callback = data, } luatexbase.callbacktypes=callbacktypes local callback_register = callback_register or callback.register |