diff --git a/fontland/fontland/font.rkt b/fontland/fontland/font.rkt index 5a5283ed..30fd23c0 100644 --- a/fontland/fontland/font.rkt +++ b/fontland/fontland/font.rkt @@ -1,6 +1,6 @@ #lang debug racket/base (require "racket.rkt") -(require "freetype-ffi.rkt" (except-in ffi/unsafe array?) racket/runtime-path "subset.rkt" "glyph.rkt" "layout-engine.rkt" "bbox.rkt" "glyphrun.rkt" "cmap-processor.rkt" "directory.rkt" xenomorph "tables.rkt" "ttfglyph.rkt") +(require "freetype-ffi.rkt" (except-in ffi/unsafe -> array?) racket/runtime-path "subset.rkt" "glyph.rkt" "layout-engine.rkt" "bbox.rkt" "glyphrun.rkt" "cmap-processor.rkt" "directory.rkt" xenomorph "tables.rkt" "ttfglyph.rkt") (provide (all-defined-out)) #| diff --git a/fontland/fontland/gpos-processor-test.rkt b/fontland/fontland/gpos-processor-test.rkt index 308899cd..f23b572a 100644 --- a/fontland/fontland/gpos-processor-test.rkt +++ b/fontland/fontland/gpos-processor-test.rkt @@ -1,9 +1,9 @@ #lang racket/base (require "racket.rkt") -(require fontkit "gpos-processor.rkt" rackunit xenomorph racket/serialize describe) +(require fontland "gpos-processor.rkt" rackunit xenomorph racket/serialize describe) -(define fira-path "../pitfall/test/assets/fira.ttf") +(define fira-path "assets/fira.ttf") (define f (openSync fira-path)) (define gpos (· f GPOS)) diff --git a/fontland/fontland/gsub-processor-test.rkt b/fontland/fontland/gsub-processor-test.rkt index dd9c5d00..a479398c 100644 --- a/fontland/fontland/gsub-processor-test.rkt +++ b/fontland/fontland/gsub-processor-test.rkt @@ -1,9 +1,9 @@ #lang racket/base (require "racket.rkt") -(require fontkit "gsub-processor.rkt" rackunit xenomorph racket/serialize describe) +(require fontland "gsub-processor.rkt" rackunit xenomorph racket/serialize describe) -(define fira-path "../pitfall/test/assets/fira.ttf") +(define fira-path "assets/fira.ttf") (define f (openSync fira-path)) (define gsub (· f GSUB))