40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
do_pscom(parse.voice_opts[opt][i])
}
}
}
/* -- link a ABC symbol into the current voice -- */
function sym_link(s) {
if (!s.name)
set_ref(s)
if (!curvoice.ignore) {
parse.last_sym = s;
s.prev = curvoice.last_sym
if (curvoice.last_sym)
curvoice.last_sym.next = s
else
|
|
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
do_pscom(parse.voice_opts[opt][i])
}
}
}
/* -- link a ABC symbol into the current voice -- */
function sym_link(s) {
if (!s.fname)
set_ref(s)
if (!curvoice.ignore) {
parse.last_sym = s;
s.prev = curvoice.last_sym
if (curvoice.last_sym)
curvoice.last_sym.next = s
else
|