2021.06.24

This commit is contained in:
Seymour Shlien
2021-06-24 14:37:48 -04:00
parent 1105ee0c8b
commit 504cbe93f7
4 changed files with 41 additions and 8 deletions

17
store.c
View File

@@ -186,7 +186,7 @@ int main()
*/
#define VERSION "4.57 May 25 2021 abc2midi"
#define VERSION "4.58 June 24 2021 abc2midi"
/* enables reading V: indication in header */
#define XTEN1 1
@@ -5957,11 +5957,13 @@ int explict;
copymap(&global);
sf = sharps;
mi = minor;
headerprocess();
v = getvoicecontext(1);
if (!inbody) v1index = notes; /* save position in case of split voice */
};
/* [SS] 2021-06-24
***headerprocess();
***v = getvoicecontext(1);
***if (!inbody) v1index = notes; /* save position in case of split voice */
if (gotclef)
{
event_octave(clef->octave_offset, 0);
@@ -5969,6 +5971,11 @@ int explict;
if (gotoctave) {
event_octave(octave,0);
};
/* [SS] 2021-06-24 */
headerprocess();
v = getvoicecontext(1);
if (!inbody) v1index = notes; /* save position in case of split voice */
};
};
}