X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=scm%2Fchord-generic-names.scm;h=923cddd2cfa027d9be00302d9aeeb44e8ea37e04;hb=1a5b9f10e53ed3ac1e567b87e43bac0b20d2c96a;hp=7a1ff1893248e6021e7e9cd4d74b2690495703da;hpb=3b2376c6828136cdbc078015c0b9bee26bffb448;p=lilypond.git diff --git a/scm/chord-generic-names.scm b/scm/chord-generic-names.scm index 7a1ff18932..923cddd2cf 100644 --- a/scm/chord-generic-names.scm +++ b/scm/chord-generic-names.scm @@ -2,7 +2,7 @@ ;;;; ;;;; source file of the GNU LilyPond music typesetter ;;;; -;;;; (c) 2003-2004 Jan Nieuwenhuizen +;;;; (c) 2003--2007 Jan Nieuwenhuizen ;;;; NOTE: this is experimental code @@ -134,7 +134,7 @@ input/test/dpncnt.ly). (if (pair? exceptions) (let* ((e (car exceptions)) (e-pitches (car e))) - (if (equal? e-pitches (take pitches (length e-pitches) )) + (if (equal? e-pitches (take pitches (length e-pitches))) e (partial-match (cdr exceptions)))) #f)) @@ -160,8 +160,8 @@ input/test/dpncnt.ly). ;; kludge alert: replace partial matched lower part of all with ;; 'normal' pitches from full ;; (all pitches) - (all (append (take full (length partial-pitches) ) - (drop pitches (length partial-pitches) ))) + (all (append (take full (length partial-pitches)) + (drop pitches (length partial-pitches)))) (highest (last all)) (missing (list-minus full (map pitch-unalter all)))