Skip to content
Snippets Groups Projects
Commit 8384006c authored by Luigi Scarso's avatar Luigi Scarso
Browse files

fix for direction keywords

parent 4c1de846
Branches
Tags
No related merge requests found
#define luatex_svn_revision 6560
#define luatex_svn_revision 6572
......@@ -33,13 +33,13 @@ void scan_direction(void)
} else {
back_input();
}
if (scan_keyword("TLT")) {
if (scan_keyword("tlt")) {
cur_val = dir_TLT;
} else if (scan_keyword("TRT")) {
} else if (scan_keyword("trt")) {
cur_val = dir_TRT;
} else if (scan_keyword("LTL")) {
} else if (scan_keyword("ltl")) {
cur_val = dir_LTL;
} else if (scan_keyword("RTT")) {
} else if (scan_keyword("rtt")) {
cur_val = dir_RTT;
} else {
tex_error("Bad direction", NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment