From 6948629c279cf6b109093932ccd1932f3b2d228b Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sun, 16 Oct 2016 09:21:17 +0200 Subject: [PATCH] Do not use quasiquote in base0. * base0.scm (defined?): Rewrite without quasiquote. --- base0.mes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base0.mes b/base0.mes index 4fd496a1..fc27aef3 100644 --- a/base0.mes +++ b/base0.mes @@ -19,7 +19,7 @@ ;;; along with Mes. If not, see . (define-macro (defined? x) - `(assq ,x (cddr (current-module)))) + (list 'assq x '(cddr (current-module)))) (define (current-input-port) 0) (define (current-output-port) 1)