Skip to content
Snippets Groups Projects
Verified Commit 00d0f24f authored by "the Phoeron" Colin J.E. Lupton's avatar "the Phoeron" Colin J.E. Lupton
Browse files

Bug-fix, correct initarg name in pseudosymbol make-instance; increment version...

Bug-fix, correct initarg name in pseudosymbol make-instance; increment version to 1.0.3; update README.md with latest platform support
parent 6a47a224
Branches main
No related tags found
No related merge requests found
......@@ -156,20 +156,22 @@ Arrays allow lookup by a list of indices.
=> 4
```
## Support
## Platform Support
This library has been built and tested successfully on macOS using the following
Lisp implementations:
- LispWorks 8.0.0 (64-bit)
- SBCL 2.2.4
- LispWorks 8.0.1 (64-bit)
- Allegro CL 10.1
- SBCL 2.2.5
- Clozure-CL 1.12.1
- GNU CLISP 2.49.92
- ECL 21.2.1
- ABCL 1.9.0
And builds with warnings on:
And *does not build* due to dependency failure on:
- ABCL 1.9.0
- CLASP CL 1.0.0
## License
......
"1.0.2"
"1.0.3"
......@@ -52,7 +52,7 @@
(the-sym (find-symbol symbolname (package-name pkg))))
(make-instance 'pseudosymbol
:name (symbol-name the-sym)
:package (package-name (symbol-package the-sym))
:package-name (package-name (symbol-package the-sym))
:value (symbol-value the-sym)
:function (symbol-function the-sym)
:plist (symbol-plist the-sym))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment