1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 16:00:22 +02:00

* syncase.scm (eval): Add second arg both in definition and use.

This commit is contained in:
Mikael Djurfeldt 2000-08-11 08:46:14 +00:00
parent 21c2a33a19
commit 6232c3dd69

View file

@ -1,4 +1,4 @@
;;;; Copyright (C) 1997 Free Software Foundation, Inc.
;;;; Copyright (C) 1997, 2000 Free Software Foundation, Inc.
;;;;
;;;; This program is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
@ -152,11 +152,12 @@
(define internal-eval (nested-ref the-scm-module '(app modules guile eval)))
(define-public (eval x)
(define-public (eval x environment)
(internal-eval (if (and (pair? x)
(string=? (car x) "noexpand"))
(cadr x)
(sc-expand x))))
(sc-expand x))
environment))
;;; Hack to make syncase macros work in the slib module
(let ((m (nested-ref the-root-module '(app modules ice-9 slib))))