Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tej Chajed
iris
Commits
623c2839
Commit
623c2839
authored
Apr 11, 2016
by
Robbert Krebbers
Browse files
Fix bug: iIntros "%" was doing the wrong thing.
parent
427a99c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
proofmode/tactics.v
View file @
623c2839
...
...
@@ -681,7 +681,7 @@ Tactic Notation "iIntros" constr(pat) :=
|
IName
?H
::
?pats
=>
iIntro
H
;
go
pats
|
IPersistent
IAnom
::
?pats
=>
let
H
:
=
iFresh
in
iIntro
#
H
;
go
pats
|
IAnom
::
?pats
=>
let
H
:
=
iFresh
in
iIntro
H
;
go
pats
|
IAnomPure
::
?pats
=>
i
Pure
Intro
;
go
pats
|
IAnomPure
::
?pats
=>
iIntro
{?}
;
go
pats
|
IPersistent
?pat
::
?pats
=>
let
H
:
=
iFresh
in
iIntro
#
H
;
iDestructHyp
H
as
pat
;
go
pats
|
?pat
::
?pats
=>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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