Skip to content

Commit

Permalink
fix use of defpurefun
Browse files Browse the repository at this point in the history
A defpurefun selector function was being declared in the top-level
module, and which used qualified names to access columns directly in the
bin module.  This should have actually been reported as a syntax error.
Instead, defun should be used and this changes it accordingly.
  • Loading branch information
DavePearce committed Jan 10, 2025
1 parent 8720bd5 commit e82cbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lookups/bin_into_binreftable.lisp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defpurefun (selector-bin-to-binreftable)
(defun (selector-bin-to-binreftable)
(+ bin.IS_AND bin.IS_OR bin.IS_XOR bin.IS_NOT))

(deflookup
Expand Down

0 comments on commit e82cbdf

Please sign in to comment.