diff options
| author | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:38 -0800 | 
|---|---|---|
| committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:38 -0800 | 
| commit | 64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34 (patch) | |
| tree | 1b23b8e8005328194e2fb4bf653806c85050933f /mwdenote.scm | |
| parent | 5bea21e81ed516440e34e480f2c33ca41aa8c597 (diff) | |
| download | slib-64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34.tar.gz slib-64f037d91e0c9296dcaef9a0ff3eb33b19a2ed34.zip  | |
Import Upstream version 3a5upstream/3a5
Diffstat (limited to 'mwdenote.scm')
| -rw-r--r-- | mwdenote.scm | 8 | 
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))  | 
