2022.08.01

This commit is contained in:
Seymour Shlien
2022-08-01 17:17:39 -04:00
parent e74fd94609
commit 47181bf504
5 changed files with 13 additions and 3 deletions

View File

@@ -2910,6 +2910,11 @@ parsemusic (field)
p = p+1;
}
if (*p == '.' && *(p+1) == '|') { /* [SS] 2022-08.01 dotted bar */
p = p +1;
/* ignore dotted bar */
}
if (((*p >= 'a') && (*p <= 'g')) || ((*p >= 'A') && (*p <= 'G')) ||
(strchr ("_^=", *p) != NULL) || (strchr (decorations, *p) != NULL))
{