Fri Nov 13 12:15:14 UTC 2009 pix@kepibu.org
* Fix clisp fasl load crash
hunk ./regexp-template.lisp 19
+;; prevent clisp from crashing when it loads .fas files with #t(...) forms in them
+(defmethod make-load-form ((object unify::template) &optional env)
+ (declare (ignore env))
+ `(make-instance ',(class-of object) :spec ',(template-spec object)))
+
hunk ./unification-templates.lisp 2
-;; FIXME: this file crashes clisp when loading the fasl...wtf?
hunk ./unification-templates.lisp 101
-;; FIXME: Apparently the #T() objects are causing clisp to crash during
-;; fasl-loading. Quite possibly clisp is unable to save objects to fasls.
-#+(or)