Skip to content

Commit df446fa

Browse files
authored
Lispworks fix from mdbergmann
Fix compile error on LispWorks.
2 parents 1fae0f2 + 31e64b2 commit df446fa

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/data-frame.lisp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -563,11 +563,13 @@ After defining this method it is permanently associated with data-frame objects"
563563
;;; This violates the spec. It's not easy at all to get good
564564
;;; behaviour from describe. See code and comments in describe.lisp.
565565
#+allegro (setf excl:*enable-package-locked-errors* nil)
566+
#+lispworks (setf lw:*handle-warn-on-redefinition* :warn)
566567
(defmethod describe-object :after ((s symbol) stream)
567568
(unless (boundp s) (return-from describe-object))
568569
(unless (eq #+sbcl (SB-CLTL2:variable-information s)
569570
#+ccl (ccl:variable-information s)
570571
#+allegro (system:variable-information s)
572+
#+lispworks (hcl:variable-information s)
571573
:symbol-macro)
572574
(let ((*print-pretty* t)
573575
(df (symbol-value s))

0 commit comments

Comments
 (0)