[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 17/37: elisp @@ macro
From: |
Robin Templeton |
Subject: |
[Guile-commits] 17/37: elisp @@ macro |
Date: |
Sun, 26 Jan 2025 18:17:45 -0500 (EST) |
bpt pushed a commit to branch wip-elisp-rebased
in repository guile.
commit de52c1b0a1e5823af31ce2ee6fbd7eee04f31a5b
Author: Robin Templeton <robin@terpri.org>
AuthorDate: Mon Aug 4 23:06:59 2014 -0400
elisp @@ macro
(Best-ability ChangeLog annotation added by Christine Lemmer-Webber.)
* module/language/elisp/boot.el (@@): New macro.
---
module/language/elisp/boot.el | 3 +++
1 file changed, 3 insertions(+)
diff --git a/module/language/elisp/boot.el b/module/language/elisp/boot.el
index 3550b5b41..bef4c1d7c 100644
--- a/module/language/elisp/boot.el
+++ b/module/language/elisp/boot.el
@@ -22,6 +22,9 @@
(defmacro @ (module symbol)
`(guile-ref ,module ,symbol))
+(defmacro @@ (module symbol)
+ `(guile-private-ref ,module ,symbol))
+
(defmacro defun (name args &rest body)
`(let ((proc (function (lambda ,args ,@body))))
(%funcall (@ (language elisp runtime) set-symbol-function!)
- [Guile-commits] 13/37: define-module for elisp special modules, (continued)
- [Guile-commits] 13/37: define-module for elisp special modules, Robin Templeton, 2025/01/26
- [Guile-commits] 15/37: fix symbol-function, Robin Templeton, 2025/01/26
- [Guile-commits] 16/37: compile-elisp fn, Robin Templeton, 2025/01/26
- [Guile-commits] 19/37: compiler macros, Robin Templeton, 2025/01/26
- [Guile-commits] 24/37: degenerate let forms, Robin Templeton, 2025/01/26
- [Guile-commits] 11/37: defvar affects default value, Robin Templeton, 2025/01/26
- [Guile-commits] 01/37: Remove CFLAGS from snarfcppopts., Robin Templeton, 2025/01/26
- [Guile-commits] 02/37: intern arbitrary constants, Robin Templeton, 2025/01/26
- [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 <=
- [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, 2025/01/26
- [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