Skip to content

Commit

Permalink
extend-vector: Use interned symbol for +not-supplied+
Browse files Browse the repository at this point in the history
  • Loading branch information
privet-kitty committed Nov 12, 2023
1 parent 442be27 commit f829233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/extend-vector.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

(defconstant +not-supplied+ (if (boundp '+not-supplied+)
(symbol-value '+not-supplied+)
(make-symbol "NOT-SUPPLIED")))
'not-supplied))

(define-modify-macro extend-vectorf (new-size &optional (initial-element '+not-supplied+))
(lambda (vector new-size initial-element)
Expand Down

0 comments on commit f829233

Please sign in to comment.