Skip to content

Commit 3e994dc

Browse files
committed
Fix
1 parent c57b9e9 commit 3e994dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/clos/std-object.lisp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@
244244

245245
(defun built-in-class-of (x)
246246
(typecase x
247-
(null (find-class 'null))
248-
(hash-table (find-class 'hash-table))
249-
(structure (find-class 'structure))
247+
(null (!find-class 'null))
248+
(hash-table (!find-class 'hash-table))
249+
(structure (!find-class 'structure))
250250
(symbol (!find-class 'symbol))
251251
(integer (!find-class 'integer))
252252
(float (!find-class 'float))

0 commit comments

Comments
 (0)