Skip to content
Snippets Groups Projects
Commit 75286489 authored by Sebastian Krings's avatar Sebastian Krings
Browse files

wrap the content of the unit pragma in a list, to get closers to what happens for regular B

parent 0cf8520d
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,9 @@ public class UnitPragma implements IPragma { ...@@ -19,7 +19,9 @@ public class UnitPragma implements IPragma {
pout.printAtom("unit"); pout.printAtom("unit");
pout.printAtom(definedIn); pout.printAtom(definedIn);
pout.printAtom(attachedTo); pout.printAtom(attachedTo);
pout.openList();
pout.printAtom(content); pout.printAtom(content);
pout.closeList();
pout.closeTerm(); pout.closeTerm();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment