]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.96
authorfred <fred>
Tue, 26 Mar 2002 23:57:13 +0000 (23:57 +0000)
committerfred <fred>
Tue, 26 Mar 2002 23:57:13 +0000 (23:57 +0000)
scm/lily.scm

index d9a951c9f7a2142d618613a163c1eea254e98633..a18f3fec56a4dd468e6def47fad0f6ce2daa1d98 100644 (file)
   (define (char i)
     (string-append "\\char" (inexact->string i 10) " "))
   
-  (define (dashed-line thick dash w)
-    (embedded-ps ((ps-scm 'dashed-line) thick dash w)))
+  (define (dashed-line thick on off dx dy)
+    (embedded-ps ((ps-scm 'dashed-line) thick on off dx dy)))
 
   (define (decrescendo thick w h cont)
     (embedded-ps ((ps-scm 'decrescendo) thick w h cont)))
   (define (define-origin file line col)
     ; use this for column positions
      (string-append "\\special{src:" (number->string line) ":"
-        (number->string col) " " file "}")
+        (number->string col) " " file "}"
+        ;; arg, the clueless take over the mailing list...
+        "\\special{-****-These-warnings-are-harmless-***}"
+        "\\special{-****-PLEASE-read-http://appel.lilypond.org/wiki/index.php3?PostProcessing-****}"
+       )
 
      ; line numbers only:
     ;(string-append "\\special{src:" (number->string line) " " file "}")
      (number->string (* 10 thick))     ;UGH.  10 ?
      " ] 0 draw_dashed_slur"))
 
-  (define (dashed-line thick dash width)
+  (define (dashed-line thick on off dx dy)
     (string-append 
-     (number->string width) 
+     (number->string dx)
+     " "
+     (number->string dy)
      " "
      (number->string thick) 
      " [ "
-     (number->string dash)
+     (number->string on)
      " "
-     (number->string dash)
+     (number->string off)
      " ] 0 draw_dashed_line"))
 
   (define (decrescendo thick w h cont)