X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fstubs.lisp;h=c2c35c25b939fc98b432e0433f8e38d2b64fa924;hb=fbe3701ca881999e1b17ad35f11d3b2c6b66bf99;hp=f54499ffc7f3d7fc7817963cacbc69afe4549b07;hpb=416152f084604094445a758ff399871132dff2bd;p=sbcl.git diff --git a/src/code/stubs.lisp b/src/code/stubs.lisp index f54499f..c2c35c2 100644 --- a/src/code/stubs.lisp +++ b/src/code/stubs.lisp @@ -13,14 +13,11 @@ (in-package "SB!IMPL") -(macrolet ((def-frob (name &optional (args '(x))) - `(defun ,name ,args (,name ,@args)))) - (def-frob %code-code-size) - (def-frob %code-debug-info) - (def-frob %code-entry-points) - (def-frob %funcallable-instance-function) - (def-frob %funcallable-instance-layout) - (def-frob %funcallable-instance-lexenv) - (def-frob %function-next) - (def-frob %function-self) - (def-frob %set-funcallable-instance-function (fin new-val))) +(macrolet ((def (name &optional (args '(x))) + `(defun ,name ,args (,name ,@args)))) + (def %caller-frame-and-pc ()) + (def %code-code-size) + (def %code-debug-info) + (def %code-entry-points) + (def %funcallable-instance-layout) + (def %set-funcallable-instance-layout (x new-value)))