Skip to content

Commit

Permalink
[74_1] fix underline extending bug
Browse files Browse the repository at this point in the history
## What work have you done in the current Pull Request?

- [x] port
texmacs/texmacs@5b511eb
to mogan

Co-authored-by: Joris van der Hoeven <[email protected]>
  • Loading branch information
jingkaimori and vdhoeven authored Dec 9, 2023
1 parent 8299e82 commit 9aaec4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Typeset/Concat/concat_post.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ concater_rep::handle_scripts (int start, int end) {
(a[i]->type == GLUE_LSUBS_ITEM) ||
(a[i]->type == RSUB_ITEM) ||
(a[i]->type == RSUP_ITEM) ||
(a[i]->type == GLUE_RSUBS_ITEM)) { i++; continue; }
(a[i]->type == GLUE_RSUBS_ITEM) ||
(a[i]->type == CONTROL_ITEM && L(a[i]->t) == DATOMS)) {
i++; continue; }

path sip;
int l= prec (i);
Expand Down

0 comments on commit 9aaec4c

Please sign in to comment.