From cf4b6d8c25784e41bde05c0e5e26b202fde09735 Mon Sep 17 00:00:00 2001 From: Mark <evenson@panix.com> Date: Mon, 17 Feb 2014 09:35:04 +0100 Subject: [PATCH] abcl: DESCRIBE-DEFINTION now works for macros. --- ChangeLog | 4 ++++ swank-abcl.lisp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 07911f3c..b552138e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-02-17 Mark Evenson <evenson@panix.com> + + * swank-abcl.lisp (describe-definition): Describe macros. + 2014-02-11 Jo茫o T谩vora <joaotavora@gmail.com> * slime-tests.el (slime-test-recipe-test-for): Simplify and make diff --git a/swank-abcl.lisp b/swank-abcl.lisp index 737249d1..12c92401 100644 --- a/swank-abcl.lisp +++ b/swank-abcl.lisp @@ -299,7 +299,7 @@ (defimplementation describe-definition (symbol namespace) (ecase namespace - (:variable + ((:variable :macro) (describe symbol)) ((:function :generic-function) (describe (symbol-function symbol))) -- GitLab