Do not use quasiquote in base0.
* base0.scm (defined?): Rewrite without quasiquote.
This commit is contained in:
parent
dd271be218
commit
6948629c27
|
@ -19,7 +19,7 @@
|
||||||
;;; along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-macro (defined? x)
|
(define-macro (defined? x)
|
||||||
`(assq ,x (cddr (current-module))))
|
(list 'assq x '(cddr (current-module))))
|
||||||
|
|
||||||
(define (current-input-port) 0)
|
(define (current-input-port) 0)
|
||||||
(define (current-output-port) 1)
|
(define (current-output-port) 1)
|
||||||
|
|
Loading…
Reference in a new issue