summaryrefslogtreecommitdiff
path: root/theories
diff options
context:
space:
mode:
authorGravatar Stephane Glondu <steph@glondu.net>2008-09-08 00:15:04 +0200
committerGravatar Stephane Glondu <steph@glondu.net>2008-09-08 00:16:06 +0200
commit5c6894942e4de978963144606e89db432c306625 (patch)
treea8f1fe2e658c9ba460f1c9af99393d9af21b2dfd /theories
parent745e0fb3b3bc4c435870f1af25c22d495fac9f29 (diff)
parent113b703a695acbe31ac6dd6a8c4aa94f6fda7545 (diff)
Merge commit 'upstream/8.2.beta4.svn20080907+dfsg'
Diffstat (limited to 'theories')
-rw-r--r--theories/FSets/FMapFacts.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/FSets/FMapFacts.v b/theories/FSets/FMapFacts.v
index 94444f5b..05cd1892 100644
--- a/theories/FSets/FMapFacts.v
+++ b/theories/FSets/FMapFacts.v
@@ -6,7 +6,7 @@
(* * GNU Lesser General Public License Version 2.1 *)
(***********************************************************************)
-(* $Id: FMapFacts.v 11282 2008-07-28 11:51:53Z msozeau $ *)
+(* $Id: FMapFacts.v 11359 2008-09-04 09:43:36Z notin $ *)
(** * Finite maps library *)
@@ -975,7 +975,7 @@ Module WProperties (E:DecidableType)(M:WSfun E).
fold (fun k e b => if f k e then true else b) m false.
Definition partition (f : key -> elt -> bool)(m : t elt) :=
- (filter f m, filter (fun k e => negb (f k e))).
+ (filter f m, filter (fun k e => negb (f k e)) m).
Section Specs.
Variable f : key -> elt -> bool.