From: Claudio Sacerdoti Coen Date: Mon, 21 Nov 2011 12:05:17 +0000 (+0000) Subject: Syntax change: change where what => change what where. X-Git-Tag: make_still_working~2068 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=6d5413dfe7cb3be64f7c014c891ac05553daeb02;p=helm.git Syntax change: change where what => change what where. --- diff --git a/matita/components/grafite_parser/grafiteParser.ml b/matita/components/grafite_parser/grafiteParser.ml index b616a824b..4ce915082 100644 --- a/matita/components/grafite_parser/grafiteParser.ml +++ b/matita/components/grafite_parser/grafiteParser.ml @@ -202,7 +202,7 @@ EXTEND G.NMacro(loc,G.Screenshot (loc, fname)) | IDENT "cases"; what = tactic_term ; where = pattern_spec -> G.NTactic(loc,[G.NCases (loc, what, where)]) - | IDENT "change"; what = pattern_spec; "with"; with_what = tactic_term -> + | IDENT "change"; "with"; with_what = tactic_term; what = pattern_spec -> G.NTactic(loc,[G.NChange (loc, what, with_what)]) | SYMBOL "-"; id = IDENT -> G.NTactic(loc,[G.NClear (loc, [id])])