]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix polarity of rhythmic-location>=?
authorDavid Kastrup <dak@gnu.org>
Fri, 29 Jun 2012 00:35:00 +0000 (02:35 +0200)
committerDavid Kastrup <dak@gnu.org>
Fri, 29 Jun 2012 00:35:00 +0000 (02:35 +0200)
scm/output-lib.scm

index 800d0f34323a561d0049f8bda6e180ec7571b78c..01e429cd195594cae2e3fcd202f3148bffdc7364 100644 (file)
@@ -316,7 +316,7 @@ and duration-log @var{log}."
 (define-public (rhythmic-location<=? a b)
   (not (rhythmic-location<? b a)))
 (define-public (rhythmic-location>=? a b)
-  (rhythmic-location<? a b))
+  (not (rhythmic-location<? a b)))
 (define-public (rhythmic-location>? a b)
   (rhythmic-location<? b a))