]> git.donarmstrong.com Git - lilypond.git/commitdiff
*** empty log message ***
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 11 Jan 2005 00:10:14 +0000 (00:10 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 11 Jan 2005 00:10:14 +0000 (00:10 +0000)
scm/chord-name.scm

index e964da8bfb5f49247196daaa8e6f72f6427dfd66..6addeddc9325de5c1e80c5bb522c58ab29ab9a8c 100644 (file)
@@ -105,12 +105,12 @@ FOOBAR-MARKUP) if OMIT-ROOT is given and non-false.
           (text (if (null? texts) #f (if omit-root (car texts) texts))))
       (cons (if omit-root (cdr normalized) normalized) text)))
 
-  (define (is-req-chord? m)
+  (define (is-event-chord? m)
     (and
      (memq 'event-chord (ly:music-property m 'types))
      (not (equal? ZERO-MOMENT (ly:music-length m)))))
 
-  (let* ((elts (filter is-req-chord? (ly:music-property seq 'elements)))
+  (let* ((elts (filter is-event-chord? (ly:music-property seq 'elements)))
         (alist (map chord-to-exception-entry elts)))
     (filter (lambda (x) (cdr x)) alist)))