]> git.donarmstrong.com Git - lilypond.git/commitdiff
Don't warn for fingerings outside of [1..5]
authorDavid Kastrup <dak@gnu.org>
Sun, 29 Jan 2012 01:43:02 +0000 (02:43 +0100)
committerDavid Kastrup <dak@gnu.org>
Sun, 29 Jan 2012 01:44:57 +0000 (02:44 +0100)
Since those are used for _fret_ numbering (and also interpreted in this
manner by the tablature engraver), I can't believe that this has not been
fixed long ago.

scm/output-lib.scm

index a38a49da49880e5fb7306cb2aa082c25afab0be2..7a43a7bb54978e4f314b948ebe389e59664c14eb 100644 (file)
@@ -864,11 +864,6 @@ and duration-log @var{log}."
   (let* ((event (event-cause grob))
         (digit (ly:event-property event 'digit)))
 
-    (if (> digit 5)
-       (ly:input-message (ly:event-property event 'origin)
-                         "Warning: Fingering notation for finger number ~a"
-                         digit))
-
     (number->string digit 10)))
 
 (define-public (string-number::calc-text grob)