guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 19/36: elisp @@ macro


From: Christopher Allan Webber
Subject: [Guile-commits] 19/36: elisp @@ macro
Date: Fri, 25 Mar 2016 20:03:45 +0000

cwebber pushed a commit to branch wip-elisp
in repository guile.

commit 1d2aa4a9cf57ca74e83d50ca20d3a26ff41d9176
Author: Robin Templeton <address@hidden>
Date:   Mon Aug 4 23:06:59 2014 -0400

    elisp @@ macro
    
    (Best-ability ChangeLog annotation added by Christopher Allan Webber.)
    
    * module/language/elisp/boot.el (@@): New macro.
---
 module/language/elisp/boot.el |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/module/language/elisp/boot.el b/module/language/elisp/boot.el
index 3550b5b..bef4c1d 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!)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]