diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-12-23 22:51:45 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-12-23 22:51:45 +0000 |
commit | d6cd168ee5c252be0e9dfe560ea8d3f5141100af (patch) | |
tree | d88a69090545c7e80d4bebaa8ca3fd6251f4257f | |
parent | c2664ee56ffc9debf0f4a83681498dde33cced67 (diff) |
web2c/luatexdir: sync with the upstream
git-svn-id: svn://tug.org/texlive/trunk@39179 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/luatexdir/tex/commands.w | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/luatexdir/tex/commands.w b/Build/source/texk/web2c/luatexdir/tex/commands.w index cb94d2b375d..125b203a341 100644 --- a/Build/source/texk/web2c/luatexdir/tex/commands.w +++ b/Build/source/texk/web2c/luatexdir/tex/commands.w @@ -186,7 +186,7 @@ void initialize_commands(void) primitive_tex("fontdimen", assign_font_dimen_cmd, 0, 0); primitive_tex("halign", halign_cmd, 0, 0); primitive_tex("hrule", hrule_cmd, 0, 0); - primitive_luatex("nohrule", no_vrule_cmd, 0, 0); + primitive_luatex("nohrule", no_hrule_cmd, 0, 0); primitive_tex("ignorespaces", ignore_spaces_cmd, 0, 0); primitive_tex("insert", insert_cmd, 0, 0); primitive_luatex("leftghost", char_ghost_cmd, 0, 0); @@ -233,7 +233,7 @@ void initialize_commands(void) primitive_tex("valign", valign_cmd, 0, 0); primitive_tex("vcenter", vcenter_cmd, 0, 0); primitive_tex("vrule", vrule_cmd, 0, 0); - primitive_luatex("novrule", no_hrule_cmd, 0, 0); + primitive_luatex("novrule", no_vrule_cmd, 0, 0); primitive_tex("par", par_end_cmd, too_big_char, too_big_char); /* cf.\ |scan_file_name| */ par_loc = cur_val; par_token = cs_token_flag + par_loc; |