[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 25/36: top level fixes
From: |
Robin Templeton |
Subject: |
[Guile-commits] 25/36: top level fixes |
Date: |
Sun, 26 Jan 2025 17:49:16 -0500 (EST) |
bpt pushed a commit to branch wip-elisp-rebased
in repository guile.
commit ca94fa53c5d59a45477acde57970b93a9cbbda00
Author: Robin Templeton <robin@terpri.org>
AuthorDate: Mon Aug 11 06:05:26 2014 -0400
top level fixes
(Best-ability ChangeLog annotation added by Christine Lemmer-Webber.)
* module/language/elisp/compile-tree-il.scm (compile-pair): Use
compile-expr-1 instead of compile-expr.
---
module/language/elisp/compile-tree-il.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/module/language/elisp/compile-tree-il.scm
b/module/language/elisp/compile-tree-il.scm
index 6c3f7bd98..b7df68d9f 100644
--- a/module/language/elisp/compile-tree-il.scm
+++ b/module/language/elisp/compile-tree-il.scm
@@ -836,14 +836,14 @@
(special-operator-function loc arguments)))
((find-operator operator 'macro)
=> (lambda (macro-function)
- (compile-expr (apply macro-function arguments))))
+ (compile-expr-1 (apply macro-function arguments))))
((and (symbol? operator)
(eget operator '%compiler-macro))
=> (lambda (compiler-macro-function)
(let ((new (compiler-macro-function expr)))
(if (eq? new expr)
(compile-expr `(%funcall (%function ,operator) ,@arguments))
- (compile-expr new)))))
+ (compile-expr-1 new)))))
(else
(compile-expr `(%funcall (%function ,operator) ,@arguments))))))
- [Guile-commits] 30/36: use standard evaluator, (continued)
- [Guile-commits] 30/36: use standard evaluator, Robin Templeton, 2025/01/26
- [Guile-commits] 08/36: read nil/t as #nil/#t, Robin Templeton, 2025/01/26
- [Guile-commits] 03/36: multiple obarrays, Robin Templeton, 2025/01/26
- [Guile-commits] 06/36: guile-snarf fix, Robin Templeton, 2025/01/26
- [Guile-commits] 22/36: eval-when, Robin Templeton, 2025/01/26
- [Guile-commits] 34/36: loader: Handle interned constants as well as plain bytevectors., Robin Templeton, 2025/01/26
- [Guile-commits] 26/36: execute top level require forms, Robin Templeton, 2025/01/26
- [Guile-commits] 32/36: ignore 'expect-fail' forms in elisp tests, Robin Templeton, 2025/01/26
- [Guile-commits] 16/36: elisp @@ macro, Robin Templeton, 2025/01/26
- [Guile-commits] 35/36: elisp: boot: Replace removed FRAME-PROCEDURE with FRAME-PROCEDURE-NAME., Robin Templeton, 2025/01/26
- [Guile-commits] 25/36: top level fixes,
Robin Templeton <=
- [Guile-commits] 29/36: guile-backtrace function, Robin Templeton, 2025/01/26
- [Guile-commits] 24/36: only evaluate top-level macro definitions, Robin Templeton, 2025/01/26
- [Guile-commits] 07/36: elisp updates, Robin Templeton, 2025/01/26
- [Guile-commits] 27/36: deprecated eval-when situations, Robin Templeton, 2025/01/26