summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2016-06-05 10:18:05 +0200
committerrekado <rekado@elephly.net>2016-06-05 10:18:05 +0200
commit9ae92088022e500a4f681257935814ca10d76323 (patch)
tree10ba7ef04795c9c5eaee1bb8eebf4410f04ba2fe
parent1b73a6439cd0e05f0bd767d19cb4a60c3d6f0ad2 (diff)
song1: Move nastyPause to common music.
-rw-r--r--01-song1/01-song1.ly5
-rw-r--r--01-song1/music/common.ly4
2 files changed, 5 insertions, 4 deletions
diff --git a/01-song1/01-song1.ly b/01-song1/01-song1.ly
index bd9262e..d01d88a 100644
--- a/01-song1/01-song1.ly
+++ b/01-song1/01-song1.ly
@@ -6,12 +6,9 @@
copyright = \markup { \char ##x00A9 "2002—2016 Ricardo Wurmus" }
}
-nastyPause = {
- \time 6/8
- \repeat unfold 8 { r4. r4.|}
-}
\include "../settings.ly"
+\include "music/common.ly"
\include "music/bass.ly"
\include "music/keys.ly"
\include "music/stick.ly"
diff --git a/01-song1/music/common.ly b/01-song1/music/common.ly
new file mode 100644
index 0000000..7aa2b8b
--- /dev/null
+++ b/01-song1/music/common.ly
@@ -0,0 +1,4 @@
+nastyPause = {
+ \time 6/8
+ \repeat unfold 8 { r4. r4.|}
+}