[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 25/36: only evaluate top-level macro definitions
From: |
Christopher Allan Webber |
Subject: |
[Guile-commits] 25/36: only evaluate top-level macro definitions |
Date: |
Tue, 19 Oct 2021 17:59:40 -0400 (EDT) |
cwebber pushed a commit to branch wip-elisp-rebased
in repository guile.
commit 8d26ce3f0c7ae5c8c0b8c2c9782565ff660a8ee9
Author: Robin Templeton <robin@terpri.org>
AuthorDate: Mon Aug 11 06:04:28 2014 -0400
only evaluate top-level macro definitions
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* module/language/elisp/compile-tree-il.scm (defmacro): Check to see
whether toplevel? is true before compiling a macro.
---
module/language/elisp/compile-tree-il.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/module/language/elisp/compile-tree-il.scm
b/module/language/elisp/compile-tree-il.scm
index 29c769d..6c3f7bd 100644
--- a/module/language/elisp/compile-tree-il.scm
+++ b/module/language/elisp/compile-tree-il.scm
@@ -786,9 +786,10 @@
args
body))))
(make-const loc name))))
- (with-native-target
- (lambda ()
- (compile tree-il #:from 'tree-il #:to 'value)))
+ (when (fluid-ref toplevel?)
+ (with-native-target
+ (lambda ()
+ (compile tree-il #:from 'tree-il #:to 'value))))
tree-il)))
(else (report-error loc "bad defmacro" args))))
- [Guile-commits] 17/36: elisp @@ macro, (continued)
- [Guile-commits] 17/36: elisp @@ macro, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 15/36: fix symbol-function, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 29/36: use guile eval for elisp tree-il, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 31/36: use standard evaluator, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 32/36: update cross-compilation test, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 36/36: elisp: boot: Replace removed FRAME-PROCEDURE with FRAME-PROCEDURE-NAME., Christopher Allan Webber, 2021/10/19
- [Guile-commits] 19/36: compiler macros, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 21/36: use defsubst, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 28/36: deprecated eval-when situations, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 30/36: guile-backtrace function, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 25/36: only evaluate top-level macro definitions,
Christopher Allan Webber <=
- [Guile-commits] 33/36: ignore 'expect-fail' forms in elisp tests, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 34/36: temporarily disable elisp exception tests, Christopher Allan Webber, 2021/10/19
- [Guile-commits] 35/36: loader: Handle interned constants as well as plain bytevectors., Christopher Allan Webber, 2021/10/19