A. LilyPond grammar
This appendix contains a description of the LilyPond grammar, as
output from the parser.
Grammar
1 start_symbol: lilypond
3 start_symbol: "#{" $ embedded_lilypond
4 lilypond: %empty
5 | lilypond toplevel_expression
6 | lilypond assignment
7 | lilypond error
8 | lilypond "\version-error"
9 toplevel_expression: header_block
10 | book_block
11 | bookpart_block
12 | BOOK_IDENTIFIER
13 | score_block
14 | composite_music
15 | full_markup
16 | full_markup_list
17 | SCM_TOKEN
18 | embedded_scm_active
19 | output_def
20 lookup: LOOKUP_IDENTIFIER
21 | LOOKUP_IDENTIFIER '.' symbol_list_rev
22 embedded_scm_bare: SCM_TOKEN
23 | SCM_IDENTIFIER
24 embedded_scm_active: SCM_IDENTIFIER
25 | scm_function_call
26 | lookup
27 embedded_scm_bare_arg: SCM_ARG
28 | SCM_TOKEN
29 | FRACTION
30 | partial_markup
31 | full_markup_list
32 | context_modification
33 | header_block
34 | score_block
35 | context_def_spec_block
36 | book_block
37 | bookpart_block
38 | output_def
39 | lookup
40 embedded_scm: embedded_scm_bare
41 | scm_function_call
42 | lookup
43 embedded_scm_arg: embedded_scm_bare_arg
44 | scm_function_call
45 | music_assign
46 scm_function_call: SCM_FUNCTION function_arglist
47 embedded_lilypond_number: '-' embedded_lilypond_number
48 | bare_number_common
49 | UNSIGNED NUMBER_IDENTIFIER
50 embedded_lilypond: %empty
51 | identifier_init_nonumber
52 | embedded_lilypond_number
53 | post_event post_events
54 | multiplied_duration
55 | music_embedded music_embedded music_list
56 | error
57 | "\version-error" embedded_lilypond
58 lilypond_header_body: %empty
59 | lilypond_header_body assignment
60 | lilypond_header_body SCM_TOKEN
61 | lilypond_header_body embedded_scm_active
62 lilypond_header: "\header" '{' lilypond_header_body '}'
64 header_block: $ lilypond_header
65 assignment_id: STRING
66 | SYMBOL
67 assignment: assignment_id '=' identifier_init
68 | assignment_id '.' property_path '=' identifier_init
69 | assignment_id ',' property_path '=' identifier_init
70 | markup_mode_word '=' identifier_init
71 identifier_init: identifier_init_nonumber
72 | number_expression
73 | symbol_list_part_bare '.' property_path
74 | symbol_list_part_bare ',' property_path
75 | post_event_nofinger post_events
76 identifier_init_nonumber: header_block
77 | score_block
78 | book_block
79 | bookpart_block
80 | output_def
81 | context_def_spec_block
82 | music_assign
83 | pitch_or_music
84 | FRACTION
85 | string
86 | embedded_scm
87 | partial_markup
88 | full_markup_list
89 | context_modification
90 | partial_function "\etc"
91 partial_function: MUSIC_FUNCTION function_arglist_partial
92 | EVENT_FUNCTION function_arglist_partial
93 | SCM_FUNCTION function_arglist_partial
94 | "\override" grob_prop_path '='
95 | "\set" context_prop_spec '='
96 | MUSIC_FUNCTION
"scheme?"
function_arglist_optional
partial_function
97 | EVENT_FUNCTION
"scheme?"
function_arglist_optional
partial_function
98 | SCM_FUNCTION
"scheme?"
function_arglist_optional
partial_function
99 | "\override" grob_prop_path '=' partial_function
100 | "\set" context_prop_spec '=' partial_function
101 | MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
102 | EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
103 | SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
104 context_def_spec_block: "\context" '{' context_def_spec_body '}'
105 context_mod_arg: embedded_scm
107 context_mod_arg: $ composite_music
108 context_def_spec_body: %empty
109 | context_def_spec_body context_mod
110 | context_def_spec_body context_modification
111 | context_def_spec_body context_mod_arg
112 book_block: "\book" '{' book_body '}'
113 book_body: %empty
114 | BOOK_IDENTIFIER
115 | book_body paper_block
116 | book_body bookpart_block
117 | book_body score_block
118 | book_body composite_music
119 | book_body full_markup
120 | book_body full_markup_list
121 | book_body SCM_TOKEN
122 | book_body embedded_scm_active
124 book_body: book_body $ lilypond_header
125 | book_body error
126 bookpart_block: "\bookpart" '{' bookpart_body '}'
127 bookpart_body: %empty
128 | BOOK_IDENTIFIER
129 | bookpart_body paper_block
130 | bookpart_body score_block
131 | bookpart_body composite_music
132 | bookpart_body full_markup
133 | bookpart_body full_markup_list
134 | bookpart_body SCM_TOKEN
135 | bookpart_body embedded_scm_active
137 bookpart_body: bookpart_body $ lilypond_header
138 | bookpart_body error
139 score_block: "\score" '{' score_body '}'
140 score_body: score_items
141 | score_body error
142 score_item: embedded_scm
143 | music
144 | output_def
145 score_items: %empty
146 | score_items score_item
148 score_items: score_items $ lilypond_header
149 paper_block: output_def
150 output_def: output_def_body '}'
151 output_def_head: "\paper"
152 | "\midi"
153 | "\layout"
154 output_def_head_with_mode_switch: output_def_head
155 music_or_context_def: music_assign
156 | context_def_spec_block
157 output_def_body: output_def_head_with_mode_switch '{'
158 | output_def_body assignment
159 | output_def_body embedded_scm_active
160 | output_def_body SCM_TOKEN
162 output_def_body: output_def_body $ music_or_context_def
163 | output_def_body error
164 tempo_event: "\tempo" steno_duration '=' tempo_range
165 | "\tempo" text steno_duration '=' tempo_range
166 | "\tempo" text
167 music_list: %empty
168 | music_list music_embedded
169 | music_list error
170 braced_music_list: '{' music_list '}'
171 music: music_assign
172 | lyric_element_music
173 | pitch_as_music
174 pitch_as_music: pitch_or_music
175 music_embedded: music
176 | music_embedded_backup
177 | music_embedded_backup
"(backed-up?)"
lyric_element_music
178 | multiplied_duration post_events
179 music_embedded_backup: embedded_scm
180 music_assign: simple_music
181 | composite_music
182 repeated_music: "\repeat" simple_string unsigned_number music
183 | "\repeat"
simple_string
unsigned_number
music
"\alternative"
braced_music_list
184 sequential_music: "\sequential" braced_music_list
185 | braced_music_list
186 simultaneous_music: "\simultaneous" braced_music_list
187 | "<<" music_list ">>"
188 simple_music: event_chord
189 | music_property_def
190 | context_change
192 context_modification: "\with" $ '{' context_mod_list '}'
193 | "\with" context_modification_arg
194 context_modification_arg: embedded_scm
195 | MUSIC_IDENTIFIER
196 optional_context_mods: context_modification_mods_list
197 context_modification_mods_list: %empty
198 | context_modification_mods_list
context_modification
199 context_mod_list: %empty
200 | context_mod_list context_mod
201 | context_mod_list context_mod_arg
202 context_prefix: "\context" symbol optional_id optional_context_mods
203 | "\new" symbol optional_id optional_context_mods
204 new_lyrics: "\addlyrics" optional_context_mods lyric_mode_music
205 | new_lyrics
"\addlyrics"
optional_context_mods
lyric_mode_music
206 basic_music: music_function_call
207 | repeated_music
208 | music_bare
209 | "\lyricsto" simple_string lyric_mode_music
210 | "\lyricsto" symbol '=' simple_string lyric_mode_music
211 contextable_music: basic_music
212 | pitch_as_music
213 | event_chord
214 contexted_basic_music: context_prefix contextable_music new_lyrics
215 | context_prefix contextable_music
216 | context_prefix contexted_basic_music
217 composite_music: basic_music
218 | contexted_basic_music
219 | basic_music new_lyrics
220 music_bare: mode_changed_music
221 | MUSIC_IDENTIFIER
222 | grouped_music_list
223 grouped_music_list: simultaneous_music
224 | sequential_music
225 symbol_list_arg: SYMBOL_LIST
226 | SYMBOL_LIST '.' symbol_list_rev
227 | SYMBOL_LIST ',' symbol_list_rev
228 symbol_list_rev: symbol_list_part
229 | symbol_list_rev '.' symbol_list_part
230 | symbol_list_rev ',' symbol_list_part
231 symbol_list_part: symbol_list_part_bare
232 | embedded_scm_bare
233 symbol_list_element: STRING
234 | UNSIGNED
235 symbol_list_part_bare: SYMBOL
236 | symbol_list_element
237 function_arglist_nonbackup: function_arglist_common
238 | "optional?"
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
240 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
REAL
241 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
242 | "optional?"
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
243 | "optional?"
"scheme?"
function_arglist_nonbackup
bare_number_common
244 | function_arglist_nonbackup_reparse
"(reparsed?)"
pitch_or_music
245 | function_arglist_nonbackup_reparse
"(reparsed?)"
multiplied_duration
246 | function_arglist_nonbackup_reparse
"(reparsed?)"
reparsed_rhythm
247 | function_arglist_nonbackup_reparse
"(reparsed?)"
bare_number_common
248 | function_arglist_nonbackup_reparse
"(reparsed?)"
SCM_ARG
249 | function_arglist_nonbackup_reparse
"(reparsed?)"
lyric_element_music
250 | function_arglist_nonbackup_reparse
"(reparsed?)"
symbol_list_arg
251 reparsed_rhythm: DURATION_ARG dots multipliers post_events
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 | "optional?"
"scheme?"
function_arglist_nonbackup
pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
255 | "optional?"
"scheme?"
function_arglist_nonbackup
STRING
256 | "optional?"
"scheme?"
function_arglist_nonbackup
SYMBOL
257 | "optional?"
"scheme?"
function_arglist_nonbackup
full_markup
258 | "optional?"
"scheme?"
function_arglist_nonbackup
UNSIGNED
259 | "optional?"
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
260 function_arglist_backup: function_arglist_common
261 | "optional?"
"scheme?"
function_arglist_backup
embedded_scm_arg
262 | "optional?"
"scheme?"
function_arglist_backup
post_event_nofinger
263 | "optional?"
"scheme?"
function_arglist_backup
pitch
264 | "optional?"
"scheme?"
function_arglist_backup
steno_tonic_pitch
265 | "optional?"
"scheme?"
function_arglist_backup
full_markup
266 | "optional?"
"scheme?"
function_arglist_backup
UNSIGNED
267 | "optional?"
"scheme?"
function_arglist_backup
REAL
268 | "optional?"
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
269 | "optional?"
"scheme?"
function_arglist_backup
'-'
UNSIGNED
270 | "optional?"
"scheme?"
function_arglist_backup
'-'
REAL
271 | "optional?"
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
272 | "optional?"
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
273 | "optional?"
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
274 | "optional?"
"scheme?"
function_arglist_backup
STRING
275 | "optional?"
"scheme?"
function_arglist_backup
SYMBOL
276 | function_arglist_backup
"(reparsed?)"
pitch_or_music
277 | function_arglist_backup
"(reparsed?)"
bare_number_common
278 | function_arglist_backup
"(reparsed?)"
multiplied_duration
279 | function_arglist_backup
"(reparsed?)"
reparsed_rhythm
280 | function_arglist_backup
"(reparsed?)"
symbol_list_arg
281 function_arglist: function_arglist_nonbackup
282 | "optional?"
"scheme?"
function_arglist_skip_nonbackup
"\default"
283 function_arglist_skip_nonbackup: function_arglist_nonbackup
284 | "optional?"
"scheme?"
function_arglist_skip_nonbackup
285 function_arglist_partial: "scheme?" function_arglist_optional
286 | "scheme?" function_arglist_partial_optional
287 | "optional?"
"scheme?"
function_arglist_nonbackup
288 | "optional?"
"scheme?"
function_arglist_partial
289 function_arglist_partial_optional: "scheme?" function_arglist_optional
290 | "scheme?"
function_arglist_partial_optional
291 | "optional?"
"scheme?"
function_arglist_backup
292 | "optional?"
"scheme?"
function_arglist_partial_optional
293 function_arglist_common: EXPECT_NO_MORE_ARGS
294 | "scheme?"
function_arglist_optional
embedded_scm_arg
295 | "scheme?"
function_arglist_optional
bare_number_common
296 | "scheme?"
function_arglist_optional
post_event_nofinger
297 | "scheme?"
function_arglist_optional
'-'
NUMBER_IDENTIFIER
298 | function_arglist_common_reparse
"(reparsed?)"
SCM_ARG
299 | function_arglist_common_reparse
"(reparsed?)"
lyric_element_music
300 | function_arglist_common_reparse
"(reparsed?)"
pitch_or_music
301 | function_arglist_common_reparse
"(reparsed?)"
bare_number_common
302 | function_arglist_common_reparse
"(reparsed?)"
multiplied_duration
303 | function_arglist_common_reparse
"(reparsed?)"
reparsed_rhythm
304 | function_arglist_common_reparse
"(reparsed?)"
symbol_list_arg
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
SCM_IDENTIFIER
306 | "scheme?"
function_arglist_optional
pitch
307 | "scheme?"
function_arglist_optional
steno_tonic_pitch
308 | "scheme?"
function_arglist_optional
STRING
309 | "scheme?"
function_arglist_optional
SYMBOL
310 | "scheme?"
function_arglist_optional
full_markup
311 | "scheme?"
function_arglist_optional
UNSIGNED
312 | "scheme?"
function_arglist_optional
DURATION_IDENTIFIER
313 | "scheme?"
function_arglist_optional
'-'
UNSIGNED
314 | "scheme?"
function_arglist_optional
'-'
REAL
315 function_arglist_optional: function_arglist_backup
316 | "optional?"
"scheme?"
function_arglist_skip_backup
"\default"
317 | function_arglist_skip_backup "(backed-up?)"
318 function_arglist_skip_backup: function_arglist_backup
319 | "optional?"
"scheme?"
function_arglist_skip_backup
320 music_function_call: MUSIC_FUNCTION function_arglist
321 optional_id: %empty
322 | '=' simple_string
324 lyric_mode_music: $ grouped_music_list
325 | MUSIC_IDENTIFIER
326 mode_changed_music: mode_changing_head grouped_music_list
327 | mode_changing_head_with_context
optional_context_mods
grouped_music_list
328 mode_changing_head: "\notemode"
329 | "\drummode"
330 | "\figuremode"
331 | "\chordmode"
332 | "\lyricmode"
333 mode_changing_head_with_context: "\drums"
334 | "\figures"
335 | "\chords"
336 | "\lyrics"
337 context_change: "\change" symbol '=' simple_string
338 property_path: symbol_list_rev
339 property_operation: symbol '=' scalar
340 | "\unset" symbol
341 | "\override" revert_arg '=' scalar
342 | "\revert" revert_arg
343 revert_arg: revert_arg_backup "(backed-up?)" symbol_list_arg
344 revert_arg_backup: revert_arg_part
345 revert_arg_part: symbol_list_part
346 | revert_arg_backup
"(backed-up?)"
SCM_ARG
'.'
symbol_list_part
347 | revert_arg_backup
"(backed-up?)"
SCM_ARG
','
symbol_list_part
348 | revert_arg_backup
"(backed-up?)"
SCM_ARG
symbol_list_part
349 context_def_mod: "\consists"
350 | "\remove"
351 | "\accepts"
352 | "\defaultchild"
353 | "\denies"
354 | "\alias"
355 | "\type"
356 | "\description"
357 | "\name"
358 context_mod: property_operation
359 | context_def_mod STRING
360 | context_def_mod SYMBOL
361 | context_def_mod embedded_scm
362 grob_prop_spec: symbol_list_rev
363 grob_prop_path: grob_prop_spec
364 | grob_prop_spec property_path
365 context_prop_spec: symbol_list_rev
366 simple_revert_context: symbol_list_part
367 music_property_def: "\override" grob_prop_path '=' scalar
368 | "\revert" simple_revert_context revert_arg
369 | "\set" context_prop_spec '=' scalar
370 | "\unset" context_prop_spec
371 string: STRING
372 | SYMBOL
373 | full_markup
374 text: STRING
375 | SYMBOL
376 | full_markup
377 | embedded_scm_bare
378 simple_string: STRING
379 | SYMBOL
380 | embedded_scm_bare
381 symbol: STRING
382 | SYMBOL
383 | embedded_scm_bare
384 scalar: embedded_scm_arg
385 | pitch_or_music
386 | SCM_IDENTIFIER
387 | bare_number
388 | '-' bare_number
389 | string
390 | symbol_list_part_bare '.' property_path
391 | symbol_list_part_bare ',' property_path
392 event_chord: simple_element post_events
393 | CHORD_REPETITION optional_notemode_duration post_events
394 | MULTI_MEASURE_REST optional_notemode_duration post_events
395 | tempo_event
396 | note_chord_element
397 note_chord_element: chord_body optional_notemode_duration post_events
398 chord_body: "<" chord_body_elements ">"
399 | FIGURE_OPEN figure_list FIGURE_CLOSE
400 chord_body_elements: %empty
401 | chord_body_elements chord_body_element
402 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
octave_check
post_events
403 | DRUM_PITCH post_events
404 | music_function_chord_body
405 music_function_chord_body: music_function_call
406 | MUSIC_IDENTIFIER
407 | embedded_scm
408 event_function_event: EVENT_FUNCTION function_arglist
409 post_events: %empty
410 | post_events post_event
411 post_event_nofinger: direction_less_event
412 | script_dir music_function_call
413 | "--"
414 | "__"
415 | script_dir direction_reqd_event
416 | script_dir direction_less_event
417 | '^' fingering
418 | '_' fingering
419 post_event: post_event_nofinger
420 | '-' fingering
421 string_number_event: E_UNSIGNED
422 direction_less_event: string_number_event
423 | EVENT_IDENTIFIER
424 | tremolo_type
425 | event_function_event
426 direction_reqd_event: gen_text_def
427 | script_abbreviation
428 octave_check: %empty
429 | '=' quotes
430 quotes: %empty
431 | sub_quotes
432 | sup_quotes
433 sup_quotes: '\''
434 | sup_quotes '\''
435 sub_quotes: ','
436 | sub_quotes ','
437 steno_pitch: NOTENAME_PITCH quotes
438 steno_tonic_pitch: TONICNAME_PITCH quotes
439 pitch: steno_pitch
440 | PITCH_IDENTIFIER quotes
441 pitch_or_tonic_pitch: pitch
442 | steno_tonic_pitch
443 gen_text_def: full_markup
444 | STRING
445 | SYMBOL
446 | embedded_scm
447 fingering: UNSIGNED
448 script_abbreviation: '^'
449 | '+'
450 | '-'
451 | '!'
452 | ">"
453 | '.'
454 | '_'
455 script_dir: '_'
456 | '^'
457 | '-'
458 maybe_notemode_duration: %empty
459 | multiplied_duration
460 optional_notemode_duration: maybe_notemode_duration
461 steno_duration: UNSIGNED dots
462 | DURATION_IDENTIFIER dots
463 multiplied_duration: steno_duration multipliers
464 dots: %empty
465 | dots '.'
466 multipliers: %empty
467 | multipliers '*' UNSIGNED
468 | multipliers '*' FRACTION
469 tremolo_type: ':'
470 | ':' UNSIGNED
471 bass_number: UNSIGNED
472 | STRING
473 | SYMBOL
474 | full_markup
475 | embedded_scm_bare
476 figured_bass_alteration: '-'
477 | '+'
478 | '!'
479 bass_figure: "_"
480 | bass_number
481 | bass_figure ']'
482 | bass_figure figured_bass_alteration
483 | bass_figure figured_bass_modification
484 figured_bass_modification: "\+"
485 | "\!"
486 | '/'
487 | "\"
488 br_bass_figure: bass_figure
489 | '[' bass_figure
490 figure_list: %empty
491 | figure_list br_bass_figure
492 optional_rest: %empty
493 | "\rest"
494 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
495 | new_chord post_events
496 simple_element: DRUM_PITCH optional_notemode_duration
497 | RESTNAME optional_notemode_duration
498 lyric_element: full_markup
499 | SYMBOL
500 | STRING
501 | LYRIC_ELEMENT
502 lyric_element_music: lyric_element
optional_notemode_duration
post_events
503 new_chord: steno_tonic_pitch maybe_notemode_duration
504 | steno_tonic_pitch
optional_notemode_duration
chord_separator
chord_items
505 chord_items: %empty
506 | chord_items chord_item
507 chord_separator: ":"
508 | "^"
509 | "/" steno_tonic_pitch
510 | "/+" steno_tonic_pitch
511 chord_item: chord_separator
512 | step_numbers
513 | CHORD_MODIFIER
514 step_numbers: step_number
515 | step_numbers '.' step_number
516 step_number: UNSIGNED
517 | UNSIGNED '+'
518 | UNSIGNED "-"
519 tempo_range: unsigned_number
520 | unsigned_number '-' unsigned_number
521 number_expression: number_expression '+' number_term
522 | number_expression '-' number_term
523 | number_term
524 number_term: number_factor
525 | number_factor '*' number_factor
526 | number_factor '/' number_factor
527 number_factor: '-' number_factor
528 | bare_number
529 bare_number_common: REAL
530 | NUMBER_IDENTIFIER
531 | REAL NUMBER_IDENTIFIER
532 bare_number: bare_number_common
533 | UNSIGNED
534 | UNSIGNED NUMBER_IDENTIFIER
535 unsigned_number: UNSIGNED
536 | NUMBER_IDENTIFIER
537 | embedded_scm
538 exclamations: %empty
539 | exclamations '!'
540 questions: %empty
541 | questions '?'
543 full_markup_list: "\markuplist" $0 markup_list
544 markup_mode: "\markup"
545 markup_mode_word: markup_mode markup_word
546 full_markup: markup_mode markup_top
547 | markup_mode_word
548 partial_markup: markup_mode markup_partial_function "\etc"
549 markup_top: markup_list
550 | markup_head_1_list simple_markup
551 | simple_markup_noword
553 markup_scm: embedded_scm $1 "(backed-up?)"
554 markup_list: markup_composed_list
555 | markup_uncomposed_list
556 markup_uncomposed_list: markup_braced_list
557 | markup_command_list
558 | markup_scm MARKUPLIST_IDENTIFIER
560 markup_uncomposed_list: "\score-lines" $2 '{' score_body '}'
561 markup_composed_list: markup_head_1_list markup_uncomposed_list
562 markup_braced_list: '{' markup_braced_list_body '}'
563 markup_braced_list_body: %empty
564 | markup_braced_list_body markup
565 | markup_braced_list_body markup_list
566 markup_command_list: MARKUP_LIST_FUNCTION markup_command_list_arguments
567 markup_command_basic_arguments: "markup-list?"
markup_command_list_arguments
markup_list
568 | "scheme?"
markup_command_list_arguments
embedded_scm
569 | "scheme?"
markup_command_list_arguments
STRING
570 | EXPECT_NO_MORE_ARGS
571 markup_command_list_arguments: markup_command_basic_arguments
572 | "markup?"
markup_command_list_arguments
markup
573 markup_partial_function: MARKUP_FUNCTION markup_arglist_partial
574 | markup_head_1_list
MARKUP_FUNCTION
markup_arglist_partial
575 markup_arglist_partial: "markup?" markup_arglist_partial
576 | "scheme?" markup_arglist_partial
577 | "markup?" markup_command_list_arguments
578 | "scheme?" markup_command_list_arguments
579 markup_head_1_item: MARKUP_FUNCTION
"markup?"
markup_command_list_arguments
580 markup_head_1_list: markup_head_1_item
581 | markup_head_1_list markup_head_1_item
582 markup_word: STRING
583 | SYMBOL
584 simple_markup: markup_word
585 | simple_markup_noword
587 simple_markup_noword: "\score" $3 '{' score_body '}'
588 | MARKUP_FUNCTION markup_command_basic_arguments
589 | markup_scm MARKUP_IDENTIFIER
590 markup: markup_head_1_list simple_markup
591 | simple_markup
Terminals, with rules where they appear
254 255 256 257 258 259 261 262 263 264 265 266 267 268 269 270
256 257 258 259 261 262 263 264 265 266 267 268 269 270 271 272
271 272 273 274 275 282 284 285 286 287 288 289 290 291 292 294
273 274 275 282 284 287 288 291 292 316 319
295 296 297 305 306 307 308 309 310 311 312 313 314 316 319 568
298 299 300 301 302 303 304
429
517 518 533 534 535
520 522 527
569 576 578
582
"#{" (340) 3
"(backed-up?)" (335) 177 317 343 346 347 348 553
"(reparsed?)" (336) 244 245 246 247 248 249 250 276 277 278 279 280
"-" (320) 518
"--" (268) 413
"/" (321) 509
"/+" (317) 510
":" (319) 507
"<" (322) 398
"<<" (324) 187
">" (323) 398 452
">>" (325) 187
"\!" (327) 485
"\" (326) 487
"\+" (328) 484
"\accepts" (273) 351
"\addlyrics" (262) 204 205
"\alias" (274) 354
"\alternative" (260) 183
"\book" (275) 112
"\bookpart" (276) 126
"\change" (277) 337
"\chordmode" (278) 331
"\chords" (279) 335
"\consists" (280) 349
"\context" (281) 104 202
"\default" (282) 282 316
"\defaultchild" (283) 352
"\denies" (284) 353
"\description" (285) 356
"\drummode" (286) 329
"\drums" (287) 333
"\etc" (288) 90 548
"\figuremode" (289) 330
"\figures" (290) 334
"\header" (291) 62
"\layout" (293) 153
"\lyricmode" (294) 332
"\lyrics" (295) 336
"\lyricsto" (296) 209 210
"\markup" (297) 544
"\markuplist" (298) 543
"\midi" (299) 152
"\name" (300) 357
"\new" (316) 203
"\notemode" (301) 328
"\override" (302) 94 99 341 367
"\paper" (303) 151
"\remove" (304) 350
"\repeat" (259) 182 183
"\rest" (305) 493
"\revert" (306) 342 368
"\score" (307) 139 587
"\score-lines" (308) 560
"\sequential" (309) 184
"\set" (310) 95 100 369
"\simultaneous" (311) 186
"\tempo" (312) 164 165 166
"\type" (313) 355
"\unset" (314) 340 370
"\version-error" (292) 8 57
"\with" (315) 192 193
"^" (318) 508
"_" (331) 479
"__" (269) 414
"end of input" (0) 0
"markup-list?" (337) 567
"markup?" (333) 572 575 577 579
"optional?" (338) 101 102 103 238 239 240 241 242 243 252 253 254 255
"scheme?" (334) 96 97 98 101 102 103 238 239 240 241 242 243 252 253
'!' (33) 451 478 539
'*' (42) 467 468 525
'+' (43) 449 477 517 521
',' (44) 69 74 227 230 347 391 435 436
'-' (45) 47 239 240 241 269 270 271 297 313 314 388 420 450 457 476
'.' (46) 21 68 73 226 229 346 390 453 465 515
'/' (47) 486 526
':' (58) 469 470
'=' (61) 67 68 69 70 94 95 99 100 164 165 210 322 337 339 341 367 369
'?' (63) 541
'[' (91) 489
'\'' (39) 433 434
']' (93) 481
'^' (94) 417 448 456
'_' (95) 418 454 455
'{' (123) 62 104 112 126 139 157 170 192 560 562 587
'}' (125) 62 104 112 126 139 150 170 192 560 562 587
BOOK_IDENTIFIER (341) 12 114 128
CHORD_MODIFIER (342) 513
CHORD_REPETITION (343) 393
COMPOSITE (261)
DRUM_PITCH (344) 403 496
DURATION_ARG (345) 251
DURATION_IDENTIFIER (270) 259 272 312 462
E_UNSIGNED (265) 421
error (256) 7 56 125 138 141 163 169
EVENT_FUNCTION (267) 92 97 102 408
EVENT_IDENTIFIER (266) 423
EXPECT_NO_MORE_ARGS (339) 293 570
FIGURE_CLOSE (329) 399
FIGURE_OPEN (330) 399
FRACTION (346) 29 84 468
LOOKUP_IDENTIFIER (347) 20 21
LYRIC_ELEMENT (348) 501
MARKUP_FUNCTION (349) 573 574 579 588
MARKUP_IDENTIFIER (351) 589
MARKUP_LIST_FUNCTION (350) 566
MARKUPLIST_IDENTIFIER (352) 558
MULTI_MEASURE_REST (332) 394
MUSIC_FUNCTION (353) 91 96 101 320
MUSIC_IDENTIFIER (354) 195 221 325 406
NOTENAME_PITCH (355) 437
NUMBER_IDENTIFIER (271) 49 241 268 271 297 530 531 534 536
PITCH_IDENTIFIER (356) 440
PREC_BOT (258)
PREC_TOP (272)
REAL (264) 240 267 270 314 529 531
RESTNAME (357) 497
SCM_ARG (358) 27 248 298 346 347 348
SCM_FUNCTION (359) 46 93 98 103
SCM_IDENTIFIER (360) 23 24 252 273 305 386
SCM_TOKEN (361) 17 22 28 60 121 134 160
STRING (362) 65 233 255 274 308 359 371 374 378 381 444 472 500 569
SYMBOL (365) 66 235 256 275 309 360 372 375 379 382 445 473 499 583
SYMBOL_LIST (363) 225 226 227
TONICNAME_PITCH (364) 438
UNARY_MINUS (366)
UNSIGNED (263) 49 234 239 258 266 269 311 313 447 461 467 470 471 516
Nonterminals, with rules where they appear
"#{" shift, and go to state 1
"(backed-up?)" shift, and go to state 319
"(backed-up?)" shift, and go to state 568
"(backed-up?)" shift, and go to state 615
"(backed-up?)" shift, and go to state 659
"(reparsed?)" shift, and go to state 381
"(reparsed?)" shift, and go to state 382
"(reparsed?)" shift, and go to state 539
"-" shift, and go to state 830
'+' shift, and go to state 831
"\addlyrics" shift, and go to state 219
"\addlyrics" shift, and go to state 219
"\addlyrics" shift, and go to state 410
"\addlyrics" shift, and go to state 410
"\alternative" shift, and go to state 699
"\default" shift, and go to state 728
"\default" shift, and go to state 807
"\etc" shift, and go to state 309
"\etc" shift, and go to state 501
"\header" reduce using rule 123 ($@4)
"\header" reduce using rule 136 ($@5)
"\header" shift, and go to state 199
"\header" shift, and go to state 199
"\header" shift, and go to state 199
"\header" shift, and go to state 199
"\rest" shift, and go to state 833
"\with" shift, and go to state 96
"end of input" reduce using rule 55 (embedded_lilypond)
"end of input" shift, and go to state 5
"markup?" shift, and go to state 415
"scheme?" shift, and go to state 380
"scheme?" shift, and go to state 438
"scheme?" shift, and go to state 477
"scheme?" shift, and go to state 481
"scheme?" shift, and go to state 538
"scheme?" shift, and go to state 618
"scheme?" shift, and go to state 715
"scheme?" shift, and go to state 758
"scheme?" shift, and go to state 793
"scheme?" shift, and go to state 817
"scheme?" shift, and go to state 822
"scheme?" shift, and go to state 858
"scheme?" shift, and go to state 862
"scheme?" shift, and go to state 864
$@1 go to state 4
$@10 go to state 182
$@11 go to state 424
$@12 go to state 414
$@13 go to state 413
$default accept
$default reduce using rule 10 (toplevel_expression)
$default reduce using rule 100 (partial_function)
$default reduce using rule 101 (partial_function)
$default reduce using rule 102 (partial_function)
$default reduce using rule 103 (partial_function)
$default reduce using rule 104 (context_def_spec_block)
$default reduce using rule 105 (context_mod_arg)
$default reduce using rule 106 ($@3)
$default reduce using rule 106 ($@3)
$default reduce using rule 107 (context_mod_arg)
$default reduce using rule 108 (context_def_spec_body)
$default reduce using rule 109 (context_def_spec_body)
$default reduce using rule 11 (toplevel_expression)
$default reduce using rule 110 (context_def_spec_body)
$default reduce using rule 111 (context_def_spec_body)
$default reduce using rule 112 (book_block)
$default reduce using rule 113 (book_body)
$default reduce using rule 114 (book_body)
$default reduce using rule 115 (book_body)
$default reduce using rule 116 (book_body)
$default reduce using rule 117 (book_body)
$default reduce using rule 118 (book_body)
$default reduce using rule 119 (book_body)
$default reduce using rule 12 (toplevel_expression)
$default reduce using rule 120 (book_body)
$default reduce using rule 121 (book_body)
$default reduce using rule 122 (book_body)
$default reduce using rule 124 (book_body)
$default reduce using rule 125 (book_body)
$default reduce using rule 126 (bookpart_block)
$default reduce using rule 127 (bookpart_body)
$default reduce using rule 128 (bookpart_body)
$default reduce using rule 129 (bookpart_body)
$default reduce using rule 13 (toplevel_expression)
$default reduce using rule 130 (bookpart_body)
$default reduce using rule 131 (bookpart_body)
$default reduce using rule 132 (bookpart_body)
$default reduce using rule 133 (bookpart_body)
$default reduce using rule 134 (bookpart_body)
$default reduce using rule 135 (bookpart_body)
$default reduce using rule 137 (bookpart_body)
$default reduce using rule 138 (bookpart_body)
$default reduce using rule 139 (score_block)
$default reduce using rule 14 (toplevel_expression)
$default reduce using rule 141 (score_body)
$default reduce using rule 142 (score_item)
$default reduce using rule 143 (score_item)
$default reduce using rule 144 (score_item)
$default reduce using rule 145 (score_items)
$default reduce using rule 145 (score_items)
$default reduce using rule 145 (score_items)
$default reduce using rule 146 (score_items)
$default reduce using rule 148 (score_items)
$default reduce using rule 149 (paper_block)
$default reduce using rule 15 (toplevel_expression)
$default reduce using rule 150 (output_def)
$default reduce using rule 151 (output_def_head)
$default reduce using rule 152 (output_def_head)
$default reduce using rule 153 (output_def_head)
$default reduce using rule 154 (output_def_head_with_mode_switch)
$default reduce using rule 155 (music_or_context_def)
$default reduce using rule 156 (music_or_context_def)
$default reduce using rule 157 (output_def_body)
$default reduce using rule 158 (output_def_body)
$default reduce using rule 159 (output_def_body)
$default reduce using rule 16 (toplevel_expression)
$default reduce using rule 160 (output_def_body)
$default reduce using rule 162 (output_def_body)
$default reduce using rule 163 (output_def_body)
$default reduce using rule 164 (tempo_event)
$default reduce using rule 165 (tempo_event)
$default reduce using rule 166 (tempo_event)
$default reduce using rule 167 (music_list)
$default reduce using rule 167 (music_list)
$default reduce using rule 167 (music_list)
$default reduce using rule 168 (music_list)
$default reduce using rule 169 (music_list)
$default reduce using rule 17 (toplevel_expression)
$default reduce using rule 170 (braced_music_list)
$default reduce using rule 171 (music)
$default reduce using rule 172 (music)
$default reduce using rule 173 (music)
$default reduce using rule 174 (pitch_as_music)
$default reduce using rule 175 (music_embedded)
$default reduce using rule 176 (music_embedded)
$default reduce using rule 177 (music_embedded)
$default reduce using rule 178 (music_embedded)
$default reduce using rule 179 (music_embedded_backup)
$default reduce using rule 18 (toplevel_expression)
$default reduce using rule 180 (music_assign)
$default reduce using rule 181 (music_assign)
$default reduce using rule 182 (repeated_music)
$default reduce using rule 183 (repeated_music)
$default reduce using rule 184 (sequential_music)
$default reduce using rule 185 (sequential_music)
$default reduce using rule 186 (simultaneous_music)
$default reduce using rule 187 (simultaneous_music)
$default reduce using rule 188 (simple_music)
$default reduce using rule 189 (simple_music)
$default reduce using rule 19 (toplevel_expression)
$default reduce using rule 190 (simple_music)
$default reduce using rule 191 ($@8)
$default reduce using rule 192 (context_modification)
$default reduce using rule 193 (context_modification)
$default reduce using rule 194 (context_modification_arg)
$default reduce using rule 195 (context_modification_arg)
$default reduce using rule 196 (optional_context_mods)
$default reduce using rule 197 (context_modification_mods_list)
$default reduce using rule 197 (context_modification_mods_list)
$default reduce using rule 197 (context_modification_mods_list)
$default reduce using rule 197 (context_modification_mods_list)
$default reduce using rule 197 (context_modification_mods_list)
$default reduce using rule 198 (context_modification_mods_list)
$default reduce using rule 199 (context_mod_list)
$default reduce using rule 2 ($@1)
$default reduce using rule 20 (lookup)
$default reduce using rule 200 (context_mod_list)
$default reduce using rule 201 (context_mod_list)
$default reduce using rule 202 (context_prefix)
$default reduce using rule 203 (context_prefix)
$default reduce using rule 204 (new_lyrics)
$default reduce using rule 205 (new_lyrics)
$default reduce using rule 206 (basic_music)
$default reduce using rule 207 (basic_music)
$default reduce using rule 208 (basic_music)
$default reduce using rule 209 (basic_music)
$default reduce using rule 21 (lookup)
$default reduce using rule 210 (basic_music)
$default reduce using rule 211 (contextable_music)
$default reduce using rule 212 (contextable_music)
$default reduce using rule 213 (contextable_music)
$default reduce using rule 214 (contexted_basic_music)
$default reduce using rule 215 (contexted_basic_music)
$default reduce using rule 216 (contexted_basic_music)
$default reduce using rule 217 (composite_music)
$default reduce using rule 218 (composite_music)
$default reduce using rule 219 (composite_music)
$default reduce using rule 22 (embedded_scm_bare)
$default reduce using rule 220 (music_bare)
$default reduce using rule 221 (music_bare)
$default reduce using rule 222 (music_bare)
$default reduce using rule 223 (grouped_music_list)
$default reduce using rule 224 (grouped_music_list)
$default reduce using rule 225 (symbol_list_arg)
$default reduce using rule 226 (symbol_list_arg)
$default reduce using rule 227 (symbol_list_arg)
$default reduce using rule 228 (symbol_list_rev)
$default reduce using rule 229 (symbol_list_rev)
$default reduce using rule 23 (embedded_scm_bare)
$default reduce using rule 230 (symbol_list_rev)
$default reduce using rule 231 (symbol_list_part)
$default reduce using rule 232 (symbol_list_part)
$default reduce using rule 233 (symbol_list_element)
$default reduce using rule 234 (symbol_list_element)
$default reduce using rule 235 (symbol_list_part_bare)
$default reduce using rule 236 (symbol_list_part_bare)
$default reduce using rule 237 (function_arglist_nonbackup)
$default reduce using rule 238 (function_arglist_nonbackup)
$default reduce using rule 239 (function_arglist_nonbackup)
$default reduce using rule 24 (embedded_scm_active)
$default reduce using rule 240 (function_arglist_nonbackup)
$default reduce using rule 241 (function_arglist_nonbackup)
$default reduce using rule 242 (function_arglist_nonbackup)
$default reduce using rule 243 (function_arglist_nonbackup)
$default reduce using rule 244 (function_arglist_nonbackup)
$default reduce using rule 245 (function_arglist_nonbackup)
$default reduce using rule 246 (function_arglist_nonbackup)
$default reduce using rule 247 (function_arglist_nonbackup)
$default reduce using rule 248 (function_arglist_nonbackup)
$default reduce using rule 249 (function_arglist_nonbackup)
$default reduce using rule 25 (embedded_scm_active)
$default reduce using rule 250 (function_arglist_nonbackup)
$default reduce using rule 251 (reparsed_rhythm)
$default reduce using rule 252 (function_arglist_nonbackup_reparse)
$default reduce using rule 253 (function_arglist_nonbackup_reparse)
$default reduce using rule 254 (function_arglist_nonbackup_reparse)
$default reduce using rule 255 (function_arglist_nonbackup_reparse)
$default reduce using rule 256 (function_arglist_nonbackup_reparse)
$default reduce using rule 257 (function_arglist_nonbackup_reparse)
$default reduce using rule 258 (function_arglist_nonbackup_reparse)
$default reduce using rule 259 (function_arglist_nonbackup_reparse)
$default reduce using rule 26 (embedded_scm_active)
$default reduce using rule 260 (function_arglist_backup)
$default reduce using rule 261 (function_arglist_backup)
$default reduce using rule 262 (function_arglist_backup)
$default reduce using rule 263 (function_arglist_backup)
$default reduce using rule 264 (function_arglist_backup)
$default reduce using rule 265 (function_arglist_backup)
$default reduce using rule 266 (function_arglist_backup)
$default reduce using rule 267 (function_arglist_backup)
$default reduce using rule 268 (function_arglist_backup)
$default reduce using rule 269 (function_arglist_backup)
$default reduce using rule 27 (embedded_scm_bare_arg)
$default reduce using rule 270 (function_arglist_backup)
$default reduce using rule 271 (function_arglist_backup)
$default reduce using rule 272 (function_arglist_backup)
$default reduce using rule 273 (function_arglist_backup)
$default reduce using rule 274 (function_arglist_backup)
$default reduce using rule 275 (function_arglist_backup)
$default reduce using rule 276 (function_arglist_backup)
$default reduce using rule 277 (function_arglist_backup)
$default reduce using rule 278 (function_arglist_backup)
$default reduce using rule 279 (function_arglist_backup)
$default reduce using rule 28 (embedded_scm_bare_arg)
$default reduce using rule 280 (function_arglist_backup)
$default reduce using rule 281 (function_arglist)
$default reduce using rule 282 (function_arglist)
$default reduce using rule 284 (function_arglist_skip_nonbackup)
$default reduce using rule 285 (function_arglist_partial)
$default reduce using rule 285 (function_arglist_partial)
$default reduce using rule 285 (function_arglist_partial)
$default reduce using rule 286 (function_arglist_partial)
$default reduce using rule 287 (function_arglist_partial)
$default reduce using rule 287 (function_arglist_partial)
$default reduce using rule 287 (function_arglist_partial)
$default reduce using rule 288 (function_arglist_partial)
$default reduce using rule 29 (embedded_scm_bare_arg)
$default reduce using rule 290 (function_arglist_partial_optional)
$default reduce using rule 292 (function_arglist_partial_optional)
$default reduce using rule 293 (function_arglist_common)
$default reduce using rule 294 (function_arglist_common)
$default reduce using rule 295 (function_arglist_common)
$default reduce using rule 296 (function_arglist_common)
$default reduce using rule 297 (function_arglist_common)
$default reduce using rule 298 (function_arglist_common)
$default reduce using rule 299 (function_arglist_common)
$default reduce using rule 3 (start_symbol)
$default reduce using rule 30 (embedded_scm_bare_arg)
$default reduce using rule 300 (function_arglist_common)
$default reduce using rule 301 (function_arglist_common)
$default reduce using rule 302 (function_arglist_common)
$default reduce using rule 303 (function_arglist_common)
$default reduce using rule 304 (function_arglist_common)
$default reduce using rule 305 (function_arglist_common_reparse)
$default reduce using rule 306 (function_arglist_common_reparse)
$default reduce using rule 307 (function_arglist_common_reparse)
$default reduce using rule 308 (function_arglist_common_reparse)
$default reduce using rule 309 (function_arglist_common_reparse)
$default reduce using rule 31 (embedded_scm_bare_arg)
$default reduce using rule 310 (function_arglist_common_reparse)
$default reduce using rule 311 (function_arglist_common_reparse)
$default reduce using rule 312 (function_arglist_common_reparse)
$default reduce using rule 313 (function_arglist_common_reparse)
$default reduce using rule 314 (function_arglist_common_reparse)
$default reduce using rule 316 (function_arglist_optional)
$default reduce using rule 317 (function_arglist_optional)
$default reduce using rule 319 (function_arglist_skip_backup)
$default reduce using rule 319 (function_arglist_skip_backup)
$default reduce using rule 32 (embedded_scm_bare_arg)
$default reduce using rule 320 (music_function_call)
$default reduce using rule 321 (optional_id)
$default reduce using rule 321 (optional_id)
$default reduce using rule 322 (optional_id)
$default reduce using rule 323 ($@9)
$default reduce using rule 323 ($@9)
$default reduce using rule 323 ($@9)
$default reduce using rule 323 ($@9)
$default reduce using rule 324 (lyric_mode_music)
$default reduce using rule 325 (lyric_mode_music)
$default reduce using rule 326 (mode_changed_music)
$default reduce using rule 327 (mode_changed_music)
$default reduce using rule 328 (mode_changing_head)
$default reduce using rule 329 (mode_changing_head)
$default reduce using rule 33 (embedded_scm_bare_arg)
$default reduce using rule 330 (mode_changing_head)
$default reduce using rule 331 (mode_changing_head)
$default reduce using rule 332 (mode_changing_head)
$default reduce using rule 333 (mode_changing_head_with_context)
$default reduce using rule 334 (mode_changing_head_with_context)
$default reduce using rule 335 (mode_changing_head_with_context)
$default reduce using rule 336 (mode_changing_head_with_context)
$default reduce using rule 337 (context_change)
$default reduce using rule 338 (property_path)
$default reduce using rule 339 (property_operation)
$default reduce using rule 34 (embedded_scm_bare_arg)
$default reduce using rule 340 (property_operation)
$default reduce using rule 341 (property_operation)
$default reduce using rule 342 (property_operation)
$default reduce using rule 343 (revert_arg)
$default reduce using rule 344 (revert_arg_backup)
$default reduce using rule 345 (revert_arg_part)
$default reduce using rule 346 (revert_arg_part)
$default reduce using rule 347 (revert_arg_part)
$default reduce using rule 348 (revert_arg_part)
$default reduce using rule 349 (context_def_mod)
$default reduce using rule 35 (embedded_scm_bare_arg)
$default reduce using rule 350 (context_def_mod)
$default reduce using rule 351 (context_def_mod)
$default reduce using rule 352 (context_def_mod)
$default reduce using rule 353 (context_def_mod)
$default reduce using rule 354 (context_def_mod)
$default reduce using rule 355 (context_def_mod)
$default reduce using rule 356 (context_def_mod)
$default reduce using rule 357 (context_def_mod)
$default reduce using rule 358 (context_mod)
$default reduce using rule 359 (context_mod)
$default reduce using rule 36 (embedded_scm_bare_arg)
$default reduce using rule 360 (context_mod)
$default reduce using rule 361 (context_mod)
$default reduce using rule 362 (grob_prop_spec)
$default reduce using rule 363 (grob_prop_path)
$default reduce using rule 364 (grob_prop_path)
$default reduce using rule 365 (context_prop_spec)
$default reduce using rule 366 (simple_revert_context)
$default reduce using rule 367 (music_property_def)
$default reduce using rule 368 (music_property_def)
$default reduce using rule 369 (music_property_def)
$default reduce using rule 37 (embedded_scm_bare_arg)
$default reduce using rule 370 (music_property_def)
$default reduce using rule 373 (string)
$default reduce using rule 374 (text)
$default reduce using rule 375 (text)
$default reduce using rule 376 (text)
$default reduce using rule 377 (text)
$default reduce using rule 378 (simple_string)
$default reduce using rule 379 (simple_string)
$default reduce using rule 38 (embedded_scm_bare_arg)
$default reduce using rule 380 (simple_string)
$default reduce using rule 381 (symbol)
$default reduce using rule 382 (symbol)
$default reduce using rule 383 (symbol)
$default reduce using rule 384 (scalar)
$default reduce using rule 385 (scalar)
$default reduce using rule 386 (scalar)
$default reduce using rule 387 (scalar)
$default reduce using rule 388 (scalar)
$default reduce using rule 389 (scalar)
$default reduce using rule 39 (embedded_scm_bare_arg)
$default reduce using rule 390 (scalar)
$default reduce using rule 391 (scalar)
$default reduce using rule 392 (event_chord)
$default reduce using rule 393 (event_chord)
$default reduce using rule 394 (event_chord)
$default reduce using rule 395 (event_chord)
$default reduce using rule 396 (event_chord)
$default reduce using rule 397 (note_chord_element)
$default reduce using rule 398 (chord_body)
$default reduce using rule 399 (chord_body)
$default reduce using rule 4 (lilypond)
$default reduce using rule 40 (embedded_scm)
$default reduce using rule 400 (chord_body_elements)
$default reduce using rule 401 (chord_body_elements)
$default reduce using rule 402 (chord_body_element)
$default reduce using rule 403 (chord_body_element)
$default reduce using rule 404 (chord_body_element)
$default reduce using rule 405 (music_function_chord_body)
$default reduce using rule 406 (music_function_chord_body)
$default reduce using rule 407 (music_function_chord_body)
$default reduce using rule 408 (event_function_event)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 409 (post_events)
$default reduce using rule 41 (embedded_scm)
$default reduce using rule 410 (post_events)
$default reduce using rule 411 (post_event_nofinger)
$default reduce using rule 412 (post_event_nofinger)
$default reduce using rule 413 (post_event_nofinger)
$default reduce using rule 414 (post_event_nofinger)
$default reduce using rule 415 (post_event_nofinger)
$default reduce using rule 416 (post_event_nofinger)
$default reduce using rule 417 (post_event_nofinger)
$default reduce using rule 418 (post_event_nofinger)
$default reduce using rule 419 (post_event)
$default reduce using rule 42 (embedded_scm)
$default reduce using rule 420 (post_event)
$default reduce using rule 421 (string_number_event)
$default reduce using rule 422 (direction_less_event)
$default reduce using rule 423 (direction_less_event)
$default reduce using rule 424 (direction_less_event)
$default reduce using rule 425 (direction_less_event)
$default reduce using rule 426 (direction_reqd_event)
$default reduce using rule 427 (direction_reqd_event)
$default reduce using rule 428 (octave_check)
$default reduce using rule 428 (octave_check)
$default reduce using rule 429 (octave_check)
$default reduce using rule 43 (embedded_scm_arg)
$default reduce using rule 430 (quotes)
$default reduce using rule 430 (quotes)
$default reduce using rule 430 (quotes)
$default reduce using rule 430 (quotes)
$default reduce using rule 431 (quotes)
$default reduce using rule 432 (quotes)
$default reduce using rule 433 (sup_quotes)
$default reduce using rule 434 (sup_quotes)
$default reduce using rule 435 (sub_quotes)
$default reduce using rule 436 (sub_quotes)
$default reduce using rule 437 (steno_pitch)
$default reduce using rule 438 (steno_tonic_pitch)
$default reduce using rule 439 (pitch)
$default reduce using rule 44 (embedded_scm_arg)
$default reduce using rule 440 (pitch)
$default reduce using rule 441 (pitch_or_tonic_pitch)
$default reduce using rule 442 (pitch_or_tonic_pitch)
$default reduce using rule 443 (gen_text_def)
$default reduce using rule 444 (gen_text_def)
$default reduce using rule 445 (gen_text_def)
$default reduce using rule 446 (gen_text_def)
$default reduce using rule 447 (fingering)
$default reduce using rule 447 (fingering)
$default reduce using rule 448 (script_abbreviation)
$default reduce using rule 449 (script_abbreviation)
$default reduce using rule 45 (embedded_scm_arg)
$default reduce using rule 450 (script_abbreviation)
$default reduce using rule 451 (script_abbreviation)
$default reduce using rule 452 (script_abbreviation)
$default reduce using rule 453 (script_abbreviation)
$default reduce using rule 454 (script_abbreviation)
$default reduce using rule 455 (script_dir)
$default reduce using rule 456 (script_dir)
$default reduce using rule 457 (script_dir)
$default reduce using rule 457 (script_dir)
$default reduce using rule 457 (script_dir)
$default reduce using rule 457 (script_dir)
$default reduce using rule 457 (script_dir)
$default reduce using rule 457 (script_dir)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 458 (maybe_notemode_duration)
$default reduce using rule 459 (maybe_notemode_duration)
$default reduce using rule 46 (scm_function_call)
$default reduce using rule 460 (optional_notemode_duration)
$default reduce using rule 461 (steno_duration)
$default reduce using rule 462 (steno_duration)
$default reduce using rule 463 (multiplied_duration)
$default reduce using rule 464 (dots)
$default reduce using rule 464 (dots)
$default reduce using rule 464 (dots)
$default reduce using rule 464 (dots)
$default reduce using rule 465 (dots)
$default reduce using rule 466 (multipliers)
$default reduce using rule 466 (multipliers)
$default reduce using rule 467 (multipliers)
$default reduce using rule 468 (multipliers)
$default reduce using rule 469 (tremolo_type)
$default reduce using rule 47 (embedded_lilypond_number)
$default reduce using rule 470 (tremolo_type)
$default reduce using rule 471 (bass_number)
$default reduce using rule 472 (bass_number)
$default reduce using rule 473 (bass_number)
$default reduce using rule 474 (bass_number)
$default reduce using rule 475 (bass_number)
$default reduce using rule 476 (figured_bass_alteration)
$default reduce using rule 477 (figured_bass_alteration)
$default reduce using rule 478 (figured_bass_alteration)
$default reduce using rule 479 (bass_figure)
$default reduce using rule 48 (embedded_lilypond_number)
$default reduce using rule 480 (bass_figure)
$default reduce using rule 481 (bass_figure)
$default reduce using rule 482 (bass_figure)
$default reduce using rule 483 (bass_figure)
$default reduce using rule 484 (figured_bass_modification)
$default reduce using rule 485 (figured_bass_modification)
$default reduce using rule 486 (figured_bass_modification)
$default reduce using rule 487 (figured_bass_modification)
$default reduce using rule 488 (br_bass_figure)
$default reduce using rule 489 (br_bass_figure)
$default reduce using rule 49 (embedded_lilypond_number)
$default reduce using rule 490 (figure_list)
$default reduce using rule 491 (figure_list)
$default reduce using rule 492 (optional_rest)
$default reduce using rule 493 (optional_rest)
$default reduce using rule 494 (pitch_or_music)
$default reduce using rule 495 (pitch_or_music)
$default reduce using rule 496 (simple_element)
$default reduce using rule 497 (simple_element)
$default reduce using rule 498 (lyric_element)
$default reduce using rule 499 (lyric_element)
$default reduce using rule 5 (lilypond)
$default reduce using rule 500 (lyric_element)
$default reduce using rule 501 (lyric_element)
$default reduce using rule 502 (lyric_element_music)
$default reduce using rule 504 (new_chord)
$default reduce using rule 505 (chord_items)
$default reduce using rule 506 (chord_items)
$default reduce using rule 507 (chord_separator)
$default reduce using rule 508 (chord_separator)
$default reduce using rule 509 (chord_separator)
$default reduce using rule 51 (embedded_lilypond)
$default reduce using rule 510 (chord_separator)
$default reduce using rule 511 (chord_item)
$default reduce using rule 512 (chord_item)
$default reduce using rule 513 (chord_item)
$default reduce using rule 514 (step_numbers)
$default reduce using rule 515 (step_numbers)
$default reduce using rule 516 (step_number)
$default reduce using rule 517 (step_number)
$default reduce using rule 518 (step_number)
$default reduce using rule 519 (tempo_range)
$default reduce using rule 52 (embedded_lilypond)
$default reduce using rule 520 (tempo_range)
$default reduce using rule 521 (number_expression)
$default reduce using rule 522 (number_expression)
$default reduce using rule 523 (number_expression)
$default reduce using rule 524 (number_term)
$default reduce using rule 525 (number_term)
$default reduce using rule 526 (number_term)
$default reduce using rule 527 (number_factor)
$default reduce using rule 528 (number_factor)
$default reduce using rule 529 (bare_number_common)
$default reduce using rule 53 (embedded_lilypond)
$default reduce using rule 530 (bare_number_common)
$default reduce using rule 531 (bare_number_common)
$default reduce using rule 532 (bare_number)
$default reduce using rule 533 (bare_number)
$default reduce using rule 534 (bare_number)
$default reduce using rule 535 (unsigned_number)
$default reduce using rule 536 (unsigned_number)
$default reduce using rule 537 (unsigned_number)
$default reduce using rule 538 (exclamations)
$default reduce using rule 538 (exclamations)
$default reduce using rule 539 (exclamations)
$default reduce using rule 540 (questions)
$default reduce using rule 540 (questions)
$default reduce using rule 541 (questions)
$default reduce using rule 542 ($@10)
$default reduce using rule 543 (full_markup_list)
$default reduce using rule 544 (markup_mode)
$default reduce using rule 545 (markup_mode_word)
$default reduce using rule 546 (full_markup)
$default reduce using rule 547 (full_markup)
$default reduce using rule 547 (full_markup)
$default reduce using rule 548 (partial_markup)
$default reduce using rule 549 (markup_top)
$default reduce using rule 550 (markup_top)
$default reduce using rule 551 (markup_top)
$default reduce using rule 552 ($@11)
$default reduce using rule 553 (markup_scm)
$default reduce using rule 554 (markup_list)
$default reduce using rule 555 (markup_list)
$default reduce using rule 556 (markup_uncomposed_list)
$default reduce using rule 557 (markup_uncomposed_list)
$default reduce using rule 558 (markup_uncomposed_list)
$default reduce using rule 559 ($@12)
$default reduce using rule 56 (embedded_lilypond)
$default reduce using rule 560 (markup_uncomposed_list)
$default reduce using rule 561 (markup_composed_list)
$default reduce using rule 562 (markup_braced_list)
$default reduce using rule 563 (markup_braced_list_body)
$default reduce using rule 564 (markup_braced_list_body)
$default reduce using rule 565 (markup_braced_list_body)
$default reduce using rule 566 (markup_command_list)
$default reduce using rule 567 (markup_command_basic_arguments)
$default reduce using rule 568 (markup_command_basic_arguments)
$default reduce using rule 569 (markup_command_basic_arguments)
$default reduce using rule 57 (embedded_lilypond)
$default reduce using rule 570 (markup_command_basic_arguments)
$default reduce using rule 571 (markup_command_list_arguments)
$default reduce using rule 572 (markup_command_list_arguments)
$default reduce using rule 573 (markup_partial_function)
$default reduce using rule 574 (markup_partial_function)
$default reduce using rule 575 (markup_arglist_partial)
$default reduce using rule 576 (markup_arglist_partial)
$default reduce using rule 577 (markup_arglist_partial)
$default reduce using rule 578 (markup_arglist_partial)
$default reduce using rule 579 (markup_head_1_item)
$default reduce using rule 58 (lilypond_header_body)
$default reduce using rule 580 (markup_head_1_list)
$default reduce using rule 581 (markup_head_1_list)
$default reduce using rule 582 (markup_word)
$default reduce using rule 583 (markup_word)
$default reduce using rule 584 (simple_markup)
$default reduce using rule 585 (simple_markup)
$default reduce using rule 586 ($@13)
$default reduce using rule 587 (simple_markup_noword)
$default reduce using rule 588 (simple_markup_noword)
$default reduce using rule 589 (simple_markup_noword)
$default reduce using rule 59 (lilypond_header_body)
$default reduce using rule 590 (markup)
$default reduce using rule 591 (markup)
$default reduce using rule 6 (lilypond)
$default reduce using rule 60 (lilypond_header_body)
$default reduce using rule 61 (lilypond_header_body)
$default reduce using rule 62 (lilypond_header)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 63 ($@2)
$default reduce using rule 64 (header_block)
$default reduce using rule 65 (assignment_id)
$default reduce using rule 66 (assignment_id)
$default reduce using rule 67 (assignment)
$default reduce using rule 68 (assignment)
$default reduce using rule 69 (assignment)
$default reduce using rule 7 (lilypond)
$default reduce using rule 70 (assignment)
$default reduce using rule 71 (identifier_init)
$default reduce using rule 72 (identifier_init)
$default reduce using rule 73 (identifier_init)
$default reduce using rule 74 (identifier_init)
$default reduce using rule 75 (identifier_init)
$default reduce using rule 76 (identifier_init_nonumber)
$default reduce using rule 77 (identifier_init_nonumber)
$default reduce using rule 78 (identifier_init_nonumber)
$default reduce using rule 79 (identifier_init_nonumber)
$default reduce using rule 8 (lilypond)
$default reduce using rule 80 (identifier_init_nonumber)
$default reduce using rule 81 (identifier_init_nonumber)
$default reduce using rule 82 (identifier_init_nonumber)
$default reduce using rule 83 (identifier_init_nonumber)
$default reduce using rule 84 (identifier_init_nonumber)
$default reduce using rule 85 (identifier_init_nonumber)
$default reduce using rule 86 (identifier_init_nonumber)
$default reduce using rule 87 (identifier_init_nonumber)
$default reduce using rule 88 (identifier_init_nonumber)
$default reduce using rule 89 (identifier_init_nonumber)
$default reduce using rule 9 (toplevel_expression)
$default reduce using rule 90 (identifier_init_nonumber)
$default reduce using rule 91 (partial_function)
$default reduce using rule 92 (partial_function)
$default reduce using rule 93 (partial_function)
$default reduce using rule 94 (partial_function)
$default reduce using rule 95 (partial_function)
$default reduce using rule 96 (partial_function)
$default reduce using rule 97 (partial_function)
$default reduce using rule 98 (partial_function)
$default reduce using rule 99 (partial_function)
'!' shift, and go to state 494
'!' shift, and go to state 494
'*' shift, and go to state 496
'*' shift, and go to state 496
'*' shift, and go to state 599
'/' shift, and go to state 600
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 295
'\'' shift, and go to state 296
',' shift, and go to state 479
'-' shift, and go to state 597
'+' shift, and go to state 598
'-' shift, and go to state 776
'.' shift, and go to state 188
'.' shift, and go to state 433
'.' shift, and go to state 433
'.' shift, and go to state 433
'.' shift, and go to state 441
',' shift, and go to state 442
'.' shift, and go to state 441
',' shift, and go to state 442
'.' shift, and go to state 441
',' shift, and go to state 442
'.' shift, and go to state 441
',' shift, and go to state 442
'.' shift, and go to state 441
',' shift, and go to state 442
'.' shift, and go to state 441
',' shift, and go to state 442
'.' shift, and go to state 594
',' shift, and go to state 595
'.' shift, and go to state 730
',' shift, and go to state 731
'.' shift, and go to state 771
',' shift, and go to state 772
'.' shift, and go to state 832
'=' shift, and go to state 243
'=' shift, and go to state 243
'=' shift, and go to state 358
'=' shift, and go to state 358
'=' shift, and go to state 363
'=' shift, and go to state 439
'=' shift, and go to state 444
'=' shift, and go to state 449
'=' shift, and go to state 451
'=' shift, and go to state 589
'=' shift, and go to state 601
'=' shift, and go to state 662
'=' shift, and go to state 683
'=' shift, and go to state 684
'=' shift, and go to state 688
'?' shift, and go to state 689
'=' shift, and go to state 688
'?' shift, and go to state 689
'=' shift, and go to state 767
'=' shift, and go to state 819
'=' shift, and go to state 859
'=' shift, and go to state 860
'\'' shift, and go to state 478
'{' shift, and go to state 171
'{' shift, and go to state 172
'{' shift, and go to state 183
'{' shift, and go to state 204
'{' shift, and go to state 384
'{' shift, and go to state 41
'{' shift, and go to state 41
'{' shift, and go to state 41
'{' shift, and go to state 452
'{' shift, and go to state 604
'{' shift, and go to state 605
0 $accept: . start_symbol "end of input"
0 $accept: start_symbol "end of input" .
0 $accept: start_symbol . "end of input"
3 start_symbol: "#{" $@1 . embedded_lilypond
3 start_symbol: "#{" $@1 embedded_lilypond .
3 start_symbol: "#{" . $@1 embedded_lilypond
5 lilypond: lilypond toplevel_expression .
6 lilypond: lilypond assignment .
7 lilypond: lilypond error .
8 lilypond: lilypond "\version-error" .
9 toplevel_expression: header_block .
book_body go to state 355
BOOK_IDENTIFIER shift, and go to state 354
BOOK_IDENTIFIER shift, and go to state 356
bookpart_body go to state 357
braced_music_list go to state 184
braced_music_list go to state 185
braced_music_list go to state 792
chord_body_elements go to state 285
chord_items go to state 687
chord_separator go to state 493
context_def_spec_body go to state 440
context_mod_list go to state 665
context_modification go to state 412
dots go to state 246
dots go to state 246
dots go to state 255
dots go to state 729
error shift, and go to state 530
'}' shift, and go to state 531
error shift, and go to state 530
'}' shift, and go to state 815
error shift, and go to state 530
'}' shift, and go to state 816
exclamations go to state 324
exclamations go to state 667
figure_list go to state 286
fingering go to state 253
fingering go to state 254
fingering go to state 308
function_arglist_partial go to state 251
function_arglist_partial go to state 294
function_arglist_partial go to state 304
lilypond_header go to state 200
lilypond_header go to state 700
lilypond_header go to state 701
lilypond_header go to state 703
lilypond_header_body go to state 588
lyric_mode_music go to state 361
$@9 go to state 362
lyric_mode_music go to state 602
$@9 go to state 362
lyric_mode_music go to state 702
$@9 go to state 362
lyric_mode_music go to state 744
$@9 go to state 362
markup_braced_list_body go to state 423
markup_command_basic_arguments go to state 419
MARKUP_IDENTIFIER shift, and go to state 425
markup_word go to state 241
MARKUPLIST_IDENTIFIER shift, and go to state 426
multipliers go to state 342
multipliers go to state 812
MUSIC_IDENTIFIER shift, and go to state 360
MUSIC_IDENTIFIER shift, and go to state 360
MUSIC_IDENTIFIER shift, and go to state 360
MUSIC_IDENTIFIER shift, and go to state 360
music_list go to state 187
music_list go to state 198
music_list go to state 484
new_lyrics go to state 220
new_lyrics go to state 408
NUMBER_IDENTIFIER shift, and go to state 245
NUMBER_IDENTIFIER shift, and go to state 245
NUMBER_IDENTIFIER shift, and go to state 247
NUMBER_IDENTIFIER shift, and go to state 590
NUMBER_IDENTIFIER shift, and go to state 590
octave_check go to state 690
octave_check go to state 829
optional_id go to state 359
optional_id go to state 370
optional_rest go to state 834
partial_function go to state 619
partial_function go to state 653
partial_function go to state 660
partial_function go to state 679
partial_function go to state 681
partial_function go to state 759
partial_function go to state 781
partial_function go to state 782
post_events go to state 321
post_events go to state 343
post_events go to state 343
post_events go to state 344
post_events go to state 346
post_events go to state 474
post_events go to state 475
post_events go to state 486
post_events go to state 497
post_events go to state 596
post_events go to state 666
post_events go to state 839
post_events go to state 849
post_events go to state 851
questions go to state 495
questions go to state 780
score_body go to state 368
score_items go to state 369
score_body go to state 745
score_items go to state 369
score_body go to state 746
score_items go to state 369
start_symbol go to state 2
lilypond go to state 3
steno_duration go to state 450
steno_tonic_pitch go to state 685
steno_tonic_pitch go to state 686
step_number go to state 850
symbol_list_arg go to state 774
TONICNAME_PITCH shift, and go to state 112
TONICNAME_PITCH shift, and go to state 112
UNSIGNED shift, and go to state 244
UNSIGNED shift, and go to state 252
UNSIGNED shift, and go to state 252
UNSIGNED shift, and go to state 252
UNSIGNED shift, and go to state 783
10 toplevel_expression: book_block .
11 toplevel_expression: bookpart_block .
12 toplevel_expression: BOOK_IDENTIFIER .
13 toplevel_expression: score_block .
14 toplevel_expression: composite_music .
15 toplevel_expression: full_markup .
16 toplevel_expression: full_markup_list .
17 toplevel_expression: SCM_TOKEN .
18 toplevel_expression: embedded_scm_active .
19 toplevel_expression: output_def .
20 lookup: LOOKUP_IDENTIFIER .
21 | LOOKUP_IDENTIFIER . '.' symbol_list_rev
21 lookup: LOOKUP_IDENTIFIER '.' . symbol_list_rev
21 lookup: LOOKUP_IDENTIFIER '.' symbol_list_rev .
22 embedded_scm_bare: SCM_TOKEN .
23 embedded_scm_bare: SCM_IDENTIFIER .
24 embedded_scm_active: SCM_IDENTIFIER .
25 embedded_scm_active: scm_function_call .
26 embedded_scm_active: lookup .
27 embedded_scm_bare_arg: SCM_ARG .
28 embedded_scm_bare_arg: SCM_TOKEN .
29 embedded_scm_bare_arg: FRACTION .
30 embedded_scm_bare_arg: partial_markup .
31 embedded_scm_bare_arg: full_markup_list .
32 embedded_scm_bare_arg: context_modification .
33 embedded_scm_bare_arg: header_block .
34 embedded_scm_bare_arg: score_block .
35 embedded_scm_bare_arg: context_def_spec_block .
36 embedded_scm_bare_arg: book_block .
37 embedded_scm_bare_arg: bookpart_block .
38 embedded_scm_bare_arg: output_def .
39 embedded_scm_bare_arg: lookup .
40 embedded_scm: embedded_scm_bare .
40 embedded_scm: embedded_scm_bare .
41 embedded_scm: scm_function_call .
42 embedded_scm: lookup .
43 embedded_scm_arg: embedded_scm_bare_arg .
44 embedded_scm_arg: scm_function_call .
45 embedded_scm_arg: music_assign .
46 scm_function_call: SCM_FUNCTION . function_arglist
46 scm_function_call: SCM_FUNCTION . function_arglist
46 scm_function_call: SCM_FUNCTION function_arglist .
47 embedded_lilypond_number: '-' . embedded_lilypond_number
47 embedded_lilypond_number: '-' embedded_lilypond_number .
48 embedded_lilypond_number: bare_number_common .
49 embedded_lilypond_number: UNSIGNED . NUMBER_IDENTIFIER
49 embedded_lilypond_number: UNSIGNED . NUMBER_IDENTIFIER
49 embedded_lilypond_number: UNSIGNED NUMBER_IDENTIFIER .
51 embedded_lilypond: identifier_init_nonumber .
52 embedded_lilypond: embedded_lilypond_number .
53 embedded_lilypond: post_event . post_events
53 embedded_lilypond: post_event post_events .
54 embedded_lilypond: multiplied_duration .
55 embedded_lilypond: music_embedded . music_embedded music_list
55 embedded_lilypond: music_embedded music_embedded . music_list
55 embedded_lilypond: music_embedded music_embedded music_list .
56 embedded_lilypond: error .
57 embedded_lilypond: "\version-error" . embedded_lilypond
57 embedded_lilypond: "\version-error" embedded_lilypond .
59 lilypond_header_body: lilypond_header_body . assignment
59 lilypond_header_body: lilypond_header_body assignment .
60 | lilypond_header_body . SCM_TOKEN
60 lilypond_header_body: lilypond_header_body SCM_TOKEN .
61 | lilypond_header_body . embedded_scm_active
61 lilypond_header_body: lilypond_header_body embedded_scm_active .
62 lilypond_header: "\header" '{' . lilypond_header_body '}'
62 lilypond_header: "\header" '{' lilypond_header_body '}' .
62 lilypond_header: "\header" '{' lilypond_header_body . '}'
62 lilypond_header: "\header" . '{' lilypond_header_body '}'
64 header_block: $@2 . lilypond_header
64 header_block: $@2 lilypond_header .
65 assignment_id: STRING .
66 assignment_id: SYMBOL .
67 assignment: assignment_id '=' . identifier_init
67 assignment: assignment_id '=' identifier_init .
67 assignment: assignment_id . '=' identifier_init
68 | assignment_id . '.' property_path '=' identifier_init
68 assignment: assignment_id '.' . property_path '=' identifier_init
68 assignment: assignment_id '.' property_path '=' . identifier_init
68 assignment: assignment_id '.' property_path '=' identifier_init .
68 assignment: assignment_id '.' property_path . '=' identifier_init
69 | assignment_id . ',' property_path '=' identifier_init
69 assignment: assignment_id ',' . property_path '=' identifier_init
69 assignment: assignment_id ',' property_path '=' . identifier_init
69 assignment: assignment_id ',' property_path '=' identifier_init .
69 assignment: assignment_id ',' property_path . '=' identifier_init
70 assignment: markup_mode_word '=' . identifier_init
70 assignment: markup_mode_word '=' identifier_init .
70 assignment: markup_mode_word . '=' identifier_init
70 assignment: markup_mode_word . '=' identifier_init
71 identifier_init: identifier_init_nonumber .
72 identifier_init: number_expression .
73 identifier_init: symbol_list_part_bare '.' . property_path
73 identifier_init: symbol_list_part_bare '.' property_path .
73 identifier_init: symbol_list_part_bare . '.' property_path
74 | symbol_list_part_bare . ',' property_path
74 identifier_init: symbol_list_part_bare ',' . property_path
74 identifier_init: symbol_list_part_bare ',' property_path .
75 identifier_init: post_event_nofinger . post_events
75 identifier_init: post_event_nofinger post_events .
76 identifier_init_nonumber: header_block .
77 identifier_init_nonumber: score_block .
78 identifier_init_nonumber: book_block .
79 identifier_init_nonumber: bookpart_block .
80 identifier_init_nonumber: output_def .
81 identifier_init_nonumber: context_def_spec_block .
82 identifier_init_nonumber: music_assign .
82 identifier_init_nonumber: music_assign .
83 identifier_init_nonumber: pitch_or_music .
83 identifier_init_nonumber: pitch_or_music .
84 identifier_init_nonumber: FRACTION .
85 identifier_init_nonumber: string .
86 identifier_init_nonumber: embedded_scm .
86 identifier_init_nonumber: embedded_scm .
87 identifier_init_nonumber: partial_markup .
88 identifier_init_nonumber: full_markup_list .
89 identifier_init_nonumber: context_modification .
90 identifier_init_nonumber: partial_function "\etc" .
90 identifier_init_nonumber: partial_function . "\etc"
91 partial_function: MUSIC_FUNCTION . function_arglist_partial
91 partial_function: MUSIC_FUNCTION . function_arglist_partial
91 partial_function: MUSIC_FUNCTION function_arglist_partial .
92 partial_function: EVENT_FUNCTION . function_arglist_partial
92 partial_function: EVENT_FUNCTION . function_arglist_partial
92 partial_function: EVENT_FUNCTION function_arglist_partial .
93 partial_function: SCM_FUNCTION . function_arglist_partial
93 partial_function: SCM_FUNCTION . function_arglist_partial
93 partial_function: SCM_FUNCTION function_arglist_partial .
94 partial_function: "\override" . grob_prop_path '='
94 partial_function: "\override" . grob_prop_path '='
94 partial_function: "\override" grob_prop_path '=' .
94 partial_function: "\override" grob_prop_path '=' .
94 partial_function: "\override" grob_prop_path . '='
94 partial_function: "\override" grob_prop_path . '='
95 partial_function: "\set" . context_prop_spec '='
95 partial_function: "\set" . context_prop_spec '='
95 partial_function: "\set" context_prop_spec '=' .
95 partial_function: "\set" context_prop_spec '=' .
95 partial_function: "\set" context_prop_spec . '='
95 partial_function: "\set" context_prop_spec . '='
96 | MUSIC_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
96 | MUSIC_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
96 partial_function: MUSIC_FUNCTION
"scheme?"
function_arglist_optional
partial_function
.
97 | EVENT_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
97 | EVENT_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
97 partial_function: EVENT_FUNCTION
"scheme?"
function_arglist_optional
partial_function
.
98 | SCM_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
98 | SCM_FUNCTION
.
"scheme?"
function_arglist_optional
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
.
function_arglist_optional
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
function_arglist_optional
.
partial_function
98 partial_function: SCM_FUNCTION
"scheme?"
function_arglist_optional
partial_function
.
99 | "\override" . grob_prop_path '=' partial_function
99 | "\override" . grob_prop_path '=' partial_function
99 | "\override" grob_prop_path '=' . partial_function
99 | "\override" grob_prop_path '=' . partial_function
99 | "\override" grob_prop_path . '=' partial_function
99 | "\override" grob_prop_path . '=' partial_function
99 partial_function: "\override" grob_prop_path '=' partial_function .
100 | "\set" . context_prop_spec '=' partial_function
100 | "\set" . context_prop_spec '=' partial_function
100 | "\set" context_prop_spec '=' . partial_function
100 | "\set" context_prop_spec '=' . partial_function
100 | "\set" context_prop_spec . '=' partial_function
100 | "\set" context_prop_spec . '=' partial_function
100 partial_function: "\set" context_prop_spec '=' partial_function .
101 | MUSIC_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
101 | MUSIC_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
.
101 partial_function: MUSIC_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
101 partial_function: MUSIC_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
102 | EVENT_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
102 | EVENT_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
.
102 partial_function: EVENT_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
102 partial_function: EVENT_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
103 | SCM_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
103 | SCM_FUNCTION
.
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
.
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
.
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
"scheme?"
function_arglist_nonbackup
partial_function
.
103 partial_function: SCM_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
103 partial_function: SCM_FUNCTION
"optional?"
.
"scheme?"
function_arglist_nonbackup
partial_function
104 context_def_spec_block: "\context" '{' . context_def_spec_body '}'
104 context_def_spec_block: "\context" '{' context_def_spec_body '}' .
104 context_def_spec_block: "\context" '{' context_def_spec_body . '}'
104 context_def_spec_block: "\context" . '{' context_def_spec_body '}'
105 context_mod_arg: embedded_scm .
107 context_mod_arg: $@3 . composite_music
107 context_mod_arg: $@3 composite_music .
109 context_def_spec_body: context_def_spec_body . context_mod
109 context_def_spec_body: context_def_spec_body context_mod .
110 | context_def_spec_body . context_modification
110 context_def_spec_body: context_def_spec_body context_modification .
111 | context_def_spec_body . context_mod_arg
111 context_def_spec_body: context_def_spec_body context_mod_arg .
112 book_block: "\book" '{' . book_body '}'
112 book_block: "\book" '{' book_body '}' .
112 book_block: "\book" '{' book_body . '}'
112 book_block: "\book" . '{' book_body '}'
114 book_body: BOOK_IDENTIFIER .
115 book_body: book_body . paper_block
115 book_body: book_body paper_block .
116 | book_body . bookpart_block
116 book_body: book_body bookpart_block .
117 | book_body . score_block
117 book_body: book_body score_block .
118 | book_body . composite_music
118 book_body: book_body composite_music .
119 | book_body . full_markup
119 book_body: book_body full_markup .
120 | book_body . full_markup_list
120 book_body: book_body full_markup_list .
121 | book_body . SCM_TOKEN
121 book_body: book_body SCM_TOKEN .
122 | book_body . embedded_scm_active
122 book_body: book_body embedded_scm_active .
124 | book_body . $@4 lilypond_header
124 book_body: book_body $@4 . lilypond_header
124 book_body: book_body $@4 lilypond_header .
125 | book_body . error
125 book_body: book_body error .
126 bookpart_block: "\bookpart" '{' . bookpart_body '}'
126 bookpart_block: "\bookpart" '{' bookpart_body '}' .
126 bookpart_block: "\bookpart" '{' bookpart_body . '}'
126 bookpart_block: "\bookpart" . '{' bookpart_body '}'
128 bookpart_body: BOOK_IDENTIFIER .
129 bookpart_body: bookpart_body . paper_block
129 bookpart_body: bookpart_body paper_block .
130 | bookpart_body . score_block
130 bookpart_body: bookpart_body score_block .
131 | bookpart_body . composite_music
131 bookpart_body: bookpart_body composite_music .
132 | bookpart_body . full_markup
132 bookpart_body: bookpart_body full_markup .
133 | bookpart_body . full_markup_list
133 bookpart_body: bookpart_body full_markup_list .
134 | bookpart_body . SCM_TOKEN
134 bookpart_body: bookpart_body SCM_TOKEN .
135 | bookpart_body . embedded_scm_active
135 bookpart_body: bookpart_body embedded_scm_active .
137 | bookpart_body . $@5 lilypond_header
137 bookpart_body: bookpart_body $@5 . lilypond_header
137 bookpart_body: bookpart_body $@5 lilypond_header .
138 | bookpart_body . error
138 bookpart_body: bookpart_body error .
139 score_block: "\score" '{' . score_body '}'
139 score_block: "\score" '{' score_body '}' .
139 score_block: "\score" '{' score_body . '}'
139 score_block: "\score" . '{' score_body '}'
140 score_body: score_items .
141 score_body: score_body . error
141 score_body: score_body . error
141 score_body: score_body . error
141 score_body: score_body error .
142 score_item: embedded_scm .
143 score_item: music .
144 score_item: output_def .
146 score_items: score_items . score_item
146 score_items: score_items score_item .
148 | score_items . $@6 lilypond_header
148 score_items: score_items $@6 . lilypond_header
148 score_items: score_items $@6 lilypond_header .
149 paper_block: output_def .
150 output_def: output_def_body '}' .
150 output_def: output_def_body . '}'
151 output_def_head: "\paper" .
152 output_def_head: "\midi" .
153 output_def_head: "\layout" .
154 output_def_head_with_mode_switch: output_def_head .
155 music_or_context_def: music_assign .
156 music_or_context_def: context_def_spec_block .
157 output_def_body: output_def_head_with_mode_switch '{' .
157 output_def_body: output_def_head_with_mode_switch . '{'
158 output_def_body: output_def_body . assignment
158 output_def_body: output_def_body assignment .
159 | output_def_body . embedded_scm_active
159 output_def_body: output_def_body embedded_scm_active .
160 | output_def_body . SCM_TOKEN
160 output_def_body: output_def_body SCM_TOKEN .
162 | output_def_body . $@7 music_or_context_def
162 output_def_body: output_def_body $@7 . music_or_context_def
162 output_def_body: output_def_body $@7 music_or_context_def .
163 | output_def_body . error
163 output_def_body: output_def_body error .
164 tempo_event: "\tempo" . steno_duration '=' tempo_range
164 tempo_event: "\tempo" steno_duration '=' . tempo_range
164 tempo_event: "\tempo" steno_duration '=' tempo_range .
164 tempo_event: "\tempo" steno_duration . '=' tempo_range
165 | "\tempo" . text steno_duration '=' tempo_range
165 tempo_event: "\tempo" text . steno_duration '=' tempo_range
165 tempo_event: "\tempo" text steno_duration '=' . tempo_range
165 tempo_event: "\tempo" text steno_duration '=' tempo_range .
165 tempo_event: "\tempo" text steno_duration . '=' tempo_range
166 | "\tempo" . text
166 | "\tempo" text .
168 music_list: music_list . music_embedded
168 music_list: music_list . music_embedded
168 music_list: music_list . music_embedded
168 music_list: music_list music_embedded .
169 | music_list . error
169 | music_list . error
169 | music_list . error
169 music_list: music_list error .
170 braced_music_list: '{' . music_list '}'
170 braced_music_list: '{' music_list '}' .
170 braced_music_list: '{' music_list . '}'
171 music: music_assign .
171 music: music_assign .
172 music: lyric_element_music .
173 music: pitch_as_music .
174 pitch_as_music: pitch_or_music .
174 pitch_as_music: pitch_or_music .
175 music_embedded: music .
176 music_embedded: music_embedded_backup .
177 | music_embedded_backup
.
"(backed-up?)"
lyric_element_music
177 music_embedded: music_embedded_backup
"(backed-up?)"
.
lyric_element_music
177 music_embedded: music_embedded_backup
"(backed-up?)"
lyric_element_music
.
178 music_embedded: multiplied_duration . post_events
178 music_embedded: multiplied_duration . post_events
178 music_embedded: multiplied_duration post_events .
179 music_embedded_backup: embedded_scm .
179 music_embedded_backup: embedded_scm .
180 music_assign: simple_music .
181 music_assign: composite_music .
182 repeated_music: "\repeat" . simple_string unsigned_number music
182 repeated_music: "\repeat" simple_string . unsigned_number music
182 repeated_music: "\repeat" simple_string unsigned_number . music
182 repeated_music: "\repeat" simple_string unsigned_number music .
183 | "\repeat"
.
simple_string
unsigned_number
music
"\alternative"
braced_music_list
183 | "\repeat"
simple_string
.
unsigned_number
music
"\alternative"
braced_music_list
183 | "\repeat"
simple_string
unsigned_number
.
music
"\alternative"
braced_music_list
183 | "\repeat"
simple_string
unsigned_number
music
.
"\alternative"
braced_music_list
183 repeated_music: "\repeat"
simple_string
unsigned_number
music
"\alternative"
.
braced_music_list
183 repeated_music: "\repeat"
simple_string
unsigned_number
music
"\alternative"
braced_music_list
.
184 sequential_music: "\sequential" . braced_music_list
184 sequential_music: "\sequential" braced_music_list .
185 sequential_music: braced_music_list .
186 simultaneous_music: "\simultaneous" . braced_music_list
186 simultaneous_music: "\simultaneous" braced_music_list .
187 simultaneous_music: "<<" . music_list ">>"
187 simultaneous_music: "<<" music_list ">>" .
187 simultaneous_music: "<<" music_list . ">>"
188 simple_music: event_chord .
189 simple_music: music_property_def .
190 simple_music: context_change .
192 context_modification: "\with" $@8 '{' . context_mod_list '}'
192 context_modification: "\with" $@8 '{' context_mod_list '}' .
192 context_modification: "\with" $@8 '{' context_mod_list . '}'
192 context_modification: "\with" $@8 . '{' context_mod_list '}'
192 context_modification: "\with" . $@8 '{' context_mod_list '}'
193 | "\with" . context_modification_arg
193 context_modification: "\with" context_modification_arg .
194 context_modification_arg: embedded_scm .
195 context_modification_arg: MUSIC_IDENTIFIER .
196 optional_context_mods: context_modification_mods_list .
198 context_modification_mods_list: context_modification_mods_list
.
context_modification
198 context_modification_mods_list: context_modification_mods_list
context_modification
.
200 context_mod_list: context_mod_list . context_mod
200 context_mod_list: context_mod_list context_mod .
201 | context_mod_list . context_mod_arg
201 context_mod_list: context_mod_list context_mod_arg .
202 context_prefix: "\context" . symbol optional_id optional_context_mods
202 context_prefix: "\context" . symbol optional_id optional_context_mods
202 context_prefix: "\context" symbol . optional_id optional_context_mods
202 context_prefix: "\context" symbol optional_id . optional_context_mods
202 context_prefix: "\context" symbol optional_id optional_context_mods .
203 context_prefix: "\new" . symbol optional_id optional_context_mods
203 context_prefix: "\new" symbol . optional_id optional_context_mods
203 context_prefix: "\new" symbol optional_id . optional_context_mods
203 context_prefix: "\new" symbol optional_id optional_context_mods .
204 new_lyrics: "\addlyrics" . optional_context_mods lyric_mode_music
204 new_lyrics: "\addlyrics" optional_context_mods . lyric_mode_music
204 new_lyrics: "\addlyrics" optional_context_mods lyric_mode_music .
205 new_lyrics: new_lyrics
"\addlyrics"
.
optional_context_mods
lyric_mode_music
205 new_lyrics: new_lyrics
"\addlyrics"
optional_context_mods
.
lyric_mode_music
205 new_lyrics: new_lyrics
"\addlyrics"
optional_context_mods
lyric_mode_music
.
205 new_lyrics: new_lyrics
.
"\addlyrics"
optional_context_mods
lyric_mode_music
205 new_lyrics: new_lyrics
.
"\addlyrics"
optional_context_mods
lyric_mode_music
206 basic_music: music_function_call .
207 basic_music: repeated_music .
208 basic_music: music_bare .
209 basic_music: "\lyricsto" . simple_string lyric_mode_music
209 basic_music: "\lyricsto" simple_string . lyric_mode_music
209 basic_music: "\lyricsto" simple_string lyric_mode_music .
210 | "\lyricsto" . symbol '=' simple_string lyric_mode_music
210 basic_music: "\lyricsto" symbol '=' . simple_string lyric_mode_music
210 basic_music: "\lyricsto" symbol '=' simple_string . lyric_mode_music
210 basic_music: "\lyricsto" symbol '=' simple_string lyric_mode_music .
210 basic_music: "\lyricsto" symbol . '=' simple_string lyric_mode_music
211 contextable_music: basic_music .
212 contextable_music: pitch_as_music .
213 contextable_music: event_chord .
214 contexted_basic_music: context_prefix . contextable_music new_lyrics
214 contexted_basic_music: context_prefix contextable_music . new_lyrics
214 contexted_basic_music: context_prefix contextable_music new_lyrics .
215 | context_prefix . contextable_music
215 | context_prefix contextable_music .
216 | context_prefix . contexted_basic_music
216 contexted_basic_music: context_prefix contexted_basic_music .
217 composite_music: basic_music .
218 composite_music: contexted_basic_music .
219 | basic_music . new_lyrics
219 composite_music: basic_music new_lyrics .
220 music_bare: mode_changed_music .
221 music_bare: MUSIC_IDENTIFIER .
222 music_bare: grouped_music_list .
223 grouped_music_list: simultaneous_music .
224 grouped_music_list: sequential_music .
225 symbol_list_arg: SYMBOL_LIST .
226 | SYMBOL_LIST . '.' symbol_list_rev
226 symbol_list_arg: SYMBOL_LIST '.' . symbol_list_rev
226 symbol_list_arg: SYMBOL_LIST '.' symbol_list_rev .
227 | SYMBOL_LIST . ',' symbol_list_rev
227 symbol_list_arg: SYMBOL_LIST ',' . symbol_list_rev
227 symbol_list_arg: SYMBOL_LIST ',' symbol_list_rev .
228 symbol_list_rev: symbol_list_part .
229 symbol_list_rev: symbol_list_rev '.' . symbol_list_part
229 symbol_list_rev: symbol_list_rev '.' symbol_list_part .
229 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
229 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
229 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
229 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
229 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
229 symbol_list_rev: symbol_list_rev . '.' symbol_list_part
230 | symbol_list_rev . ',' symbol_list_part
230 | symbol_list_rev . ',' symbol_list_part
230 | symbol_list_rev . ',' symbol_list_part
230 | symbol_list_rev . ',' symbol_list_part
230 | symbol_list_rev . ',' symbol_list_part
230 | symbol_list_rev . ',' symbol_list_part
230 symbol_list_rev: symbol_list_rev ',' . symbol_list_part
230 symbol_list_rev: symbol_list_rev ',' symbol_list_part .
231 symbol_list_part: symbol_list_part_bare .
232 symbol_list_part: embedded_scm_bare .
233 symbol_list_element: STRING .
233 symbol_list_element: STRING .
234 symbol_list_element: UNSIGNED .
234 symbol_list_element: UNSIGNED .
235 symbol_list_part_bare: SYMBOL .
235 symbol_list_part_bare: SYMBOL .
236 symbol_list_part_bare: symbol_list_element .
237 function_arglist_nonbackup: function_arglist_common .
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
.
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
.
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
post_event_nofinger
.
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
238 function_arglist_nonbackup: "optional?"
.
"scheme?"
function_arglist_nonbackup
post_event_nofinger
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
239 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
239 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
239 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
239 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
239 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
.
UNSIGNED
239 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
UNSIGNED
.
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
.
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
240 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
REAL
240 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
REAL
.
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
.
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
'-'
.
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
241 | "optional?"
"scheme?"
function_arglist_nonbackup
.
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 | "optional?"
.
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
241 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
'-'
NUMBER_IDENTIFIER
.
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
.
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
242 | "optional?"
"scheme?"
function_arglist_nonbackup
.
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 | "optional?"
.
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
242 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
embedded_scm_arg
.
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
.
function_arglist_nonbackup
bare_number_common
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
243 | "optional?"
"scheme?"
function_arglist_nonbackup
.
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 | "optional?"
.
"scheme?"
function_arglist_nonbackup
bare_number_common
243 function_arglist_nonbackup: "optional?"
"scheme?"
function_arglist_nonbackup
bare_number_common
.
244 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
.
pitch_or_music
244 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
pitch_or_music
.
244 function_arglist_nonbackup: function_arglist_nonbackup_reparse
.
"(reparsed?)"
pitch_or_music
245 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
multiplied_duration
245 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
multiplied_duration
245 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
multiplied_duration
.
246 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
reparsed_rhythm
246 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
reparsed_rhythm
246 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
reparsed_rhythm
.
247 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
bare_number_common
247 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
bare_number_common
247 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
bare_number_common
.
248 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
SCM_ARG
248 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
SCM_ARG
248 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
SCM_ARG
.
249 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
lyric_element_music
249 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
lyric_element_music
249 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
lyric_element_music
.
250 | function_arglist_nonbackup_reparse
"(reparsed?)"
.
symbol_list_arg
250 | function_arglist_nonbackup_reparse
.
"(reparsed?)"
symbol_list_arg
250 function_arglist_nonbackup: function_arglist_nonbackup_reparse
"(reparsed?)"
symbol_list_arg
.
251 reparsed_rhythm: DURATION_ARG . dots multipliers post_events
251 reparsed_rhythm: DURATION_ARG dots . multipliers post_events
251 reparsed_rhythm: DURATION_ARG dots multipliers . post_events
251 reparsed_rhythm: DURATION_ARG dots multipliers post_events .
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
.
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
.
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
.
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
252 function_arglist_nonbackup_reparse: "optional?"
.
"scheme?"
function_arglist_nonbackup
SCM_IDENTIFIER
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
.
function_arglist_nonbackup
pitch
253 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
253 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
253 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
253 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
253 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
253 | "optional?"
"scheme?"
function_arglist_nonbackup
.
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 | "optional?"
.
"scheme?"
function_arglist_nonbackup
pitch
253 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
pitch
.
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
.
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
254 | "optional?"
"scheme?"
function_arglist_nonbackup
.
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 | "optional?"
.
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
254 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
steno_tonic_pitch
.
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
.
function_arglist_nonbackup
STRING
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
255 | "optional?"
"scheme?"
function_arglist_nonbackup
.
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 | "optional?"
.
"scheme?"
function_arglist_nonbackup
STRING
255 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
STRING
.
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
.
function_arglist_nonbackup
SYMBOL
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
256 | "optional?"
"scheme?"
function_arglist_nonbackup
.
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 | "optional?"
.
"scheme?"
function_arglist_nonbackup
SYMBOL
256 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
SYMBOL
.
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
.
function_arglist_nonbackup
full_markup
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
257 | "optional?"
"scheme?"
function_arglist_nonbackup
.
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 | "optional?"
.
"scheme?"
function_arglist_nonbackup
full_markup
257 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
full_markup
.
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
.
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
258 | "optional?"
"scheme?"
function_arglist_nonbackup
.
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 | "optional?"
.
"scheme?"
function_arglist_nonbackup
UNSIGNED
258 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
UNSIGNED
.
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
.
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
259 | "optional?"
"scheme?"
function_arglist_nonbackup
.
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 | "optional?"
.
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
259 function_arglist_nonbackup_reparse: "optional?"
"scheme?"
function_arglist_nonbackup
DURATION_IDENTIFIER
.
260 function_arglist_backup: function_arglist_common .
261 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
"scheme?"
.
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
.
embedded_scm_arg
261 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
.
embedded_scm_arg
261 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
embedded_scm_arg
.
261 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
261 function_arglist_backup: "optional?"
.
"scheme?"
function_arglist_backup
embedded_scm_arg
262 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
262 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
262 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
262 | "optional?"
"scheme?"
.
function_arglist_backup
post_event_nofinger
262 | "optional?"
"scheme?"
function_arglist_backup
.
post_event_nofinger
262 | "optional?"
"scheme?"
function_arglist_backup
.
post_event_nofinger
262 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
262 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
262 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
262 | "optional?"
.
"scheme?"
function_arglist_backup
post_event_nofinger
262 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
post_event_nofinger
.
263 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
263 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
263 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
263 | "optional?"
"scheme?"
.
function_arglist_backup
pitch
263 | "optional?"
"scheme?"
function_arglist_backup
.
pitch
263 | "optional?"
"scheme?"
function_arglist_backup
.
pitch
263 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
263 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
263 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
263 | "optional?"
.
"scheme?"
function_arglist_backup
pitch
263 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
pitch
.
264 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
"scheme?"
.
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
"scheme?"
function_arglist_backup
.
steno_tonic_pitch
264 | "optional?"
"scheme?"
function_arglist_backup
.
steno_tonic_pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
264 | "optional?"
.
"scheme?"
function_arglist_backup
steno_tonic_pitch
264 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
steno_tonic_pitch
.
265 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
265 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
265 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
265 | "optional?"
"scheme?"
.
function_arglist_backup
full_markup
265 | "optional?"
"scheme?"
function_arglist_backup
.
full_markup
265 | "optional?"
"scheme?"
function_arglist_backup
.
full_markup
265 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
265 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
265 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
265 | "optional?"
.
"scheme?"
function_arglist_backup
full_markup
265 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
full_markup
.
266 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
266 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
266 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
266 | "optional?"
"scheme?"
.
function_arglist_backup
UNSIGNED
266 | "optional?"
"scheme?"
function_arglist_backup
.
UNSIGNED
266 | "optional?"
"scheme?"
function_arglist_backup
.
UNSIGNED
266 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
266 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
266 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
266 | "optional?"
.
"scheme?"
function_arglist_backup
UNSIGNED
266 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
UNSIGNED
.
267 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
267 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
267 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
267 | "optional?"
"scheme?"
.
function_arglist_backup
REAL
267 | "optional?"
"scheme?"
function_arglist_backup
.
REAL
267 | "optional?"
"scheme?"
function_arglist_backup
.
REAL
267 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
267 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
267 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
267 | "optional?"
.
"scheme?"
function_arglist_backup
REAL
267 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
REAL
.
268 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
"scheme?"
.
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
"scheme?"
function_arglist_backup
.
NUMBER_IDENTIFIER
268 | "optional?"
"scheme?"
function_arglist_backup
.
NUMBER_IDENTIFIER
268 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
268 | "optional?"
.
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
268 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
NUMBER_IDENTIFIER
.
269 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
UNSIGNED
269 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
UNSIGNED
269 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
269 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
UNSIGNED
269 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
.
UNSIGNED
269 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
UNSIGNED
.
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
270 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
REAL
270 | "optional?"
"scheme?"
function_arglist_backup
'-'
.
REAL
270 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
REAL
270 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
REAL
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
270 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
REAL
270 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
REAL
.
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
"scheme?"
.
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
"scheme?"
function_arglist_backup
'-'
.
NUMBER_IDENTIFIER
271 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
NUMBER_IDENTIFIER
271 | "optional?"
"scheme?"
function_arglist_backup
.
'-'
NUMBER_IDENTIFIER
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 | "optional?"
.
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
271 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
'-'
NUMBER_IDENTIFIER
.
272 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
"scheme?"
.
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
"scheme?"
function_arglist_backup
.
DURATION_IDENTIFIER
272 | "optional?"
"scheme?"
function_arglist_backup
.
DURATION_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
272 | "optional?"
.
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
272 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
DURATION_IDENTIFIER
.
273 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
"scheme?"
.
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
"scheme?"
function_arglist_backup
.
SCM_IDENTIFIER
273 | "optional?"
"scheme?"
function_arglist_backup
.
SCM_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
273 | "optional?"
.
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
273 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
SCM_IDENTIFIER
.
274 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
274 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
274 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
274 | "optional?"
"scheme?"
.
function_arglist_backup
STRING
274 | "optional?"
"scheme?"
function_arglist_backup
.
STRING
274 | "optional?"
"scheme?"
function_arglist_backup
.
STRING
274 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
274 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
274 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
274 | "optional?"
.
"scheme?"
function_arglist_backup
STRING
274 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
STRING
.
275 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
275 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
275 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
275 | "optional?"
"scheme?"
.
function_arglist_backup
SYMBOL
275 | "optional?"
"scheme?"
function_arglist_backup
.
SYMBOL
275 | "optional?"
"scheme?"
function_arglist_backup
.
SYMBOL
275 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
275 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
275 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
275 | "optional?"
.
"scheme?"
function_arglist_backup
SYMBOL
275 function_arglist_backup: "optional?"
"scheme?"
function_arglist_backup
SYMBOL
.
276 | function_arglist_backup
.
"(reparsed?)"
pitch_or_music
276 | function_arglist_backup
.
"(reparsed?)"
pitch_or_music
276 function_arglist_backup: function_arglist_backup
"(reparsed?)"
.
pitch_or_music
276 function_arglist_backup: function_arglist_backup
"(reparsed?)"
pitch_or_music
.
276 function_arglist_backup: function_arglist_backup
.
"(reparsed?)"
pitch_or_music
277 | function_arglist_backup
"(reparsed?)"
.
bare_number_common
277 | function_arglist_backup
.
"(reparsed?)"
bare_number_common
277 | function_arglist_backup
.
"(reparsed?)"
bare_number_common
277 | function_arglist_backup
.
"(reparsed?)"
bare_number_common
277 function_arglist_backup: function_arglist_backup
"(reparsed?)"
bare_number_common
.
278 | function_arglist_backup
"(reparsed?)"
.
multiplied_duration
278 | function_arglist_backup
.
"(reparsed?)"
multiplied_duration
278 | function_arglist_backup
.
"(reparsed?)"
multiplied_duration
278 | function_arglist_backup
.
"(reparsed?)"
multiplied_duration
278 function_arglist_backup: function_arglist_backup
"(reparsed?)"
multiplied_duration
.
279 | function_arglist_backup
"(reparsed?)"
.
reparsed_rhythm
279 | function_arglist_backup
.
"(reparsed?)"
reparsed_rhythm
279 | function_arglist_backup
.
"(reparsed?)"
reparsed_rhythm
279 | function_arglist_backup
.
"(reparsed?)"
reparsed_rhythm
279 function_arglist_backup: function_arglist_backup
"(reparsed?)"
reparsed_rhythm
.
280 | function_arglist_backup
"(reparsed?)"
.
symbol_list_arg
280 | function_arglist_backup
.
"(reparsed?)"
symbol_list_arg
280 | function_arglist_backup
.
"(reparsed?)"
symbol_list_arg
280 | function_arglist_backup
.
"(reparsed?)"
symbol_list_arg
280 function_arglist_backup: function_arglist_backup
"(reparsed?)"
symbol_list_arg
.
281 function_arglist: function_arglist_nonbackup .
282 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
"scheme?"
function_arglist_skip_nonbackup
"\default"
.
282 function_arglist: "optional?"
"scheme?"
function_arglist_skip_nonbackup
.
"\default"
282 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
282 function_arglist: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
"\default"
283 function_arglist_skip_nonbackup: function_arglist_nonbackup .
283 function_arglist_skip_nonbackup: function_arglist_nonbackup .
283 function_arglist_skip_nonbackup: function_arglist_nonbackup .
283 function_arglist_skip_nonbackup: function_arglist_nonbackup .
283 function_arglist_skip_nonbackup: function_arglist_nonbackup .
284 function_arglist_skip_nonbackup: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
284 function_arglist_skip_nonbackup: "optional?"
"scheme?"
.
function_arglist_skip_nonbackup
284 function_arglist_skip_nonbackup: "optional?"
"scheme?"
function_arglist_skip_nonbackup
.
284 function_arglist_skip_nonbackup: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
284 function_arglist_skip_nonbackup: "optional?"
.
"scheme?"
function_arglist_skip_nonbackup
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" . function_arglist_optional
285 function_arglist_partial: "scheme?" function_arglist_optional .
285 function_arglist_partial: "scheme?" function_arglist_optional .
285 function_arglist_partial: "scheme?" function_arglist_optional .
285 function_arglist_partial: "scheme?" function_arglist_optional .
285 function_arglist_partial: "scheme?" function_arglist_optional .
285 function_arglist_partial: "scheme?" function_arglist_optional .
285 function_arglist_partial: "scheme?" function_arglist_optional .
286 | "scheme?" . function_arglist_partial_optional
286 | "scheme?" . function_arglist_partial_optional
286 | "scheme?" . function_arglist_partial_optional
286 | "scheme?" . function_arglist_partial_optional
286 | "scheme?" . function_arglist_partial_optional
286 | "scheme?" . function_arglist_partial_optional
286 | "scheme?" . function_arglist_partial_optional
286 function_arglist_partial: "scheme?" function_arglist_partial_optional .
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
.
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
"scheme?"
function_arglist_nonbackup
.
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
287 function_arglist_partial: "optional?"
.
"scheme?"
function_arglist_nonbackup
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
"scheme?"
.
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 | "optional?"
.
"scheme?"
function_arglist_partial
288 function_arglist_partial: "optional?"
"scheme?"
function_arglist_partial
.
289 function_arglist_partial_optional: "scheme?"
.
function_arglist_optional
289 function_arglist_partial_optional: "scheme?"
function_arglist_optional
.
290 | "scheme?"
.
function_arglist_partial_optional
290 function_arglist_partial_optional: "scheme?"
function_arglist_partial_optional
.
291 function_arglist_partial_optional: "optional?"
"scheme?"
.
function_arglist_backup
291 function_arglist_partial_optional: "optional?"
"scheme?"
.
function_arglist_backup
291 function_arglist_partial_optional: "optional?"
"scheme?"
function_arglist_backup
.
291 function_arglist_partial_optional: "optional?"
.
"scheme?"
function_arglist_backup
291 function_arglist_partial_optional: "optional?"
.
"scheme?"
function_arglist_backup
292 | "optional?"
"scheme?"
.
function_arglist_partial_optional
292 | "optional?"
"scheme?"
.
function_arglist_partial_optional
292 | "optional?"
.
"scheme?"
function_arglist_partial_optional
292 | "optional?"
.
"scheme?"
function_arglist_partial_optional
292 function_arglist_partial_optional: "optional?"
"scheme?"
function_arglist_partial_optional
.
293 function_arglist_common: EXPECT_NO_MORE_ARGS .
294 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
294 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
294 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
294 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
294 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
294 function_arglist_common: "scheme?"
.
function_arglist_optional
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
.
embedded_scm_arg
294 function_arglist_common: "scheme?"
function_arglist_optional
embedded_scm_arg
.
295 | "scheme?"
.
function_arglist_optional
bare_number_common
295 | "scheme?"
.
function_arglist_optional
bare_number_common
295 | "scheme?"
.
function_arglist_optional
bare_number_common
295 | "scheme?"
.
function_arglist_optional
bare_number_common
295 | "scheme?"
.
function_arglist_optional
bare_number_common
295 | "scheme?"
.
function_arglist_optional
bare_number_common
295 | "scheme?"
function_arglist_optional
.
bare_number_common
295 | "scheme?"
function_arglist_optional
.
bare_number_common
295 | "scheme?"
function_arglist_optional
.
bare_number_common
295 | "scheme?"
function_arglist_optional
.
bare_number_common
295 | "scheme?"
function_arglist_optional
.
bare_number_common
295 | "scheme?"
function_arglist_optional
.
bare_number_common
295 function_arglist_common: "scheme?"
function_arglist_optional
bare_number_common
.
296 | "scheme?"
.
function_arglist_optional
post_event_nofinger
296 | "scheme?"
.
function_arglist_optional
post_event_nofinger
296 | "scheme?"
.
function_arglist_optional
post_event_nofinger
296 | "scheme?"
.
function_arglist_optional
post_event_nofinger
296 | "scheme?"
.
function_arglist_optional
post_event_nofinger
296 | "scheme?"
.
function_arglist_optional
post_event_nofinger
296 | "scheme?"
function_arglist_optional
.
post_event_nofinger
296 | "scheme?"
function_arglist_optional
.
post_event_nofinger
296 | "scheme?"
function_arglist_optional
.
post_event_nofinger
296 | "scheme?"
function_arglist_optional
.
post_event_nofinger
296 | "scheme?"
function_arglist_optional
.
post_event_nofinger
296 | "scheme?"
function_arglist_optional
.
post_event_nofinger
296 function_arglist_common: "scheme?"
function_arglist_optional
post_event_nofinger
.
297 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
.
function_arglist_optional
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
297 | "scheme?"
function_arglist_optional
.
'-'
NUMBER_IDENTIFIER
297 function_arglist_common: "scheme?"
function_arglist_optional
'-'
.
NUMBER_IDENTIFIER
297 function_arglist_common: "scheme?"
function_arglist_optional
'-'
NUMBER_IDENTIFIER
.
298 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
.
SCM_ARG
298 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
SCM_ARG
.
298 function_arglist_common: function_arglist_common_reparse
.
"(reparsed?)"
SCM_ARG
299 | function_arglist_common_reparse
"(reparsed?)"
.
lyric_element_music
299 | function_arglist_common_reparse
.
"(reparsed?)"
lyric_element_music
299 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
lyric_element_music
.
300 | function_arglist_common_reparse
"(reparsed?)"
.
pitch_or_music
300 | function_arglist_common_reparse
.
"(reparsed?)"
pitch_or_music
300 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
pitch_or_music
.
301 | function_arglist_common_reparse
"(reparsed?)"
.
bare_number_common
301 | function_arglist_common_reparse
.
"(reparsed?)"
bare_number_common
301 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
bare_number_common
.
302 | function_arglist_common_reparse
"(reparsed?)"
.
multiplied_duration
302 | function_arglist_common_reparse
.
"(reparsed?)"
multiplied_duration
302 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
multiplied_duration
.
303 | function_arglist_common_reparse
"(reparsed?)"
.
reparsed_rhythm
303 | function_arglist_common_reparse
.
"(reparsed?)"
reparsed_rhythm
303 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
reparsed_rhythm
.
304 | function_arglist_common_reparse
"(reparsed?)"
.
symbol_list_arg
304 | function_arglist_common_reparse
.
"(reparsed?)"
symbol_list_arg
304 function_arglist_common: function_arglist_common_reparse
"(reparsed?)"
symbol_list_arg
.
305 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
.
function_arglist_optional
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
.
SCM_IDENTIFIER
305 function_arglist_common_reparse: "scheme?"
function_arglist_optional
SCM_IDENTIFIER
.
306 | "scheme?"
.
function_arglist_optional
pitch
306 | "scheme?"
.
function_arglist_optional
pitch
306 | "scheme?"
.
function_arglist_optional
pitch
306 | "scheme?"
.
function_arglist_optional
pitch
306 | "scheme?"
.
function_arglist_optional
pitch
306 | "scheme?"
.
function_arglist_optional
pitch
306 | "scheme?"
function_arglist_optional
.
pitch
306 | "scheme?"
function_arglist_optional
.
pitch
306 | "scheme?"
function_arglist_optional
.
pitch
306 | "scheme?"
function_arglist_optional
.
pitch
306 | "scheme?"
function_arglist_optional
.
pitch
306 | "scheme?"
function_arglist_optional
.
pitch
306 function_arglist_common_reparse: "scheme?"
function_arglist_optional
pitch
.
307 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
307 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
307 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
307 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
307 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
307 | "scheme?"
.
function_arglist_optional
steno_tonic_pitch
307 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
307 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
307 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
307 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
307 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
307 | "scheme?"
function_arglist_optional
.
steno_tonic_pitch
307 function_arglist_common_reparse: "scheme?"
function_arglist_optional
steno_tonic_pitch
.
308 | "scheme?"
.
function_arglist_optional
STRING
308 | "scheme?"
.
function_arglist_optional
STRING
308 | "scheme?"
.
function_arglist_optional
STRING
308 | "scheme?"
.
function_arglist_optional
STRING
308 | "scheme?"
.
function_arglist_optional
STRING
308 | "scheme?"
.
function_arglist_optional
STRING
308 | "scheme?"
function_arglist_optional
.
STRING
308 | "scheme?"
function_arglist_optional
.
STRING
308 | "scheme?"
function_arglist_optional
.
STRING
308 | "scheme?"
function_arglist_optional
.
STRING
308 | "scheme?"
function_arglist_optional
.
STRING
308 | "scheme?"
function_arglist_optional
.
STRING
308 function_arglist_common_reparse: "scheme?"
function_arglist_optional
STRING
.
309 | "scheme?"
.
function_arglist_optional
SYMBOL
309 | "scheme?"
.
function_arglist_optional
SYMBOL
309 | "scheme?"
.
function_arglist_optional
SYMBOL
309 | "scheme?"
.
function_arglist_optional
SYMBOL
309 | "scheme?"
.
function_arglist_optional
SYMBOL
309 | "scheme?"
.
function_arglist_optional
SYMBOL
309 | "scheme?"
function_arglist_optional
.
SYMBOL
309 | "scheme?"
function_arglist_optional
.
SYMBOL
309 | "scheme?"
function_arglist_optional
.
SYMBOL
309 | "scheme?"
function_arglist_optional
.
SYMBOL
309 | "scheme?"
function_arglist_optional
.
SYMBOL
309 | "scheme?"
function_arglist_optional
.
SYMBOL
309 function_arglist_common_reparse: "scheme?"
function_arglist_optional
SYMBOL
.
310 | "scheme?"
.
function_arglist_optional
full_markup
310 | "scheme?"
.
function_arglist_optional
full_markup
310 | "scheme?"
.
function_arglist_optional
full_markup
310 | "scheme?"
.
function_arglist_optional
full_markup
310 | "scheme?"
.
function_arglist_optional
full_markup
310 | "scheme?"
.
function_arglist_optional
full_markup
310 | "scheme?"
function_arglist_optional
.
full_markup
310 | "scheme?"
function_arglist_optional
.
full_markup
310 | "scheme?"
function_arglist_optional
.
full_markup
310 | "scheme?"
function_arglist_optional
.
full_markup
310 | "scheme?"
function_arglist_optional
.
full_markup
310 | "scheme?"
function_arglist_optional
.
full_markup
310 function_arglist_common_reparse: "scheme?"
function_arglist_optional
full_markup
.
311 | "scheme?"
.
function_arglist_optional
UNSIGNED
311 | "scheme?"
.
function_arglist_optional
UNSIGNED
311 | "scheme?"
.
function_arglist_optional
UNSIGNED
311 | "scheme?"
.
function_arglist_optional
UNSIGNED
311 | "scheme?"
.
function_arglist_optional
UNSIGNED
311 | "scheme?"
.
function_arglist_optional
UNSIGNED
311 | "scheme?"
function_arglist_optional
.
UNSIGNED
311 | "scheme?"
function_arglist_optional
.
UNSIGNED
311 | "scheme?"
function_arglist_optional
.
UNSIGNED
311 | "scheme?"
function_arglist_optional
.
UNSIGNED
311 | "scheme?"
function_arglist_optional
.
UNSIGNED
311 | "scheme?"
function_arglist_optional
.
UNSIGNED
311 function_arglist_common_reparse: "scheme?"
function_arglist_optional
UNSIGNED
.
312 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
312 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
312 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
312 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
312 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
312 | "scheme?"
.
function_arglist_optional
DURATION_IDENTIFIER
312 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
312 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
312 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
312 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
312 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
312 | "scheme?"
function_arglist_optional
.
DURATION_IDENTIFIER
312 function_arglist_common_reparse: "scheme?"
function_arglist_optional
DURATION_IDENTIFIER
.
313 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
313 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
313 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
313 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
313 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
313 | "scheme?"
.
function_arglist_optional
'-'
UNSIGNED
313 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
313 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
313 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
313 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
313 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
313 | "scheme?"
function_arglist_optional
.
'-'
UNSIGNED
313 function_arglist_common_reparse: "scheme?"
function_arglist_optional
'-'
.
UNSIGNED
313 function_arglist_common_reparse: "scheme?"
function_arglist_optional
'-'
UNSIGNED
.
314 | "scheme?"
.
function_arglist_optional
'-'
REAL
314 | "scheme?"
.
function_arglist_optional
'-'
REAL
314 | "scheme?"
.
function_arglist_optional
'-'
REAL
314 | "scheme?"
.
function_arglist_optional
'-'
REAL
314 | "scheme?"
.
function_arglist_optional
'-'
REAL
314 | "scheme?"
.
function_arglist_optional
'-'
REAL
314 | "scheme?"
function_arglist_optional
'-'
.
REAL
314 | "scheme?"
function_arglist_optional
.
'-'
REAL
314 | "scheme?"
function_arglist_optional
.
'-'
REAL
314 | "scheme?"
function_arglist_optional
.
'-'
REAL
314 | "scheme?"
function_arglist_optional
.
'-'
REAL
314 | "scheme?"
function_arglist_optional
.
'-'
REAL
314 | "scheme?"
function_arglist_optional
.
'-'
REAL
314 function_arglist_common_reparse: "scheme?"
function_arglist_optional
'-'
REAL
.
315 function_arglist_optional: function_arglist_backup .
316 function_arglist_optional: "optional?"
"scheme?"
.
function_arglist_skip_backup
"\default"
316 function_arglist_optional: "optional?"
"scheme?"
.
function_arglist_skip_backup
"\default"
316 function_arglist_optional: "optional?"
"scheme?"
function_arglist_skip_backup
"\default"
.
316 function_arglist_optional: "optional?"
"scheme?"
function_arglist_skip_backup
.
"\default"
316 function_arglist_optional: "optional?"
.
"scheme?"
function_arglist_skip_backup
"\default"
316 function_arglist_optional: "optional?"
.
"scheme?"
function_arglist_skip_backup
"\default"
317 function_arglist_optional: function_arglist_skip_backup
"(backed-up?)"
.
317 function_arglist_optional: function_arglist_skip_backup
.
"(backed-up?)"
318 function_arglist_skip_backup: function_arglist_backup .
318 function_arglist_skip_backup: function_arglist_backup .
318 function_arglist_skip_backup: function_arglist_backup .
319 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
"scheme?"
.
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
"scheme?"
function_arglist_skip_backup
.
319 function_arglist_skip_backup: "optional?"
"scheme?"
function_arglist_skip_backup
.
319 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
319 function_arglist_skip_backup: "optional?"
.
"scheme?"
function_arglist_skip_backup
320 music_function_call: MUSIC_FUNCTION . function_arglist
320 music_function_call: MUSIC_FUNCTION . function_arglist
320 music_function_call: MUSIC_FUNCTION function_arglist .
322 optional_id: '=' . simple_string
322 optional_id: '=' simple_string .
324 lyric_mode_music: $@9 . grouped_music_list
324 lyric_mode_music: $@9 grouped_music_list .
325 lyric_mode_music: MUSIC_IDENTIFIER .
326 mode_changed_music: mode_changing_head . grouped_music_list
326 mode_changed_music: mode_changing_head grouped_music_list .
327 mode_changed_music: mode_changing_head_with_context
.
optional_context_mods
grouped_music_list
327 mode_changed_music: mode_changing_head_with_context
optional_context_mods
.
grouped_music_list
327 mode_changed_music: mode_changing_head_with_context
optional_context_mods
grouped_music_list
.
328 mode_changing_head: "\notemode" .
329 mode_changing_head: "\drummode" .
330 mode_changing_head: "\figuremode" .
331 mode_changing_head: "\chordmode" .
332 mode_changing_head: "\lyricmode" .
333 mode_changing_head_with_context: "\drums" .
334 mode_changing_head_with_context: "\figures" .
335 mode_changing_head_with_context: "\chords" .
336 mode_changing_head_with_context: "\lyrics" .
337 context_change: "\change" . symbol '=' simple_string
337 context_change: "\change" symbol '=' . simple_string
337 context_change: "\change" symbol '=' simple_string .
337 context_change: "\change" symbol . '=' simple_string
338 property_path: symbol_list_rev .
339 property_operation: symbol '=' . scalar
339 property_operation: symbol '=' scalar .
339 property_operation: symbol . '=' scalar
340 property_operation: "\unset" . symbol
340 property_operation: "\unset" symbol .
341 property_operation: "\override" . revert_arg '=' scalar
341 property_operation: "\override" revert_arg '=' . scalar
341 property_operation: "\override" revert_arg '=' scalar .
341 property_operation: "\override" revert_arg . '=' scalar
342 property_operation: "\revert" . revert_arg
342 property_operation: "\revert" revert_arg .
343 revert_arg: revert_arg_backup "(backed-up?)" . symbol_list_arg
343 revert_arg: revert_arg_backup "(backed-up?)" symbol_list_arg .
343 revert_arg: revert_arg_backup . "(backed-up?)" symbol_list_arg
344 revert_arg_backup: revert_arg_part .
345 revert_arg_part: symbol_list_part .
346 revert_arg_part: revert_arg_backup
"(backed-up?)"
.
SCM_ARG
'.'
symbol_list_part
346 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
'.'
.
symbol_list_part
346 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
'.'
symbol_list_part
.
346 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
.
'.'
symbol_list_part
346 revert_arg_part: revert_arg_backup
.
"(backed-up?)"
SCM_ARG
'.'
symbol_list_part
347 | revert_arg_backup
"(backed-up?)"
.
SCM_ARG
','
symbol_list_part
347 | revert_arg_backup
"(backed-up?)"
SCM_ARG
.
','
symbol_list_part
347 | revert_arg_backup
.
"(backed-up?)"
SCM_ARG
','
symbol_list_part
347 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
','
.
symbol_list_part
347 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
','
symbol_list_part
.
348 | revert_arg_backup
"(backed-up?)"
.
SCM_ARG
symbol_list_part
348 | revert_arg_backup
"(backed-up?)"
SCM_ARG
.
symbol_list_part
348 | revert_arg_backup
.
"(backed-up?)"
SCM_ARG
symbol_list_part
348 revert_arg_part: revert_arg_backup
"(backed-up?)"
SCM_ARG
symbol_list_part
.
349 context_def_mod: "\consists" .
350 context_def_mod: "\remove" .
351 context_def_mod: "\accepts" .
352 context_def_mod: "\defaultchild" .
353 context_def_mod: "\denies" .
354 context_def_mod: "\alias" .
355 context_def_mod: "\type" .
356 context_def_mod: "\description" .
357 context_def_mod: "\name" .
358 context_mod: property_operation .
359 context_mod: context_def_mod . STRING
359 context_mod: context_def_mod STRING .
360 | context_def_mod . SYMBOL
360 context_mod: context_def_mod SYMBOL .
361 | context_def_mod . embedded_scm
361 context_mod: context_def_mod embedded_scm .
362 grob_prop_spec: symbol_list_rev .
363 grob_prop_path: grob_prop_spec .
364 | grob_prop_spec . property_path
364 grob_prop_path: grob_prop_spec property_path .
365 context_prop_spec: symbol_list_rev .
366 simple_revert_context: symbol_list_part .
367 music_property_def: "\override" . grob_prop_path '=' scalar
367 music_property_def: "\override" . grob_prop_path '=' scalar
367 music_property_def: "\override" grob_prop_path '=' . scalar
367 music_property_def: "\override" grob_prop_path '=' . scalar
367 music_property_def: "\override" grob_prop_path '=' scalar .
367 music_property_def: "\override" grob_prop_path . '=' scalar
367 music_property_def: "\override" grob_prop_path . '=' scalar
368 music_property_def: "\revert" . simple_revert_context revert_arg
368 music_property_def: "\revert" simple_revert_context . revert_arg
368 music_property_def: "\revert" simple_revert_context revert_arg .
369 music_property_def: "\set" . context_prop_spec '=' scalar
369 music_property_def: "\set" . context_prop_spec '=' scalar
369 music_property_def: "\set" context_prop_spec '=' . scalar
369 music_property_def: "\set" context_prop_spec '=' . scalar
369 music_property_def: "\set" context_prop_spec '=' scalar .
369 music_property_def: "\set" context_prop_spec . '=' scalar
369 music_property_def: "\set" context_prop_spec . '=' scalar
370 music_property_def: "\unset" . context_prop_spec
370 music_property_def: "\unset" context_prop_spec .
371 string: STRING .
371 string: STRING .
372 string: SYMBOL .
372 string: SYMBOL .
373 string: full_markup .
373 string: full_markup .
374 text: STRING .
375 text: SYMBOL .
376 text: full_markup .
377 text: embedded_scm_bare .
378 simple_string: STRING .
378 simple_string: STRING .
379 simple_string: SYMBOL .
379 simple_string: SYMBOL .
380 simple_string: embedded_scm_bare .
380 simple_string: embedded_scm_bare .
381 symbol: STRING .
381 symbol: STRING .
382 symbol: SYMBOL .
382 symbol: SYMBOL .
383 symbol: embedded_scm_bare .
383 symbol: embedded_scm_bare .
383 symbol: embedded_scm_bare .
384 scalar: embedded_scm_arg .
385 scalar: pitch_or_music .
386 scalar: SCM_IDENTIFIER .
387 scalar: bare_number .
388 scalar: '-' . bare_number
388 scalar: '-' bare_number .
389 scalar: string .
390 scalar: symbol_list_part_bare '.' . property_path
390 scalar: symbol_list_part_bare '.' property_path .
390 scalar: symbol_list_part_bare . '.' property_path
391 | symbol_list_part_bare . ',' property_path
391 scalar: symbol_list_part_bare ',' . property_path
391 scalar: symbol_list_part_bare ',' property_path .
392 event_chord: simple_element . post_events
392 event_chord: simple_element post_events .
393 event_chord: CHORD_REPETITION . optional_notemode_duration post_events
393 event_chord: CHORD_REPETITION optional_notemode_duration . post_events
393 event_chord: CHORD_REPETITION optional_notemode_duration post_events .
394 event_chord: MULTI_MEASURE_REST
.
optional_notemode_duration
post_events
394 event_chord: MULTI_MEASURE_REST
optional_notemode_duration
.
post_events
394 event_chord: MULTI_MEASURE_REST
optional_notemode_duration
post_events
.
395 event_chord: tempo_event .
396 event_chord: note_chord_element .
397 note_chord_element: chord_body . optional_notemode_duration post_events
397 note_chord_element: chord_body optional_notemode_duration . post_events
397 note_chord_element: chord_body optional_notemode_duration post_events .
398 chord_body: "<" . chord_body_elements ">"
398 chord_body: "<" chord_body_elements ">" .
398 chord_body: "<" chord_body_elements . ">"
399 chord_body: FIGURE_OPEN . figure_list FIGURE_CLOSE
399 chord_body: FIGURE_OPEN figure_list . FIGURE_CLOSE
399 chord_body: FIGURE_OPEN figure_list FIGURE_CLOSE .
401 chord_body_elements: chord_body_elements . chord_body_element
401 chord_body_elements: chord_body_elements chord_body_element .
402 chord_body_element: pitch_or_tonic_pitch
.
exclamations
questions
octave_check
post_events
402 chord_body_element: pitch_or_tonic_pitch
exclamations
.
questions
octave_check
post_events
402 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
.
octave_check
post_events
402 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
octave_check
.
post_events
402 chord_body_element: pitch_or_tonic_pitch
exclamations
questions
octave_check
post_events
.
403 chord_body_element: DRUM_PITCH . post_events
403 chord_body_element: DRUM_PITCH post_events .
404 chord_body_element: music_function_chord_body .
405 music_function_chord_body: music_function_call .
406 music_function_chord_body: MUSIC_IDENTIFIER .
407 music_function_chord_body: embedded_scm .
408 event_function_event: EVENT_FUNCTION . function_arglist
408 event_function_event: EVENT_FUNCTION . function_arglist
408 event_function_event: EVENT_FUNCTION function_arglist .
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events . post_event
410 post_events: post_events post_event .
411 post_event_nofinger: direction_less_event .
412 post_event_nofinger: script_dir . music_function_call
412 post_event_nofinger: script_dir music_function_call .
413 post_event_nofinger: "--" .
414 post_event_nofinger: "__" .
415 | script_dir . direction_reqd_event
415 post_event_nofinger: script_dir direction_reqd_event .
416 | script_dir . direction_less_event
416 post_event_nofinger: script_dir direction_less_event .
417 post_event_nofinger: '^' . fingering
417 post_event_nofinger: '^' fingering .
418 post_event_nofinger: '_' . fingering
418 post_event_nofinger: '_' fingering .
419 post_event: post_event_nofinger .
420 post_event: '-' . fingering
420 post_event: '-' . fingering
420 post_event: '-' fingering .
421 string_number_event: E_UNSIGNED .
422 direction_less_event: string_number_event .
423 direction_less_event: EVENT_IDENTIFIER .
424 direction_less_event: tremolo_type .
425 direction_less_event: event_function_event .
426 direction_reqd_event: gen_text_def .
427 direction_reqd_event: script_abbreviation .
429 octave_check: '=' . quotes
429 octave_check: '=' quotes .
431 quotes: sub_quotes .
432 quotes: sup_quotes .
433 sup_quotes: '\'' .
434 sup_quotes: sup_quotes '\'' .
434 sup_quotes: sup_quotes . '\''
435 sub_quotes: ',' .
436 sub_quotes: sub_quotes ',' .
436 sub_quotes: sub_quotes . ','
437 steno_pitch: NOTENAME_PITCH . quotes
437 steno_pitch: NOTENAME_PITCH quotes .
438 steno_tonic_pitch: TONICNAME_PITCH . quotes
438 steno_tonic_pitch: TONICNAME_PITCH quotes .
439 pitch: steno_pitch .
440 pitch: PITCH_IDENTIFIER . quotes
440 pitch: PITCH_IDENTIFIER quotes .
441 pitch_or_tonic_pitch: pitch .
442 pitch_or_tonic_pitch: steno_tonic_pitch .
443 gen_text_def: full_markup .
444 gen_text_def: STRING .
445 gen_text_def: SYMBOL .
446 gen_text_def: embedded_scm .
447 fingering: UNSIGNED .
447 fingering: UNSIGNED .
448 script_abbreviation: '^' .
449 script_abbreviation: '+' .
450 script_abbreviation: '-' .
451 script_abbreviation: '!' .
452 script_abbreviation: ">" .
453 script_abbreviation: '.' .
454 script_abbreviation: '_' .
455 script_dir: '_' .
456 script_dir: '^' .
457 script_dir: '-' .
457 script_dir: '-' .
457 script_dir: '-' .
457 script_dir: '-' .
457 script_dir: '-' .
457 script_dir: '-' .
459 maybe_notemode_duration: multiplied_duration .
460 optional_notemode_duration: maybe_notemode_duration .
460 optional_notemode_duration: maybe_notemode_duration .
461 steno_duration: UNSIGNED . dots
461 steno_duration: UNSIGNED . dots
461 steno_duration: UNSIGNED dots .
462 steno_duration: DURATION_IDENTIFIER . dots
462 steno_duration: DURATION_IDENTIFIER dots .
463 multiplied_duration: steno_duration . multipliers
463 multiplied_duration: steno_duration multipliers .
465 dots: dots '.' .
465 dots: dots . '.'
465 dots: dots . '.'
465 dots: dots . '.'
467 multipliers: multipliers '*' . UNSIGNED
467 multipliers: multipliers '*' UNSIGNED .
467 multipliers: multipliers . '*' UNSIGNED
467 multipliers: multipliers . '*' UNSIGNED
468 | multipliers '*' . FRACTION
468 | multipliers . '*' FRACTION
468 | multipliers . '*' FRACTION
468 multipliers: multipliers '*' FRACTION .
469 tremolo_type: ':' .
470 | ':' . UNSIGNED
470 tremolo_type: ':' UNSIGNED .
471 bass_number: UNSIGNED .
472 bass_number: STRING .
473 bass_number: SYMBOL .
474 bass_number: full_markup .
475 bass_number: embedded_scm_bare .
476 figured_bass_alteration: '-' .
477 figured_bass_alteration: '+' .
478 figured_bass_alteration: '!' .
479 bass_figure: "_" .
480 bass_figure: bass_number .
481 bass_figure: bass_figure ']' .
481 bass_figure: bass_figure . ']'
481 bass_figure: bass_figure . ']'
482 | bass_figure . figured_bass_alteration
482 | bass_figure . figured_bass_alteration
482 bass_figure: bass_figure figured_bass_alteration .
483 | bass_figure . figured_bass_modification
483 | bass_figure . figured_bass_modification
483 bass_figure: bass_figure figured_bass_modification .
484 figured_bass_modification: "\+" .
485 figured_bass_modification: "\!" .
486 figured_bass_modification: '/' .
487 figured_bass_modification: "\" .
488 br_bass_figure: bass_figure .
489 br_bass_figure: '[' . bass_figure
489 br_bass_figure: '[' bass_figure .
491 figure_list: figure_list . br_bass_figure
491 figure_list: figure_list br_bass_figure .
493 optional_rest: "\rest" .
494 pitch_or_music: pitch
.
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
494 pitch_or_music: pitch
exclamations
.
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
494 pitch_or_music: pitch
exclamations
questions
.
octave_check
maybe_notemode_duration
optional_rest
post_events
494 pitch_or_music: pitch
exclamations
questions
octave_check
.
maybe_notemode_duration
optional_rest
post_events
494 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
.
optional_rest
post_events
494 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
.
post_events
494 pitch_or_music: pitch
exclamations
questions
octave_check
maybe_notemode_duration
optional_rest
post_events
.
495 pitch_or_music: new_chord . post_events
495 pitch_or_music: new_chord post_events .
496 simple_element: DRUM_PITCH . optional_notemode_duration
496 simple_element: DRUM_PITCH optional_notemode_duration .
497 simple_element: RESTNAME . optional_notemode_duration
497 simple_element: RESTNAME optional_notemode_duration .
498 lyric_element: full_markup .
498 lyric_element: full_markup .
499 lyric_element: SYMBOL .
499 lyric_element: SYMBOL .
500 lyric_element: STRING .
500 lyric_element: STRING .
501 lyric_element: LYRIC_ELEMENT .
502 lyric_element_music: lyric_element
.
optional_notemode_duration
post_events
502 lyric_element_music: lyric_element
optional_notemode_duration
.
post_events
502 lyric_element_music: lyric_element
optional_notemode_duration
post_events
.
503 new_chord: steno_tonic_pitch . maybe_notemode_duration
503 new_chord: steno_tonic_pitch maybe_notemode_duration .
504 | steno_tonic_pitch
.
optional_notemode_duration
chord_separator
chord_items
504 new_chord: steno_tonic_pitch
optional_notemode_duration
.
chord_separator
chord_items
504 new_chord: steno_tonic_pitch
optional_notemode_duration
chord_separator
.
chord_items
504 new_chord: steno_tonic_pitch
optional_notemode_duration
chord_separator
chord_items
.
506 chord_items: chord_items . chord_item
506 chord_items: chord_items chord_item .
507 chord_separator: ":" .
508 chord_separator: "^" .
509 chord_separator: "/" . steno_tonic_pitch
509 chord_separator: "/" steno_tonic_pitch .
510 chord_separator: "/+" . steno_tonic_pitch
510 chord_separator: "/+" steno_tonic_pitch .
511 chord_item: chord_separator .
512 chord_item: step_numbers .
513 chord_item: CHORD_MODIFIER .
514 step_numbers: step_number .
515 step_numbers: step_numbers '.' . step_number
515 step_numbers: step_numbers '.' step_number .
515 step_numbers: step_numbers . '.' step_number
516 step_number: UNSIGNED .
517 | UNSIGNED . '+'
517 step_number: UNSIGNED '+' .
518 | UNSIGNED . "-"
518 step_number: UNSIGNED "-" .
519 tempo_range: unsigned_number .
520 | unsigned_number . '-' unsigned_number
520 tempo_range: unsigned_number '-' . unsigned_number
520 tempo_range: unsigned_number '-' unsigned_number .
521 number_expression: number_expression '+' . number_term
521 number_expression: number_expression '+' number_term .
521 number_expression: number_expression . '+' number_term
522 | number_expression . '-' number_term
522 number_expression: number_expression '-' . number_term
522 number_expression: number_expression '-' number_term .
523 number_expression: number_term .
524 number_term: number_factor .
525 | number_factor . '*' number_factor
525 number_term: number_factor '*' . number_factor
525 number_term: number_factor '*' number_factor .
526 | number_factor . '/' number_factor
526 number_term: number_factor '/' . number_factor
526 number_term: number_factor '/' number_factor .
527 number_factor: '-' . number_factor
527 number_factor: '-' . number_factor
527 number_factor: '-' number_factor .
528 number_factor: bare_number .
529 bare_number_common: REAL .
530 bare_number_common: NUMBER_IDENTIFIER .
531 | REAL . NUMBER_IDENTIFIER
531 bare_number_common: REAL NUMBER_IDENTIFIER .
532 bare_number: bare_number_common .
533 bare_number: UNSIGNED .
533 bare_number: UNSIGNED .
534 | UNSIGNED . NUMBER_IDENTIFIER
534 | UNSIGNED . NUMBER_IDENTIFIER
534 bare_number: UNSIGNED NUMBER_IDENTIFIER .
535 unsigned_number: UNSIGNED .
536 unsigned_number: NUMBER_IDENTIFIER .
537 unsigned_number: embedded_scm .
539 exclamations: exclamations '!' .
539 exclamations: exclamations . '!'
539 exclamations: exclamations . '!'
541 questions: questions '?' .
541 questions: questions . '?'
541 questions: questions . '?'
543 full_markup_list: "\markuplist" $@10 . markup_list
543 full_markup_list: "\markuplist" $@10 markup_list .
543 full_markup_list: "\markuplist" . $@10 markup_list
544 markup_mode: "\markup" .
545 markup_mode_word: markup_mode . markup_word
545 markup_mode_word: markup_mode . markup_word
545 markup_mode_word: markup_mode . markup_word
545 markup_mode_word: markup_mode markup_word .
546 full_markup: markup_mode . markup_top
546 full_markup: markup_mode . markup_top
546 full_markup: markup_mode markup_top .
547 full_markup: markup_mode_word .
547 full_markup: markup_mode_word .
548 partial_markup: markup_mode . markup_partial_function "\etc"
548 partial_markup: markup_mode markup_partial_function "\etc" .
548 partial_markup: markup_mode markup_partial_function . "\etc"
549 markup_top: markup_list .
550 markup_top: markup_head_1_list . simple_markup
550 markup_top: markup_head_1_list . simple_markup
550 markup_top: markup_head_1_list simple_markup .
551 markup_top: simple_markup_noword .
553 markup_scm: embedded_scm $@11 "(backed-up?)" .
553 markup_scm: embedded_scm $@11 . "(backed-up?)"
553 markup_scm: embedded_scm . $@11 "(backed-up?)"
554 markup_list: markup_composed_list .
555 markup_list: markup_uncomposed_list .
556 markup_uncomposed_list: markup_braced_list .
557 markup_uncomposed_list: markup_command_list .
558 markup_uncomposed_list: markup_scm . MARKUPLIST_IDENTIFIER
558 markup_uncomposed_list: markup_scm . MARKUPLIST_IDENTIFIER
558 markup_uncomposed_list: markup_scm MARKUPLIST_IDENTIFIER .
560 markup_uncomposed_list: "\score-lines" $@12 '{' . score_body '}'
560 markup_uncomposed_list: "\score-lines" $@12 '{' score_body '}' .
560 markup_uncomposed_list: "\score-lines" $@12 '{' score_body . '}'
560 markup_uncomposed_list: "\score-lines" $@12 . '{' score_body '}'
560 markup_uncomposed_list: "\score-lines" . $@12 '{' score_body '}'
561 markup_composed_list: markup_head_1_list . markup_uncomposed_list
561 markup_composed_list: markup_head_1_list . markup_uncomposed_list
561 markup_composed_list: markup_head_1_list . markup_uncomposed_list
561 markup_composed_list: markup_head_1_list . markup_uncomposed_list
561 markup_composed_list: markup_head_1_list markup_uncomposed_list .
562 markup_braced_list: '{' . markup_braced_list_body '}'
562 markup_braced_list: '{' markup_braced_list_body '}' .
562 markup_braced_list: '{' markup_braced_list_body . '}'
564 markup_braced_list_body: markup_braced_list_body . markup
564 markup_braced_list_body: markup_braced_list_body markup .
565 | markup_braced_list_body . markup_list
565 markup_braced_list_body: markup_braced_list_body markup_list .
566 markup_command_list: MARKUP_LIST_FUNCTION
.
markup_command_list_arguments
566 markup_command_list: MARKUP_LIST_FUNCTION
markup_command_list_arguments
.
567 markup_command_basic_arguments: "markup-list?"
.
markup_command_list_arguments
markup_list
567 markup_command_basic_arguments: "markup-list?"
markup_command_list_arguments
.
markup_list
567 markup_command_basic_arguments: "markup-list?"
markup_command_list_arguments
markup_list
.
568 markup_command_basic_arguments: "scheme?"
.
markup_command_list_arguments
embedded_scm
568 markup_command_basic_arguments: "scheme?"
.
markup_command_list_arguments
embedded_scm
568 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
.
embedded_scm
568 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
.
embedded_scm
568 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
embedded_scm
.
569 | "scheme?"
.
markup_command_list_arguments
STRING
569 | "scheme?"
.
markup_command_list_arguments
STRING
569 | "scheme?"
markup_command_list_arguments
.
STRING
569 | "scheme?"
markup_command_list_arguments
.
STRING
569 markup_command_basic_arguments: "scheme?"
markup_command_list_arguments
STRING
.
570 markup_command_basic_arguments: EXPECT_NO_MORE_ARGS .
571 markup_command_list_arguments: markup_command_basic_arguments .
572 markup_command_list_arguments: "markup?"
.
markup_command_list_arguments
markup
572 markup_command_list_arguments: "markup?"
.
markup_command_list_arguments
markup
572 markup_command_list_arguments: "markup?"
markup_command_list_arguments
.
markup
572 markup_command_list_arguments: "markup?"
markup_command_list_arguments
.
markup
572 markup_command_list_arguments: "markup?"
markup_command_list_arguments
markup
.
573 markup_partial_function: MARKUP_FUNCTION . markup_arglist_partial
573 markup_partial_function: MARKUP_FUNCTION markup_arglist_partial .
574 markup_partial_function: markup_head_1_list
.
MARKUP_FUNCTION
markup_arglist_partial
574 markup_partial_function: markup_head_1_list
MARKUP_FUNCTION
.
markup_arglist_partial
574 markup_partial_function: markup_head_1_list
MARKUP_FUNCTION
markup_arglist_partial
.
575 markup_arglist_partial: "markup?" . markup_arglist_partial
575 markup_arglist_partial: "markup?" . markup_arglist_partial
575 markup_arglist_partial: "markup?" markup_arglist_partial .
576 markup_arglist_partial: "scheme?" . markup_arglist_partial
576 markup_arglist_partial: "scheme?" markup_arglist_partial .
577 | "markup?" . markup_command_list_arguments
577 | "markup?" . markup_command_list_arguments
577 markup_arglist_partial: "markup?" markup_command_list_arguments .
577 markup_arglist_partial: "markup?" markup_command_list_arguments .
578 | "scheme?" . markup_command_list_arguments
578 markup_arglist_partial: "scheme?" markup_command_list_arguments .
579 markup_head_1_item: MARKUP_FUNCTION
"markup?"
.
markup_command_list_arguments
579 markup_head_1_item: MARKUP_FUNCTION
"markup?"
.
markup_command_list_arguments
579 markup_head_1_item: MARKUP_FUNCTION
"markup?"
markup_command_list_arguments
.
579 markup_head_1_item: MARKUP_FUNCTION
"markup?"
markup_command_list_arguments
.
579 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
579 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
579 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
579 markup_head_1_item: MARKUP_FUNCTION
.
"markup?"
markup_command_list_arguments
580 markup_head_1_list: markup_head_1_item .
581 markup_head_1_list: markup_head_1_list . markup_head_1_item
581 markup_head_1_list: markup_head_1_list . markup_head_1_item
581 markup_head_1_list: markup_head_1_list . markup_head_1_item
581 markup_head_1_list: markup_head_1_list . markup_head_1_item
581 markup_head_1_list: markup_head_1_list . markup_head_1_item
581 markup_head_1_list: markup_head_1_list markup_head_1_item .
582 markup_word: STRING .
583 markup_word: SYMBOL .
584 simple_markup: markup_word .
585 simple_markup: simple_markup_noword .
587 simple_markup_noword: "\score" $@13 '{' . score_body '}'
587 simple_markup_noword: "\score" $@13 '{' score_body '}' .
587 simple_markup_noword: "\score" $@13 '{' score_body . '}'
587 simple_markup_noword: "\score" $@13 . '{' score_body '}'
587 simple_markup_noword: "\score" . $@13 '{' score_body '}'
588 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
588 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
588 simple_markup_noword: MARKUP_FUNCTION . markup_command_basic_arguments
588 simple_markup_noword: MARKUP_FUNCTION markup_command_basic_arguments .
589 simple_markup_noword: markup_scm . MARKUP_IDENTIFIER
589 simple_markup_noword: markup_scm . MARKUP_IDENTIFIER
589 simple_markup_noword: markup_scm MARKUP_IDENTIFIER .
590 markup: markup_head_1_list . simple_markup
590 markup: markup_head_1_list . simple_markup
590 markup: markup_head_1_list simple_markup .
591 markup: simple_markup .
$@1 (131)
on left: 2, on right: 3
$@10 (301)
on left: 542, on right: 543
$@11 (308)
on left: 552, on right: 553
$@12 (311)
on left: 559, on right: 560
$@13 (325)
on left: 586, on right: 587
$@2 (146)
on left: 63, on right: 64
$@3 (154)
on left: 106, on right: 107
$@4 (158)
on left: 123, on right: 124
$@5 (161)
on left: 136, on right: 137
$@6 (166)
on left: 147, on right: 148
$@7 (173)
on left: 161, on right: 162
$@8 (187)
on left: 191, on right: 192
$@9 (220)
on left: 323, on right: 324
assignment (148)
on left: 67 68 69 70, on right: 6 59 158
assignment_id (147)
on left: 65 66, on right: 67 68 69
bare_number (296)
on left: 532 533 534, on right: 387 388 528
basic_music (194)
on left: 206 207 208 209 210, on right: 211 217 219
bass_number (274)
on left: 471 472 473 474 475, on right: 480
book_block (156)
on left: 112, on right: 10 36 78
bookpart_block (159)
on left: 126, on right: 11 37 79 116
br_bass_figure (278)
on left: 488 489, on right: 491
braced_music_list (176)
on left: 170, on right: 183 184 185 186
chord_body (244)
on left: 398 399, on right: 397
chord_body_element (246)
on left: 402 403 404, on right: 401
chord_body_elements (245)
on left: 400 401, on right: 398 401
chord_item (288)
on left: 511 512 513, on right: 506
chord_items (286)
on left: 505 506, on right: 504 506
chord_separator (287)
on left: 507 508 509 510, on right: 504 511
composite_music (197)
on left: 217 218 219, on right: 14 107 118 131 181
context_change (224)
on left: 337, on right: 190
context_def_spec_block (152)
on left: 104, on right: 35 81 156
context_mod (231)
on left: 358 359 360 361, on right: 109 200
context_mod_arg (153)
on left: 105 107, on right: 111 201
context_mod_list (191)
on left: 199 200 201, on right: 192 200 201
context_modification (186)
on left: 192 193, on right: 32 89 110 198
context_modification_arg (188)
on left: 194 195, on right: 193
context_modification_mods_list (190)
on left: 197 198, on right: 196 198
context_prefix (192)
on left: 202 203, on right: 214 215 216
context_prop_spec (234)
on left: 365, on right: 95 100 369 370
contextable_music (195)
on left: 211 212 213, on right: 214 215
contexted_basic_music (196)
on left: 214 215 216, on right: 216 218
direction_less_event (253)
on left: 422 423 424 425, on right: 411 416
direction_reqd_event (254)
on left: 426 427, on right: 415
dots (271)
on left: 464 465, on right: 251 461 462 465
embedded_lilypond (142)
on left: 50 51 52 53 54 55 56 57, on right: 3 57
embedded_lilypond_number (141)
on left: 47 48 49, on right: 47 52
embedded_scm_active (136)
on left: 24 25 26, on right: 18 61 122 135 159
embedded_scm_arg (139)
on left: 43 44 45, on right: 242 261 294 384
embedded_scm_bare (135)
on left: 22 23, on right: 40 232 377 380 383 475
event_chord (242)
on left: 392 393 394 395 396, on right: 188 213
event_function_event (248)
on left: 408, on right: 425
exclamations (298)
on left: 538 539, on right: 402 494 539
figure_list (279)
on left: 490 491, on right: 399 491
figured_bass_alteration (275)
on left: 476 477 478, on right: 482
figured_bass_modification (277)
on left: 484 485 486 487, on right: 483
fingering (264)
on left: 447, on right: 417 418 420
full_markup_list (300)
on left: 543, on right: 16 31 88 120 133
function_arglist (209)
on left: 281 282, on right: 46 320 408
function_arglist_skip_nonbackup (210)
on left: 283 284, on right: 282 284
gen_text_def (263)
on left: 443 444 445 446, on right: 426
grob_prop_path (233)
on left: 363 364, on right: 94 99 367
grob_prop_spec (232)
on left: 362, on right: 363 364
grouped_music_list (199)
on left: 223 224, on right: 222 324 326 327
header_block (145)
on left: 64, on right: 9 33 76
identifier_init (149)
on left: 71 72 73 74 75, on right: 67 68 69 70
lilypond (132)
on left: 4 5 6 7 8, on right: 1 5 6 7 8
lilypond_header (144)
on left: 62, on right: 64 124 137 148
lilypond_header_body (143)
on left: 58 59 60 61, on right: 59 60 61 62
lookup (134)
on left: 20 21, on right: 26 39 42
lyric_element (283)
on left: 498 499 500 501, on right: 502
lyric_element_music (284)
on left: 502, on right: 172 177 249 299
lyric_mode_music (219)
on left: 324 325, on right: 204 205 209 210
markup (326)
on left: 590 591, on right: 564 572
markup_braced_list (313)
on left: 562, on right: 556
markup_braced_list_body (314)
on left: 563 564 565, on right: 562 564 565
markup_command_list (315)
on left: 566, on right: 557
markup_composed_list (312)
on left: 561, on right: 554
markup_head_1_item (320)
on left: 579, on right: 580 581
markup_head_1_list (321)
on left: 580 581, on right: 550 561 574 581 590
markup_list (309)
on left: 554 555, on right: 543 549 565 567
markup_mode (302)
on left: 544, on right: 545 546 548
markup_mode_word (303)
on left: 545, on right: 70 547
markup_partial_function (318)
on left: 573 574, on right: 548
markup_scm (307)
on left: 553, on right: 558 589
markup_top (306)
on left: 549 550 551, on right: 546
markup_uncomposed_list (310)
on left: 556 557 558 560, on right: 555 561
markup_word (322)
on left: 582 583, on right: 545 584
maybe_notemode_duration (267)
on left: 458 459, on right: 460 494 503
mode_changed_music (221)
on left: 326 327, on right: 220
mode_changing_head (222)
on left: 328 329 330 331 332, on right: 326
multiplied_duration (270)
on left: 463, on right: 54 178 245 278 302 459
multipliers (272)
on left: 466 467 468, on right: 251 463 467 468
music (177)
on left: 171 172 173, on right: 143 175 182 183
music_assign (181)
on left: 180 181, on right: 45 82 155 171
music_bare (198)
on left: 220 221 222, on right: 208
music_embedded (179)
on left: 175 176 177 178, on right: 55 168
music_embedded_backup (180)
on left: 179, on right: 176 177
music_function_call (217)
on left: 320, on right: 206 405 412
music_function_chord_body (247)
on left: 405 406 407, on right: 404
music_list (175)
on left: 167 168 169, on right: 55 168 169 170 187
music_or_context_def (171)
on left: 155 156, on right: 162
music_property_def (236)
on left: 367 368 369 370, on right: 189
new_chord (285)
on left: 503 504, on right: 495
new_lyrics (193)
on left: 204 205, on right: 205 214 219
note_chord_element (243)
on left: 397, on right: 396
number_expression (292)
on left: 521 522 523, on right: 72 521 522
number_factor (294)
on left: 527 528, on right: 524 525 526 527
number_term (293)
on left: 524 525 526, on right: 521 522 523
octave_check (255)
on left: 428 429, on right: 402 494
optional_context_mods (189)
on left: 196, on right: 202 203 204 205 327
optional_id (218)
on left: 321 322, on right: 202 203
optional_rest (280)
on left: 492 493, on right: 494
output_def (168)
on left: 150, on right: 19 38 80 144 149
output_def_head (169)
on left: 151 152 153, on right: 154
output_def_head_with_mode_switch (170)
on left: 154, on right: 157
paper_block (167)
on left: 149, on right: 115 129
partial_markup (305)
on left: 548, on right: 30 87
pitch (261)
on left: 439 440, on right: 253 263 306 441 494
pitch_as_music (178)
on left: 174, on right: 173 212
pitch_or_music (281)
on left: 494 495, on right: 83 174 244 276 300 385
pitch_or_tonic_pitch (262)
on left: 441 442, on right: 402
post_event (251)
on left: 419 420, on right: 53 410
property_operation (226)
on left: 339 340 341 342, on right: 358
property_path (225)
on left: 338, on right: 68 69 73 74 364 390 391
questions (299)
on left: 540 541, on right: 402 494 541
quotes (256)
on left: 430 431 432, on right: 429 437 438 440
reparsed_rhythm (206)
on left: 251, on right: 246 279 303
repeated_music (182)
on left: 182 183, on right: 207
revert_arg (227)
on left: 343, on right: 341 342 368
revert_arg_backup (228)
on left: 344, on right: 343 346 347 348
revert_arg_part (229)
on left: 345 346 347 348, on right: 344
scm_function_call (140)
on left: 46, on right: 25 41 44
score_block (162)
on left: 139, on right: 13 34 77 117 130
score_body (163)
on left: 140 141, on right: 139 141 560 587
score_item (164)
on left: 142 143 144, on right: 146
score_items (165)
on left: 145 146 148, on right: 140 146 148
script_dir (266)
on left: 455 456 457, on right: 412 415 416
sequential_music (183)
on left: 184 185, on right: 224
simple_element (282)
on left: 496 497, on right: 392
simple_markup (323)
on left: 584 585, on right: 550 590 591
simple_markup_noword (324)
on left: 587 588 589, on right: 551 585
simple_music (185)
on left: 188 189 190, on right: 180
simple_revert_context (235)
on left: 366, on right: 368
simultaneous_music (184)
on left: 186 187, on right: 223
start_symbol (130)
on left: 1 3, on right: 0
State 0
State 1
State 10
State 100
State 101
State 102
State 103
State 104
State 105
State 106
State 107
State 108
State 109
State 11
State 110
State 111
State 112
State 113
State 114
State 115
State 116
State 117
State 118
State 119
State 12
State 120
State 121
State 122
State 123
State 124
State 125
State 126
State 127
State 128
State 129
State 13
State 130
State 131
State 132
State 133
State 134
State 135
State 136
State 137
State 138
State 139
State 14
State 140
State 141
State 142
State 143
State 144
State 145
State 146
State 147
State 148
State 149
State 15
State 150
State 151
State 152
State 153
State 154
State 155
State 156
State 157
State 158
State 159
State 16
State 160
State 161
State 162
State 163
State 164
State 165
State 166
State 167
State 168
State 169
State 17
State 170
State 171
State 172
State 173
State 174
State 175
State 176
State 177
State 178
State 179
State 18
State 180
State 181
State 182
State 183
State 184
State 185
State 186
State 187
State 188
State 189
State 19
State 190
State 191
State 192
State 193
State 194
State 195
State 196
State 197
State 198
State 199
State 2
State 20
State 200
State 201
State 202
State 203
State 204
State 205
State 206
State 207
State 208
State 209
State 21
State 210
State 211
State 212
State 213
State 214
State 215
State 216
State 217
State 218
State 219
State 22
State 220
State 221
State 222
State 223
State 224
State 225
State 226
State 227
State 228
State 229
State 23
State 230
State 231
State 232
State 233
State 234
State 235
State 236
State 237
State 238
State 239
State 24
State 240
State 241
State 242
State 243
State 244
State 245
State 246
State 247
State 248
State 249
State 25
State 250
State 251
State 252
State 253
State 254
State 255
State 256
State 257
State 258
State 259
State 26
State 260
State 261
State 262
State 263
State 264
State 265
State 266
State 267
State 268
State 269
State 27
State 270
State 271
State 272
State 273
State 274
State 275
State 276
State 277
State 278
State 279
State 28
State 280
State 281
State 282
State 283
State 284
State 285
State 286
State 287
State 288
State 289
State 29
State 290
State 291
State 292
State 293
State 294
State 295
State 296
State 297
State 298
State 299
State 3
State 30
State 300
State 301
State 302
State 303
State 304
State 305
State 306
State 307
State 308
State 309
State 31
State 310
State 311
State 312
State 313
State 314
State 315
State 316
State 317
State 318
State 319
State 32
State 320
State 321
State 322
State 323
State 324
State 325
State 326
State 327
State 328
State 329
State 33
State 330
State 331
State 332
State 333
State 334
State 335
State 336
State 337
State 338
State 339
State 34
State 340
State 341
State 342
State 343
State 344
State 345
State 346
State 347
State 348
State 349
State 35
State 350
State 351
State 352
State 353
State 354
State 355
State 356
State 357
State 358
State 359
State 36
State 360
State 361
State 362
State 363
State 364
State 365
State 366
State 367
State 368
State 369
State 37
State 370
State 371
State 372
State 373
State 374
State 375
State 376
State 377
State 378
State 379
State 38
State 380
State 381
State 382
State 383
State 384
State 385
State 386
State 387
State 388
State 389
State 39
State 390
State 391
State 392
State 393
State 394
State 395
State 396
State 397
State 398
State 399
State 4
State 40
State 400
State 401
State 402
State 403
State 404
State 405
State 406
State 407
State 408
State 409
State 41
State 410
State 411
State 412
State 413
State 414
State 415
State 416
State 417
State 418
State 419
State 42
State 420
State 421
State 422
State 423
State 424
State 425
State 426
State 427
State 428
State 429
State 43
State 430
State 431
State 432
State 433
State 434
State 435
State 436
State 437
State 438
State 439
State 44
State 440
State 441
State 442
State 443
State 444
State 445
State 446
State 447
State 448
State 449
State 45
State 450
State 451
State 452
State 453
State 454
State 455
State 456
State 457
State 458
State 459
State 46
State 460
State 461
State 462
State 463
State 464
State 465
State 466
State 467
State 468
State 469
State 47
State 470
State 471
State 472
State 473
State 474
State 475
State 476
State 477
State 478
State 479
State 48
State 480
State 481
State 482
State 483
State 484
State 485
State 486
State 487
State 488
State 489
State 49
State 490
State 491
State 492
State 493
State 494
State 495
State 496
State 497
State 498
State 499
State 5
State 50
State 500
State 501
State 502
State 503
State 504
State 505
State 506
State 507
State 508
State 509
State 51
State 510
State 511
State 512
State 513
State 514
State 515
State 516
State 517
State 518
State 519
State 52
State 520
State 521
State 522
State 523
State 524
State 525
State 526
State 527
State 528
State 529
State 53
State 530
State 531
State 532
State 533
State 534
State 535
State 536
State 537
State 538
State 539
State 54
State 540
State 541
State 542
State 543
State 544
State 545
State 546
State 547
State 548
State 549
State 55
State 550
State 551
State 552
State 553
State 554
State 555
State 556
State 557
State 558
State 559
State 56
State 560
State 561
State 562
State 563
State 564
State 565
State 566
State 567
State 568
State 569
State 57
State 570
State 571
State 572
State 573
State 574
State 575
State 576
State 577
State 578
State 579
State 58
State 580
State 581
State 582
State 583
State 584
State 585
State 586
State 587
State 588
State 589
State 59
State 590
State 591
State 592
State 593
State 594
State 595
State 596
State 597
State 598
State 599
State 6
State 60
State 600
State 601
State 602
State 603
State 604
State 605
State 606
State 607
State 608
State 609
State 61
State 610
State 611
State 612
State 613
State 614
State 615
State 616
State 617
State 618
State 619
State 62
State 620
State 621
State 622
State 623
State 624
State 625
State 626
State 627
State 628
State 629
State 63
State 630
State 631
State 632
State 633
State 634
State 635
State 636
State 637
State 638
State 639
State 64
State 640
State 641
State 642
State 643
State 644
State 645
State 646
State 647
State 648
State 649
State 65
State 650
State 651
State 652
State 653
State 654
State 655
State 656
State 657
State 658
State 659
State 66
State 660
State 661
State 662
State 663
State 664
State 665
State 666
State 667
State 668
State 669
State 67
State 670
State 671
State 672
State 673
State 674
State 675
State 676
State 677
State 678
State 679
State 68
State 680
State 681
State 682
State 683
State 684
State 685
State 686
State 687
State 688
State 689
State 69
State 690
State 691
State 692
State 693
State 694
State 695
State 696
State 697
State 698
State 699
State 7
State 70
State 700
State 701
State 702
State 703
State 704
State 705
State 706
State 707
State 708
State 709
State 71
State 710
State 711
State 712
State 713
State 714
State 715
State 716
State 717
State 718
State 719
State 72
State 720
State 721
State 722
State 723
State 724
State 725
State 726
State 727
State 728
State 729
State 73
State 730
State 731
State 732
State 733
State 734
State 735
State 736
State 737
State 738
State 739
State 74
State 740
State 741
State 742
State 743
State 744
State 745
State 746
State 747
State 748
State 749
State 75
State 750
State 751
State 752
State 753
State 754
State 755
State 756
State 757
State 758
State 759
State 76
State 760
State 761
State 762
State 763
State 764
State 765
State 766
State 767
State 768
State 769
State 77
State 770
State 771
State 772
State 773
State 774
State 775
State 776
State 777
State 778
State 779
State 78
State 780
State 781
State 782
State 783
State 784
State 785
State 786
State 787
State 788
State 789
State 79
State 790
State 791
State 792
State 793
State 794
State 795
State 796
State 797
State 798
State 799
State 8
State 80
State 800
State 801
State 802
State 803
State 804
State 805
State 806
State 807
State 808
State 809
State 81
State 810
State 811
State 812
State 813
State 814
State 815
State 816
State 817
State 818
State 819
State 82
State 820
State 821
State 822
State 823
State 824
State 825
State 826
State 827
State 828
State 829
State 83
State 830
State 831
State 832
State 833
State 834
State 835
State 836
State 837
State 838
State 839
State 84
State 840
State 841
State 842
State 843
State 844
State 845
State 846
State 847
State 848
State 849
State 85
State 850
State 851
State 852
State 853
State 854
State 855
State 856
State 857
State 858
State 859
State 86
State 860
State 861
State 862
State 863
State 864
State 865
State 866
State 867
State 87
State 88
State 89
State 9
State 90
State 91
State 92
State 93
State 94
State 95
State 96
State 97
State 98
State 99
steno_duration (269)
on left: 461 462, on right: 164 165 463
steno_pitch (259)
on left: 437, on right: 439
step_number (290)
on left: 516 517 518, on right: 514 515
step_numbers (289)
on left: 514 515, on right: 512 515
string (237)
on left: 371 372 373, on right: 85 389
string_number_event (252)
on left: 421, on right: 422
sub_quotes (258)
on left: 435 436, on right: 431 436
sup_quotes (257)
on left: 433 434, on right: 432 434
symbol (240)
on left: 381 382 383, on right: 202 203 210 337 339 340
symbol_list_arg (200)
on left: 225 226 227, on right: 250 280 304 343
symbol_list_element (203)
on left: 233 234, on right: 236
symbol_list_part_bare (204)
on left: 235 236, on right: 73 74 231 390 391
tempo_event (174)
on left: 164 165 166, on right: 395
tempo_range (291)
on left: 519 520, on right: 164 165
text (238)
on left: 374 375 376 377, on right: 165 166
tremolo_type (273)
on left: 469 470, on right: 424
unsigned_number (297)
on left: 535 536 537, on right: 182 183 519 520