From 451268878e5f28279b9a764ba9e257a85aa43d37 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Sun, 13 Jan 2013 23:23:36 +0100 Subject: [PATCH] Use ASDF/PACKAGE:SYMBOL-CALL --- src/iolib.base.asd | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/iolib.base.asd b/src/iolib.base.asd index 94186d3..012f292 100644 --- a/src/iolib.base.asd +++ b/src/iolib.base.asd @@ -15,16 +15,13 @@ (:file "pkgdcl" :depends-on ("conduits" #+scl "scl-gray-streams") :perform (asdf:compile-op :before (o c) - (funcall (find-symbol (string '#:load-gray-streams) - :iolib.conf))) + (asdf/package:symbol-call :iolib.conf '#:load-gray-streams)) :perform (asdf:load-op :before (o c) - (funcall (find-symbol (string '#:load-gray-streams) - :iolib.conf))) + (asdf/package:symbol-call :iolib.conf '#:load-gray-streams)) :perform (asdf:load-source-op :before (o c) - (funcall (find-symbol (string '#:load-gray-streams) - :iolib.conf)))) + (asdf/package:symbol-call :iolib.conf '#:load-gray-streams))) (:file "gray-streams" :depends-on ("pkgdcl" #+scl "scl-gray-streams")) (:file "definitions" :depends-on ("pkgdcl")) -- 2.11.4.GIT