]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/nederlands.ly
*** empty log message ***
[lilypond.git] / ly / nederlands.ly
index 8153a09bd7add68fc20b3037f4af23eaf3cf3996..262ac28b41090e1d9852fb9eb26a9deb50b5dc05 100644 (file)
@@ -1,47 +1,48 @@
+\version "1.9.1"
 %{
  common dutch names for notes. es means flat, is means sharp
 %}
 
-\notenames
-     #'((ceses . (-1 0 -2 ))
-       (ces . ( -1 0 -1 ))
-       (c . ( -1 0 0 ))
-       (cis . ( -1 0 1 ))
-       (cisis . ( -1 0 2 ))
-       (deses . ( -1 1 -2 ))
-       (des . ( -1 1 -1 ))
-       (d . ( -1 1 0 ))
-       (dis . ( -1 1 1 ))
-       (disis . ( -1 1 2 ))
-       (eeses . ( -1 2 -2 ))
-       (eses . ( -1 2 -2 ))
-       (ees . ( -1 2 -1 ))
-       (es . ( -1 2 -1 ))
-       (e . ( -1 2 0 ))
-       (eis . ( -1 2 1 ))
-       (eisis . ( -1 2 2 ))
-       (feses . ( -1 3 -2 ))
-       (fes . ( -1 3 -1 ))
-       (f . ( -1 3 0 ))
-       (fis . ( -1 3 1 ))
-       (fisis . ( -1 3 2 ))
-       (geses . ( -1 4 -2 ))
-       (ges . ( -1 4 -1 ))
-       (g . ( -1 4 0 ))
-       (gis . ( -1 4 1 ))
-       (gisis . ( -1 4 2 ))
-       (aeses . ( -1 5 -2 ))
-       (ases . ( -1 5 -2 ))
-       (aes . ( -1 5 -1 ))
-       (as . ( -1 5 -1 ))
-       (a . ( -1 5 0 ))
-       (ais . ( -1 5 1 ))
-       (aisis . ( -1 5 2 ))
-       (beses . ( -1 6 -2 ))
-       (bes . ( -1 6 -1 ))
-       (b . ( -1 6 0 ))
-       (bis . ( -1 6 1 ))
-       (bisis . ( -1 6 2 )))
-
+\pitchnames #`(
+       (ceses . ,(ly:make-pitch -1 0 -2))
+       (ces . ,(ly:make-pitch  -1 0 -1 ))
+       (c . ,(ly:make-pitch  -1 0 0 ))
+       (cis . ,(ly:make-pitch  -1 0 1 ))
+       (cisis . ,(ly:make-pitch  -1 0 2 ))
+       (deses . ,(ly:make-pitch  -1 1 -2 ))
+       (des . ,(ly:make-pitch  -1 1 -1 ))
+       (d . ,(ly:make-pitch  -1 1 0 ))
+       (dis . ,(ly:make-pitch  -1 1 1 ))
+       (disis . ,(ly:make-pitch  -1 1 2 ))
+       (eeses . ,(ly:make-pitch  -1 2 -2 ))
+       (eses . ,(ly:make-pitch  -1 2 -2 ))
+       (ees . ,(ly:make-pitch  -1 2 -1 ))
+       (es . ,(ly:make-pitch  -1 2 -1 ))
+       (e . ,(ly:make-pitch  -1 2 0 ))
+       (eis . ,(ly:make-pitch  -1 2 1 ))
+       (eisis . ,(ly:make-pitch  -1 2 2 ))
+       (feses . ,(ly:make-pitch  -1 3 -2 ))
+       (fes . ,(ly:make-pitch  -1 3 -1 ))
+       (f . ,(ly:make-pitch  -1 3 0 ))
+       (fis . ,(ly:make-pitch  -1 3 1 ))
+       (fisis . ,(ly:make-pitch  -1 3 2 ))
+       (geses . ,(ly:make-pitch  -1 4 -2 ))
+       (ges . ,(ly:make-pitch  -1 4 -1 ))
+       (g . ,(ly:make-pitch  -1 4 0 ))
+       (gis . ,(ly:make-pitch  -1 4 1 ))
+       (gisis . ,(ly:make-pitch  -1 4 2 ))
+       (aeses . ,(ly:make-pitch  -1 5 -2 ))
+       (ases . ,(ly:make-pitch  -1 5 -2 ))
+       (aes . ,(ly:make-pitch  -1 5 -1 ))
+       (as . ,(ly:make-pitch  -1 5 -1 ))
+       (a . ,(ly:make-pitch  -1 5 0 ))
+       (ais . ,(ly:make-pitch  -1 5 1 ))
+       (aisis . ,(ly:make-pitch  -1 5 2 ))
+       (beses . ,(ly:make-pitch  -1 6 -2 ))
+       (bes . ,(ly:make-pitch  -1 6 -1 ))
+       (b . ,(ly:make-pitch  -1 6 0 ))
+       (bis . ,(ly:make-pitch  -1 6 1 ))
+       (bisis . ,(ly:make-pitch  -1 6 2 ))
+)