diff options
author | Robin Templeton <robin@terpri.org> | 2014-08-04 23:11:43 -0400 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-04-04 16:24:57 +0200 |
commit | 04ad908ded70096875a882e534686e895cf08940 (patch) | |
tree | c00646db3b519e67ed081331ae12c5ade15f01eb /module | |
parent | 60540ec28872bd6c15ed1631489579aab47905b1 (diff) |
defsubst
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* module/language/elisp/boot.el (defsubst): New macro.
Diffstat (limited to 'module')
-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))) |