]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/music-functions-init.ly
* scm/output-lib.scm (string-finger::calc-text): new function
[lilypond.git] / ly / music-functions-init.ly
index b910223f68ea87604c3b25edf85fc50814f9f71e..5f425fc717a7d0d0dfddc6fc997ba221e0d087ff 100644 (file)
@@ -2,6 +2,11 @@
 
 \version "2.9.12"
 
+
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%% this file is alphabetically sorted.
+%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
 %% need SRFI-1 filter 
 
 #(use-modules (srfi srfi-1))  
@@ -532,6 +537,14 @@ includePageLayoutFile =
                                                tweak-filename))))))
    (make-music 'SequentialMusic 'void #t))
 
+
+rightHandFinger =
+#(define-music-function (parser location finger) (string?)
+   "Define a StringFingerEvent"
+   (make-music 'StringFingerEvent
+              'origin location
+              'text finger))
+
 scoreTweak =
 #(define-music-function (parser location name) (string?)
    "Include the score tweak, if exists."
@@ -612,3 +625,4 @@ withMusicProperty =
    (set! (ly:music-property music sym) val)
    music)
 
+