[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 26/37: top level fixes
From: |
Robin Templeton |
Subject: |
[Guile-commits] 26/37: top level fixes |
Date: |
Sun, 26 Jan 2025 18:17:47 -0500 (EST) |
bpt pushed a commit to branch wip-elisp-rebased
in repository guile.
commit 49c845c912df7068de7f3d068155ccaa6cbb40e4
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] 12/37: constant-interning fix, (continued)
- [Guile-commits] 12/37: constant-interning fix, Robin Templeton, 2025/01/26
- [Guile-commits] 14/37: restore special operator handling, Robin Templeton, 2025/01/26
- [Guile-commits] 17/37: elisp @@ macro, Robin Templeton, 2025/01/26
- [Guile-commits] 20/37: defsubst, Robin Templeton, 2025/01/26
- [Guile-commits] 21/37: use defsubst, Robin Templeton, 2025/01/26
- [Guile-commits] 18/37: defconst, defvar: proclaim special at compile-time, Robin Templeton, 2025/01/26
- [Guile-commits] 22/37: fset macro, Robin Templeton, 2025/01/26
- [Guile-commits] 27/37: execute top level require forms, Robin Templeton, 2025/01/26
- [Guile-commits] 28/37: deprecated eval-when situations, Robin Templeton, 2025/01/26
- [Guile-commits] 25/37: only evaluate top-level macro definitions, Robin Templeton, 2025/01/26
- [Guile-commits] 26/37: top level fixes,
Robin Templeton <=
- [Guile-commits] 29/37: use guile eval for elisp tree-il, Robin Templeton, 2025/01/26
- [Guile-commits] 31/37: use standard evaluator, Robin Templeton, 2025/01/26
- [Guile-commits] 32/37: update cross-compilation test, Robin Templeton, 2025/01/26
- [Guile-commits] 33/37: ignore 'expect-fail' forms in elisp tests, Robin Templeton, 2025/01/26
- [Guile-commits] 34/37: temporarily disable elisp exception tests, Robin Templeton, 2025/01/26
- [Guile-commits] 35/37: loader: Handle interned constants as well as plain bytevectors., Robin Templeton, 2025/01/26
- [Guile-commits] 23/37: eval-when, Robin Templeton, 2025/01/26
- [Guile-commits] 30/37: guile-backtrace function, Robin Templeton, 2025/01/26
- [Guile-commits] 37/37: remove uses of define-inlinable, Robin Templeton, 2025/01/26
- [Guile-commits] 36/37: elisp: boot: Replace removed FRAME-PROCEDURE with FRAME-PROCEDURE-NAME., Robin Templeton, 2025/01/26