Skip to content
Open
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
8 changes: 1 addition & 7 deletions src/smpl.mlg
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,6 @@ END
let pr_smpldb _prc _prlc _prt s = str s
}

ARGUMENT EXTEND smpldb
TYPED AS preident
PRINTED BY { pr_smpldb }
| [ preident(i) ] -> { let _ = smpl_db_exists i in i }

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

btw smpl_db_exists is unused after this

END

{
let rec is_opt_set opt opts =
match opts with
Expand Down Expand Up @@ -260,5 +254,5 @@ VERNAC COMMAND EXTEND SmplPrintAll CLASSIFIED AS QUERY
END

TACTIC EXTEND smpl
| [ "smpl" smpldb(db) uconstr_list(args) ] -> { smpl_tac db args }
| [ "smpl" preident(db) uconstr_list(args) ] -> { smpl_tac db args }
END