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

fix for direction keywords

parent ad58837d
No related branches found
No related tags found
No related merge requests found
#define luatex_svn_revision 6562
#define luatex_svn_revision 6563
......@@ -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