Failproofshark / cl-sdl2-ttf

A common lisp wrapper for SDL2_TTF used for loading fonts and creating text assets
25 stars 19 forks source link

use define-package instead of defpackage for ffi packages #10

Closed cbaggers closed 7 years ago

cbaggers commented 7 years ago

Sometime it is valuable to asdf:load-system with :force t in order to find warnings. However due to the design of defpackage this will error as some of the symbols exported for sdl2-ttf are exported by define-*render-function and friends.

By moving to define-package we avoid this issue.

Failproofshark commented 7 years ago

thanks!