mirror of
https://github.com/sshlien/abcmidi.git
synced 2025-12-06 06:55:06 +00:00
2024.02.19
This commit is contained in:
10
parseabc.c
10
parseabc.c
@@ -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, "");
|
||||
|
||||
Reference in New Issue
Block a user