X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=ly%2Fpredefined-fretboards-init.ly;h=d0f861a40237736e5cb065512dcf669178dc74f0;hb=730e35bfe91fc8b151fbd54c6daddaf930664327;hp=df88ee79bf863665b0b4a7fe9828d6e41c8ce375;hpb=079be3c9a14d13e594cb1c1924058322a93ca1b5;p=lilypond.git diff --git a/ly/predefined-fretboards-init.ly b/ly/predefined-fretboards-init.ly index df88ee79bf..d0f861a402 100644 --- a/ly/predefined-fretboards-init.ly +++ b/ly/predefined-fretboards-init.ly @@ -2,7 +2,7 @@ %%%% %%%% source file of the GNU LilyPond music typesetter %%%% -%%%% (c) 2008 Carl D. Sorensen +%%%% (c) 2008--2009 Carl D. Sorensen \version "2.12.0" @@ -21,8 +21,8 @@ addChordShape = #(define-music-function (parser location key-symbol tuning shape-definition) (symbol? pair? string-or-pair?) - "Add chord shape @code{shape-definition} to the @code{chord-shape-table} -hash with the key @code{(cons key-symbol tuning)}." + (_i "Add chord shape @var{shape-definition} to the @var{chord-shape-table} +hash with the key @var{(cons key-symbol tuning)}.") (hash-set! chord-shape-table (cons key-symbol tuning) shape-definition) @@ -37,9 +37,8 @@ hash with the key @code{(cons key-symbol tuning)}." storePredefinedDiagram = #(define-music-function (parser location chord tuning diagram-definition) (ly:music? pair? string-or-pair?) - "Add predefined fret diagram defined by @code{diagram-definition} -for the chord pitches @code{chord} and -the stringTuning @code{tuning}." + (_i "Add predefined fret diagram defined by @var{diagram-definition} + for the chord pitches @var{chord} and the stringTuning @var{tuning}.") (let* ((pitches (event-chord-pitches (car (extract-named-music chord 'EventChord)))) (hash-key (cons tuning pitches)) @@ -50,4 +49,3 @@ the stringTuning @code{tuning}." hash-key verbose-definition)) (make-music 'SequentialMusic 'void #t)) -