We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1fae0f2 + 31e64b2 commit df446faCopy full SHA for df446fa
1 file changed
src/data-frame.lisp
@@ -563,11 +563,13 @@ After defining this method it is permanently associated with data-frame objects"
563
;;; This violates the spec. It's not easy at all to get good
564
;;; behaviour from describe. See code and comments in describe.lisp.
565
#+allegro (setf excl:*enable-package-locked-errors* nil)
566
+#+lispworks (setf lw:*handle-warn-on-redefinition* :warn)
567
(defmethod describe-object :after ((s symbol) stream)
568
(unless (boundp s) (return-from describe-object))
569
(unless (eq #+sbcl (SB-CLTL2:variable-information s)
570
#+ccl (ccl:variable-information s)
571
#+allegro (system:variable-information s)
572
+ #+lispworks (hcl:variable-information s)
573
:symbol-macro)
574
(let ((*print-pretty* t)
575
(df (symbol-value s))
0 commit comments