[lisplab-cvs] r74 - src/core
Jørn Inge Vestgården
jivestgarden at common-lisp.net
Sat Aug 8 17:44:28 UTC 2009
Author: jivestgarden
Date: Sat Aug 8 13:44:28 2009
New Revision: 74
Log:
removed sb-ext dep of package
Modified:
package.lisp
src/core/level0-basic.lisp
Modified: package.lisp
==============================================================================
--- package.lisp (original)
+++ package.lisp Sat Aug 8 13:44:28 2009
@@ -21,7 +21,7 @@
(defpackage "LISPLAB"
(:nicknames "LL")
- (:use "COMMON-LISP" "SB-EXT")
+ (:use "COMMON-LISP")
(:documentation "Mathematics and linear algebra library"))
(defpackage "FORTRAN-FFI-ACCESSORS"
Modified: src/core/level0-basic.lisp
==============================================================================
--- src/core/level0-basic.lisp (original)
+++ src/core/level0-basic.lisp Sat Aug 8 13:44:28 2009
@@ -23,6 +23,11 @@
(export '(in-dir ))
+;; Here non ansi stuff.
+;; First we need the truely-the macro
+
+#+cbcl(import 'sb-ext::truly-the)
+
(setf *READ-DEFAULT-FLOAT-FORMAT* 'double-float) ; TODO make part of pacakge import?
(defmacro with-gensyms ((&rest names) . body)
More information about the lisplab-cvs
mailing list