Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LispWorks 8 for structure serialization #54

Merged
merged 1 commit into from
Oct 6, 2023

Conversation

louis77
Copy link
Contributor

@louis77 louis77 commented Oct 4, 2023

MOP for structure-objects is supported for CLOSER-MOP + LispWorks 8.

It might be supported for earlier versions of LispWorks, but since they are not supported by CLOSER-MOP, I've added the lispworks8 feature explicitly.

I've tested the change with my LispWorks 8 (8.0.1 on macOS) installation successfully:

(defstruct my-struct a b c)
=> MY-STRUCT

(setq inst (make-my-struct :a 1 :b 2 :c "the letter c"))
=> #S(MY-STRUCT :A 1 :B 2 :C "the letter c")

(jzon:stringify inst)
=> "{\"a\":1,\"b\":2,\"c\":\"the letter c\"}"

@Zulu-Inuoe Zulu-Inuoe merged commit 0837110 into Zulu-Inuoe:develop Oct 6, 2023
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants