fixed formatting exn in drscheme tool manager

svn: r7712
This commit is contained in:
Ryan Culpepper 2007-11-13 19:03:35 +00:00
parent 5c00400760
commit 39210b51af

View File

@ -178,10 +178,12 @@
[rest-parts (cdr parts)]) [rest-parts (cdr parts)])
(case (car key) (case (car key)
((lib) ((lib)
`(lib ,(substring (append string-append `(lib ,(string-append
(map (lambda (s) (apply string-append
(string-append "/" s)) (map (lambda (s)
(append (cdr key) rest-parts (list file))))))) (string-append s "/"))
(append (cdr key) rest-parts)))
file)))
((planet) ((planet)
`(planet ,file (,@(cdr key) ,maj ,min) ,@rest-parts))))) `(planet ,file (,@(cdr key) ,maj ,min) ,@rest-parts)))))