1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-27 13:30:31 +02:00

elisp @@ macro

(Best-ability ChangeLog annotation added by Christine Lemmer-Webber.)

* module/language/elisp/boot.el (@@): New macro.
This commit is contained in:
Robin Templeton 2014-08-04 23:06:59 -04:00 committed by Christine Lemmer-Webber
parent 9ef10e8c75
commit de52c1b0a1
No known key found for this signature in database
GPG key ID: 4BC025925FF8F4D3

View file

@ -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!)