summaryrefslogtreecommitdiff
path: root/scm/script.scm
diff options
context:
space:
mode:
authorMats Bengtsson <mats.bengtsson@s3.kth.se>1999-07-03 23:11:12 +0200
committerMats Bengtsson <mats.bengtsson@s3.kth.se>1999-07-03 23:11:12 +0200
commit670a98f23a2561c6a4a4a19bb72c776189715541 (patch)
tree4070c496c51dc21c401a7dee13af10d0c7e86de0 /scm/script.scm
parentbc10f6292d576fd4e60a60addaf73b63e4c39356 (diff)
patch::: 1.1.52.mb2
pl 52.mb2 - Added \repetitions: prints symbol for repeated bars. Same syntax as multi-measure rests! - Added \segno and \wheel script symbols --- Hi, I did some metafont hacking and implemented a \segno and a \wheel (what is the proper english nomenclature?) script. I also did a bar repetition sign and implemented this using the same mechanism and syntax as multi-measure rests. Try input/test/repeatbar.fly. I have to think of where to add the documentation in the Reference manual. Several people have requested a reintroduction of the textAlignment property. I thought it would be simple to implement but I failed, since I'm not sure about how to add an alignment feature to Text_item. Can Han-Wen or Jan help? /Mats --------- The patch ----------------- Generated by (address unknown) using package-diff 0.62, From = lilypond-1.1.52.mb1, To = lilypond-1.1.52.mb2 usage cd lilypond-source-dir; patch -E -p1 < lilypond-1.1.52.mb2.diff Patches do not contain automatically generated files or (urg) empty directories, i.e., you should rerun autoconf, configure --state 1.1.52.mb1 1.1.52.mb2 ++state
Diffstat (limited to 'scm/script.scm')
-rw-r--r--scm/script.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/scm/script.scm b/scm/script.scm
index 3ab041ac90..fbeeae8615 100644
--- a/scm/script.scm
+++ b/scm/script.scm
@@ -33,7 +33,9 @@
("prallprall" . ((feta . ("prallprall" . "prallprall")) #f 0 1 0))
("prallmordent" . ((feta . ("prallmordent" . "prallmordent")) #f 0 1 0))
("upprall" . ((feta . ("upprall" . "upprall")) #f 0 1 0))
- ("downprall" . ((feta . ("downprall" . "downprall")) #f 0 1 0)))
+ ("downprall" . ((feta . ("downprall" . "downprall")) #f 0 1 0))
+ ("segno" . ((feta . ("segno" . "segno")) #f 0 1 0))
+ ("wheel" . ((feta . ("wheel" . "wheel")) #f 0 1 0)))
script-alist)
)