summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Templeton <robin@terpri.org>2014-08-04 23:06:59 -0400
committerRicardo Wurmus <rekado@elephly.net>2020-04-04 16:24:57 +0200
commit412a0f22bc1c33fb7ebd4b95bb93d8aa6e359100 (patch)
treeafef17e32c71508ed36942240c629a801da65ae6
parentad4e5281efe8c535cdcc09d9367cf1af8545ac66 (diff)
elisp @@ macro
(Best-ability ChangeLog annotation added by Christopher Allan Webber.) * module/language/elisp/boot.el (@@): New macro.
-rw-r--r--module/language/elisp/boot.el3
1 files changed, 3 insertions, 0 deletions
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!)