| 923 | } |
| 924 | |
| 925 | const char* parse_next_jot(xtextbox::jot& a, const xtextbox& tb, const xtextbox& ctb, |
| 926 | const char* text, size_t text_size) |
| 927 | { |
| 928 | const char* ret; |
| 929 | |
| 930 | if (text[0] != '{' || !(ret = parse_next_tag_jot(a, tb, ctb, text, text_size))) |
| 931 | { |
| 932 | ret = parse_next_text_jot(a, tb, ctb, text, text_size); |
| 933 | } |
| 934 | |
| 935 | a.flag.merge = a.flag.merge && !(tb.flags & FLAG_UNK80); |
| 936 | return ret; |
| 937 | } |
| 938 | |
| 939 | struct tex_args |
| 940 | { |
no test coverage detected