1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 21:10:27 +02:00

(ice-9): Define 'eval' before exporting it. This avoids a deprecation

warning.
This commit is contained in:
Marius Vollmer 2002-01-12 19:16:49 +00:00
parent 5336537172
commit e22875eae3

View file

@ -52,7 +52,15 @@
syntax-dispatch syntax-error bound-identifier=?
datum->syntax-object free-identifier=?
generate-temporaries identifier? syntax-object->datum
void eval syncase))
void syncase))
;; This is to avoid a deprecation warning about re-exporting eval.
;; When the re-exporting behavior of export is removed, removed this
;; code and include 'eval' in the export clause of define-module,
;; above.
(define eval #f)
(export eval)