Skip to content

Commit

Permalink
fix: proper external package for sb-int:once-only (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
hraban authored Jun 7, 2024
1 parent c472ff7 commit 67eca70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/port.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
`(if (null ,x) 0 (cl:length ,x))))
#+sbcl
(defmacro length-nv (x)
(sb-ext::once-only ((x x))
(sb-int:once-only ((x x))
`(if (null ,x) 0 (cl:length ,x))))
#-(or cmu scl sbcl)
(defmacro length-nv (x)
Expand Down

0 comments on commit 67eca70

Please sign in to comment.