Move to subdir for Planet2. Extension fixes.

This commit is contained in:
Sam Tobin-Hochstadt 2012-11-12 18:12:25 -05:00
parent 2a09449884
commit fd0f9e836b
8 changed files with 4 additions and 4 deletions

View File

@ -261,8 +261,8 @@
(to-dot)))
#:exists 'truncate)
(define-runtime-path lang-colors.rkt "lang-colors.rkt")
(call-with-output-file lang-colors.rkt
(define-runtime-path lang-colors.rktd "lang-colors.rktd")
(call-with-output-file lang-colors.rktd
(λ (port)
(pretty-write
(sort (hash-map colors list)

View File

@ -7,7 +7,7 @@
slideshow slideshow/code
scheme/runtime-path
racket/gui/base)
(define-runtime-path lang-colors.rkt "lang-colors.rkt")
(define-runtime-path lang-colors.rktd "lang-colors.rktd")
(define (color->name c)
(define-values (r g b) (split-out-color c))
@ -61,7 +61,7 @@
(color-name->index n2))])))
(define lang-colors
(sort (call-with-input-file lang-colors.rkt read)
(sort (call-with-input-file lang-colors.rktd read)
color<=?
#:key cadr))