Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
George Pirlea
Iris
Commits
6ff1c18a
Commit
6ff1c18a
authored
Dec 27, 2016
by
Robbert Krebbers
Browse files
Make sure that `iIntros "*"` uses a fresh name.
parent
92024176
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/proofmode/tactics.v
View file @
6ff1c18a
...
...
@@ -755,7 +755,7 @@ Local Tactic Notation "iIntroForall" :=
lazymatch
goal
with
|
|-
∀
_
,
?P
=>
fail
|
|-
∀
_
,
_
=>
intro
|
|-
_
⊢
(
∀
x
:
_
,
_
)
=>
iIntro
(
x
)
|
|-
_
⊢
(
∀
x
:
_
,
_
)
=>
let
x'
:
=
fresh
x
in
iIntro
(
x
'
)
end
.
Local
Tactic
Notation
"iIntro"
:
=
try
iStartProof
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment