You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 14, 2021. It is now read-only.
This issue was reported by Péter Salvi via e-mail (thanks Péter!).
SUB-RESOLVE-SELECTION and SUB-DIMENSION both specialize on fixnum, which is not a class that is guaranteed to exist by the standard and is not present in eg ECL or CLISP.
Péter's suggestion: read-time conditionals, eg #+(or ecl clisp) integer #-(or ecl clisp) fixnum. Probably I would just use integer.
However, the issue is moot since I will soon remove SUB as it is superseded by CL-SLICE:SLICE.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This issue was reported by Péter Salvi via e-mail (thanks Péter!).
SUB-RESOLVE-SELECTION
andSUB-DIMENSION
both specialize onfixnum
, which is not a class that is guaranteed to exist by the standard and is not present in egECL
orCLISP
.Péter's suggestion: read-time conditionals, eg
#+(or ecl clisp) integer #-(or ecl clisp) fixnum
. Probably I would just useinteger
.However, the issue is moot since I will soon remove
SUB
as it is superseded byCL-SLICE:SLICE
.The text was updated successfully, but these errors were encountered: