From af72c4f5bd209e82c6a4f9cf63bb37f2ad41bf63 Mon Sep 17 00:00:00 2001 From: JeffBezanson Date: Fri, 8 May 2009 03:00:40 +0000 Subject: [PATCH] putting the saved environment in the order that matches the current boot file --- femtolisp/system.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/femtolisp/system.lsp b/femtolisp/system.lsp index 56e13d5..b9afa82 100644 --- a/femtolisp/system.lsp +++ b/femtolisp/system.lsp @@ -753,7 +753,7 @@ (begin (io.print f s) (io.write f "\n") (io.print f (top-level-value s)) (io.write f "\n")))) - (simple-sort (environment))) + (nreverse (simple-sort (environment)))) (begin (io.close f) (set! *print-pretty* pp)))))