diff options
author | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2017-10-19 16:25:40 +0200 |
---|---|---|
committer | Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr> | 2017-10-19 16:25:40 +0200 |
commit | 56b562e057bbce736786cf1df16ba6e40dde8f30 (patch) | |
tree | 79385990b1998ec93e2f23b12a7c15ddff3f473d /theories | |
parent | fb1478d2cd59991e8d2fc2e07dacad505ef110b7 (diff) |
Moving bug numbers to BZ# format in the source code.
Compared to the original proposition (01f848d in #960), this commit
only changes files containing bug numbers that are also PR numbers.
Diffstat (limited to 'theories')
-rw-r--r-- | theories/Init/Tauto.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Init/Tauto.v b/theories/Init/Tauto.v index 886533586..87b7a9a3b 100644 --- a/theories/Init/Tauto.v +++ b/theories/Init/Tauto.v @@ -27,7 +27,7 @@ Local Ltac simplif flags := | id: ?X1 |- _ => is_disj flags X1; elim id; intro; clear id | id0: (forall (_: ?X1), ?X2), id1: ?X1|- _ => (* generalize (id0 id1); intro; clear id0 does not work - (see Marco Maggiesi's bug PR#301) + (see Marco Maggiesi's BZ#301) so we instead use Assert and exact. *) assert X2; [exact (id0 id1) | clear id0] | id: forall (_ : ?X1), ?X2|- _ => |