~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to ly/grace-init.ly

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
\version "2.1.36"
2
 
 
3
 
 
4
 
startGraceMusic = \notes {
5
 
    \context Voice \applycontext #set-start-grace-properties
 
1
\version "2.7.39"
 
2
 
 
3
 
 
4
startGraceMusic =  {
6
5
}
7
6
 
8
 
stopGraceMusic = \notes { 
9
 
    \context Voice \applycontext #set-stop-grace-properties
 
7
stopGraceMusic =  { 
10
8
}
11
9
 
12
10
startAppoggiaturaMusic =
13
 
\notes {
14
 
    \context Voice \applycontext #set-start-grace-properties
 
11
 {
15
12
    s1*0(
16
13
}
17
14
 
18
 
stopAppoggiaturaMusic = \notes { 
19
 
    \context Voice \applycontext #set-stop-grace-properties
 
15
stopAppoggiaturaMusic =  { 
20
16
    s1*0)
21
17
}
22
18
 
23
 
startAcciaccaturaMusic = \notes {
24
 
    \context Voice \applycontext #set-start-grace-properties
 
19
startAcciaccaturaMusic =  {
25
20
    s1*0(
26
21
    \override Stem  #'stroke-style = #"grace"
27
22
}
28
23
 
29
 
stopAcciaccaturaMusic = \notes {
 
24
stopAcciaccaturaMusic =  {
30
25
    \revert Stem #'stroke-style
31
 
    \context Voice \applycontext #set-stop-grace-properties
32
26
    s1*0)
33
27
}