]> git.donarmstrong.com Git - lilypond.git/blobdiff - scm/lily-library.scm
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / scm / lily-library.scm
index acb29bb8530a25702fbfe01f305d0fb48feeb217..d178c6926c80d7a6c1d1b6c9e9c1d8cb3dcf16b9 100644 (file)
@@ -383,36 +383,13 @@ found."
   (not (or  (nan? (car i))
            (inf? (car i))
            (nan? (cdr i))
-           (inf? (cdr i))
-           (> (car i) (cdr i)))))
+           (inf? (cdr i)))))
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;;
 
 
-
-(define-public (ly:numbers->string lst)
-  (string-join (map ly:number->string lst) " "))
-
-(define (number->octal-string x)
-  (let* ((n (inexact->exact x))
-         (n64 (quotient n 64))
-         (n8 (quotient (- n (* n64 64)) 8)))
-    (string-append
-     (number->string n64)
-     (number->string n8)
-     (number->string (remainder (- n (+ (* n64 64) (* n8 8))) 8)))))
-
-(define-public (ly:inexact->string x radix)
-  (let ((n (inexact->exact x)))
-    (number->string n radix)))
-
-(define-public (ly:number-pair->string c)
-  (string-append (ly:number->string (car c)) " "
-                (ly:number->string (cdr c))))
-
-
 (define-public (write-me message x)
   "Return X.  Display MESSAGE and write X.  Handy for debugging,
 possibly turned off."
@@ -474,9 +451,6 @@ possibly turned off."
       0
       (if (< x 0) -1 1)))
 
-(define-public (car< a b) (< (car a) (car b)))
-
-
 (define-public (symbol<? lst r)
   (string<? (symbol->string lst) (symbol->string r)))