Skip to content

Commit

Permalink
Fix for eq! typing in stdlib.lisp (#145)
Browse files Browse the repository at this point in the history
This puts through a simple fix for the standard library.
  • Loading branch information
DavePearce authored May 16, 2024
1 parent 9a3ca95 commit c8696bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

(defpurefun ((not :binary@bool :force) (x :binary)) (- 1 x))

(defpurefun ((eq! :binary@loob :force) x y) (~>> (-. x y)))
(defpurefun ((eq! :@loob :force) x y) (~>> (-. x y)))
(defpurefun ((neq! :binary@loob :force) x y) (not (~ (eq! x y))))
(defunalias = eq!)

Expand Down

0 comments on commit c8696bb

Please sign in to comment.