diff options
author | Robin Templeton <robin@terpri.org> | 2014-08-04 23:11:43 -0400 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-25 12:00:12 -0700 |
commit | 69b80315b53d237c048afaa9692fa96f1c0a3536 (patch) | |
tree | 7c3a3ec8b18af8997c87865c150b8439cadfb918 | |
parent | bf142ba6afbec5b724392108a7cf6122bd794ff4 (diff) | |
download | guile-69b80315b53d237c048afaa9692fa96f1c0a3536.tar.gz |
defsubst
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* module/language/elisp/boot.el (defsubst): New macro.
-rw-r--r-- | 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 fe9af290f..fae86a2bd 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))) |