summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/tex
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-04-07 22:31:24 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-04-07 22:31:24 +0000
commit7f5d796e43772d5941569dcab6ce341d9949a2cd (patch)
tree14a9db99bbc2590feff8e4b510b6dd8ef00c9fb2 /Build/source/texk/web2c/luatexdir/tex
parentb51eb65b2794a2f4821fa9067d23579a4cd3ca8e (diff)
web2c/luatexdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@40337 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/tex')
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/texnodes.h1
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/texnodes.w6
-rw-r--r--Build/source/texk/web2c/luatexdir/tex/textoken.w2
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); }