From afb4c5fb1766a317100887f62c72a660047c8892 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Sun, 29 Jan 2012 02:43:02 +0100 Subject: [PATCH] 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. --- scm/output-lib.scm | 5 ----- 1 file changed, 5 deletions(-) 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) -- 2.39.5