aboutsummaryrefslogtreecommitdiffstats
path: root/mwexpand.scm
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:38 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:38 -0800
commit64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34 (patch)
tree1b23b8e8005328194e2fb4bf653806c85050933f /mwexpand.scm
parent5bea21e81ed516440e34e480f2c33ca41aa8c597 (diff)
downloadslib-64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34.tar.gz
slib-64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34.zip
Import Upstream version 3a5upstream/3a5
Diffstat (limited to 'mwexpand.scm')
-rw-r--r--mwexpand.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/mwexpand.scm b/mwexpand.scm
index 07acf1d..719b899 100644
--- a/mwexpand.scm
+++ b/mwexpand.scm
@@ -154,6 +154,9 @@
((eq? keyword mw:denote-of-letrec) (mw:letrec exp env))
((eq? keyword mw:denote-of-quasiquote) (mw:quasiquote exp env))
((eq? keyword mw:denote-of-do) (mw:do exp env))
+ ; @@ leave alone define-macro args specs -- stef
+ ((eq? keyword mw:denote-of-define-macro) exp)
+ ((eq? keyword mw:denote-of-defmacro) exp)
((or (eq? keyword mw:denote-of-define)
(eq? keyword mw:denote-of-define-syntax))
;; slight hack to allow expansion into defines -KenD