guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 22/36: defsubst


From: Christopher Allan Webber
Subject: [Guile-commits] 22/36: defsubst
Date: Fri, 25 Mar 2016 20:03:47 +0000

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

commit 69b80315b53d237c048afaa9692fa96f1c0a3536
Author: Robin Templeton <address@hidden>
Date:   Mon Aug 4 23:11:43 2014 -0400

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

diff --git a/module/language/elisp/boot.el b/module/language/elisp/boot.el
index fe9af29..fae86a2 100644
--- a/module/language/elisp/boot.el
+++ b/module/language/elisp/boot.el
@@ -53,6 +53,19 @@
        (%funcall (@ (language elisp runtime) symbol-plist) ',name)))
      ',name))
 
+(defmacro defsubst (name args &rest body)
+  `(progn
+     (defun ,name ,args ,@body)
+     (eval-and-compile
+       (%define-compiler-macro ,name (form)
+         (%funcall (@ (guile) cons*)
+                   '%funcall
+                   (%funcall
+                    (@ (guile) list)
+                    'function
+                    (%funcall (@ (guile) cons*) 'lambda ',args ',body))
+                   (%funcall (@ (guile) cdr) form))))))
+
 (eval-and-compile
   (defun eval (form)
     (%funcall (@ (language elisp runtime) eval-elisp) form)))



reply via email to

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