Skip to content

Commit

Permalink
Bug-fix, correct initarg name in pseudosymbol make-instance; incremen…
Browse files Browse the repository at this point in the history
…t version to 1.0.3; update README.md with latest platform support
  • Loading branch information
thephoeron committed Jul 2, 2022
1 parent 6a47a22 commit 00d0f24
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions README.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
"1.0.2"
"1.0.3"
2 changes: 1 addition & 1 deletion generalized-reference.lisp
Expand Up @@ -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))))
Expand Down

0 comments on commit 00d0f24

Please sign in to comment.