diff options
| author | Pierre-Marie Pédrot | 2014-03-02 00:03:37 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2014-03-02 19:44:53 +0100 |
| commit | 412f848e681e3c94c635f65638310a13d675449e (patch) | |
| tree | 36d45bcb29d26a770d231500882aa4bb1380ca7b /interp/notation_ops.ml | |
| parent | 26f47b04122e79b37bce0692e4d1f1559cfef700 (diff) | |
Removing generic equality in Syntax plugin.
Diffstat (limited to 'interp/notation_ops.ml')
| -rw-r--r-- | interp/notation_ops.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interp/notation_ops.ml b/interp/notation_ops.ml index 5066e2e225..f6afbe48a4 100644 --- a/interp/notation_ops.ml +++ b/interp/notation_ops.ml @@ -473,7 +473,7 @@ let rec subst_notation_constr subst bound raw = | _ -> knd in let nsolve = Option.smartmap (Genintern.generic_substitute subst) solve in - if nsolve == solve && nknd = knd then raw + if nsolve == solve && nknd == knd then raw else NHole (nknd, nsolve) | NCast (r1,k) -> |
