2024.02.19

This commit is contained in:
sshlien
2024-02-19 12:37:50 -05:00
parent c4c489d111
commit 6a3de68779
8 changed files with 43 additions and 11 deletions

View File

@@ -3020,8 +3020,14 @@ parsemusic (field)
p = p + 1;
break;
case '|':
check_and_call_bar (DOUBLE_BAR, "");
p = p + 1;
if (*(p+1) == ':') {
/* handle ||: as a variant of |: [JA] 2024-02-19 */
check_and_call_bar (BAR_REP, "");
p = p + 2;
} else {
check_and_call_bar (DOUBLE_BAR, "");
p = p + 1;
}
break;
case ']':
check_and_call_bar (THIN_THICK, "");