diff options
| author | Pierre-Marie Pédrot | 2014-11-22 15:12:28 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2014-11-22 15:12:28 +0100 |
| commit | 714256f7dcc68642117013dfa7b3ff8a76e468b9 (patch) | |
| tree | 3396501cd0f349d78ac9f2a728f48ef692ae9743 /printing/printer.ml | |
| parent | 34921bb2391e8ce8b0fa00c300d218d2ef6f27e2 (diff) | |
Removing useless flag of the historical move tactic.
Diffstat (limited to 'printing/printer.ml')
| -rw-r--r-- | printing/printer.ml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/printing/printer.ml b/printing/printer.ml index 8a906b3f15..cda0403d97 100644 --- a/printing/printer.ml +++ b/printing/printer.ml @@ -696,9 +696,8 @@ let pr_prim_rule = function | Thin ids -> (str"clear " ++ pr_sequence pr_id ids) - | Move (withdep,id1,id2) -> - (str (if withdep then "dependent " else "") ++ - str"move " ++ pr_id id1 ++ Miscprint.pr_move_location pr_id id2) + | Move (id1,id2) -> + (str"move " ++ pr_id id1 ++ Miscprint.pr_move_location pr_id id2) (* Backwards compatibility *) |
