diff options
| author | Emilio Jesus Gallego Arias | 2018-12-25 19:53:50 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-12-25 19:53:50 +0100 |
| commit | 599696d804eb7c40661615a49c5d729e7d6ff373 (patch) | |
| tree | 8d74c5c301a09430c3bd23900e46d9bb8f18e317 /interp/constrextern.ml | |
| parent | ad5fb5a948bdfd408b825e2bdf0ee4ba6b91f395 (diff) | |
| parent | 7c1b36356c14b2571b5cb559d09586839703c660 (diff) | |
Merge PR #9249: Fixing printing bug due to using equality wrongly checking hash keys of kernel names (or checking wrong hash keys?)
Diffstat (limited to 'interp/constrextern.ml')
| -rw-r--r-- | interp/constrextern.ml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/interp/constrextern.ml b/interp/constrextern.ml index 0d0b6158d9..444ac5ab6d 100644 --- a/interp/constrextern.ml +++ b/interp/constrextern.ml @@ -67,10 +67,7 @@ let print_no_symbol = ref false (**********************************************************************) (* Turning notations and scopes on and off for printing *) -module IRuleSet = Set.Make(struct - type t = interp_rule - let compare x y = Pervasives.compare x y - end) +module IRuleSet = InterpRuleSet let inactive_notations_table = Summary.ref ~name:"inactive_notations_table" (IRuleSet.empty) |
