diff options
Diffstat (limited to 'scheme/plt/geiser/eval.ss')
-rw-r--r-- | scheme/plt/geiser/eval.ss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scheme/plt/geiser/eval.ss b/scheme/plt/geiser/eval.ss index d432daa..e806138 100644 --- a/scheme/plt/geiser/eval.ss +++ b/scheme/plt/geiser/eval.ss @@ -1,6 +1,6 @@ ;;; eval.ss -- evaluation -;; Copyright (C) 2009 Jose Antonio Ortega Ruiz +;; Copyright (C) 2009, 2010 Jose Antonio Ortega Ruiz ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the Modified BSD License. You should @@ -53,7 +53,7 @@ (define (eval-in form spec lang) (call-with-result (lambda () - (update-module-cache spec form) + (update-signature-cache spec form) (eval form (module-spec->namespace spec lang))))) (define compile-in eval-in) @@ -62,7 +62,7 @@ (call-with-result (lambda () (load-module file (current-output-port) (last-namespace)) - (update-module-cache file)))) + (update-signature-cache file)))) (define compile-file load-file) |