diff options
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/texnodes.h | 1 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/texnodes.w | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/textoken.w | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/texnodes.h b/Build/source/texk/web2c/luatexdir/tex/texnodes.h index 0da84945184..20189f130f4 100644 --- a/Build/source/texk/web2c/luatexdir/tex/texnodes.h +++ b/Build/source/texk/web2c/luatexdir/tex/texnodes.h @@ -879,6 +879,7 @@ extern const char *node_subtypes_glyph[]; extern const char *node_subtypes_disc[]; extern const char *node_subtypes_marginkern[]; extern const char *node_subtypes_list[]; +extern const char *node_subtypes_adjust[]; extern const char *node_subtypes_math[]; extern const char *node_subtypes_noad[]; extern const char *node_subtypes_radical[]; diff --git a/Build/source/texk/web2c/luatexdir/tex/texnodes.w b/Build/source/texk/web2c/luatexdir/tex/texnodes.w index ef88d489845..d5d2d2364b6 100644 --- a/Build/source/texk/web2c/luatexdir/tex/texnodes.w +++ b/Build/source/texk/web2c/luatexdir/tex/texnodes.w @@ -237,8 +237,7 @@ const char *node_fields_whatsit_pdf_dest[] = { "xyz_zoom", "objnum", NULL }; const char *node_fields_whatsit_pdf_action[] = { - "action_type", "named_id", "action_id", "file", "new_window", "data", - "ref_count", NULL + "action_type", "named_id", "action_id", "file", "new_window", "data", NULL }; const char *node_fields_whatsit_pdf_thread[] = { "attr", "width", "depth", "height", "named_id", "thread_id", "thread_attr", NULL @@ -300,6 +299,9 @@ const char *node_subtypes_marginkern[] = { const char *node_subtypes_list[] = { "unknown", "line", "box", "indent", "alignment", "cell", "equation", "equationnumber", NULL }; +const char *node_subtypes_adjust[] = { + "normal", "pre", NULL +}; const char *node_subtypes_math[] = { "beginmath", "endmath", NULL }; diff --git a/Build/source/texk/web2c/luatexdir/tex/textoken.w b/Build/source/texk/web2c/luatexdir/tex/textoken.w index 98889cced7c..8d147f4e2a8 100644 --- a/Build/source/texk/web2c/luatexdir/tex/textoken.w +++ b/Build/source/texk/web2c/luatexdir/tex/textoken.w @@ -2331,7 +2331,7 @@ static int do_variable_pdf(halfword c) else if (scan_keyword("imagegamma")) { do_variable_backend_int(c_pdf_image_gamma); } else if (scan_keyword("imagehicolor")) { do_variable_backend_int(c_pdf_image_hicolor); } else if (scan_keyword("imageaddfilename")) { do_variable_backend_int(c_pdf_image_addfilename); } - else if (scan_keyword("objcompresslevel")) { do_variable_backend_int(c_pdf_objcompresslevel); } + else if (scan_keyword("objcompresslevel")) { do_variable_backend_int(c_pdf_obj_compress_level); } else if (scan_keyword("inclusioncopyfonts")) { do_variable_backend_int(c_pdf_inclusion_copy_font); } else if (scan_keyword("gentounicode")) { do_variable_backend_int(c_pdf_gen_tounicode); } else if (scan_keyword("pkfixeddpi")) { do_variable_backend_int(c_pdf_pk_fixed_dpi); } |