aboutsummaryrefslogtreecommitdiffstats
path: root/mwdenote.scm
diff options
context:
space:
mode:
Diffstat (limited to 'mwdenote.scm')
-rw-r--r--mwdenote.scm8
1 files changed, 8 insertions, 0 deletions
diff --git a/mwdenote.scm b/mwdenote.scm
index def1d4d..f7db72b 100644
--- a/mwdenote.scm
+++ b/mwdenote.scm
@@ -42,6 +42,8 @@
(set! . (special set!))
(begin . (special begin))
(define . (special define))
+ (define-macro . (special define-macro)) ;; @@ added stef
+ (defmacro . (special defmacro)) ;; @@ added stef
(case . (special case)) ;; @@ added wdc
(let . (special let)) ;; @@ added KAD
(let* . (special let*)) ;; @@ "
@@ -136,6 +138,12 @@
(define mw:denote-of-define-syntax
(mw:syntax-lookup mw:standard-syntax-environment 'define-syntax))
+(define mw:denote-of-define-macro
+ (mw:syntax-lookup mw:standard-syntax-environment 'define-macro)) ;; @@ stef
+
+(define mw:denote-of-defmacro
+ (mw:syntax-lookup mw:standard-syntax-environment 'defmacro)) ;; @@ stef
+
(define mw:denote-of-let-syntax
(mw:syntax-lookup mw:standard-syntax-environment 'let-syntax))