From: David Kastrup Date: Sun, 29 Jan 2012 01:43:02 +0000 (+0100) Subject: Don't warn for fingerings outside of [1..5] X-Git-Tag: release/2.15.28-1~12 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=afb4c5fb1766a317100887f62c72a660047c8892;p=lilypond.git Don't warn for fingerings outside of [1..5] 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. --- diff --git a/scm/output-lib.scm b/scm/output-lib.scm index a38a49da49..7a43a7bb54 100644 --- a/scm/output-lib.scm +++ b/scm/output-lib.scm @@ -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)