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

fix #1371 #1372

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tools/Holmake/HolLex
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ fun parseDecls (STATE {parseError, pardepth, ...}) continue pos test = let
| CloseParen p => cont (p, ")") false
| EndTok p => cont (p, "End") true
| QED p => cont (p, "QED") true
| ProofLine pt => cont pt false
| TerminationTok p => cont (p, "Termination") false
| EOF p => (finish p, NONE, p, SOME tk)
| _ => raise Unreachable
end
Expand Down
4 changes: 4 additions & 0 deletions tools/Holmake/tests/gh1371/Holmakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
gh1371.log: doit.sh bugScript.sml
$(tee ./doit.sh $(protect $(HOLDIR)/bin/unquote), $@)

EXTRA_CLEANS = gh1371.log
13 changes: 13 additions & 0 deletions tools/Holmake/tests/gh1371/bugScript.sml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
val _ = new_theory "bug"

Theorem foo:
foo
Proof
foo [``]
QED

Theorem bar:
bar
Proof
bar
QED
13 changes: 13 additions & 0 deletions tools/Holmake/tests/gh1371/doit.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

ulimit -t 2
unquote=$1

echo "Running unquote"
$unquote < bugScript.sml

retcode=$?
echo
echo "unquote completed with code $retcode"

exit $retcode
Loading