Skip to content

Commit

Permalink
remove redundant rack read
Browse files Browse the repository at this point in the history
  • Loading branch information
Bike committed Aug 12, 2024
1 parent e9ea628 commit ececece
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lisp/kernel/clos/change.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
(let ((old-rack (si:instance-rack instance))
(new-rack (make-rack-for-class (class-of instance))))
(multiple-value-bind (added-slots discarded-slots property-list)
(update-instance-aux (si:instance-rack instance) new-rack)
(update-instance-aux old-rack new-rack)
(setf (si:instance-rack instance) new-rack)
;; If U-I-F-R-C signals an error or otherwise nonlocally exits, roll back
;; the instance. This does not seem to be required by the standard, but
Expand Down

0 comments on commit ececece

Please sign in to comment.