]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/note-names.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / note-names.ly
index dd8b9b02a16b5df1b1de04477a0999b4fcf6d6b6..972ebb1d021a06119630c7093588c83247fd095f 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.16.0"
+\version "2.19.38"
 
 \header {
   texidoc = "Various languages are supported for note names input.
@@ -11,17 +11,18 @@ and doesn't break point-and-click abilities.
 %% Old syntax.
 \include "english.ly"
 
-\relative c'' {
-  g4 bf d c
+\relative {
+  g'4 bf d c
 
   %% Manual override of the pitchnames variable
   %% and the parser note names:
   #(begin
     (set! pitchnames (ly:assoc-get 'nederlands language-pitch-names))
-    (ly:parser-set-note-names parser pitchnames))
+    (ly:parser-set-note-names pitchnames))
   bes4 a g fis
 
   %% The \language command acts in the same way:
-  \language "italiano"
-  sol4 fa mib re
+  \language "français"
+  %% Accented characters are supported in some languages:
+  sol4 fa mib ré
 }