]> matita.cs.unibo.it Git - helm.git/commitdiff
order is important
authorEnrico Tassi <enrico.tassi@inria.fr>
Wed, 26 Jul 2006 08:35:34 +0000 (08:35 +0000)
committerEnrico Tassi <enrico.tassi@inria.fr>
Wed, 26 Jul 2006 08:35:34 +0000 (08:35 +0000)
components/tactics/continuationals.ml

index c6e4f0c1841fb68814a7632218e13cfc068b5dbf..93695fa9312d6a1398f76d162c264a9e3edc2de7 100644 (file)
@@ -332,7 +332,7 @@ struct
       | Shift, _ -> fail (lazy "can't shift goals here")
       | Pos i_s, ([ loc ], t, [],`BranchTag) :: (g', t', k', tag) :: s
         when is_fresh loc ->
-          let l_js = List.filter (fun (i, _) -> List.mem i i_s) (g' @+ [loc]) in
+          let l_js = List.filter (fun (i, _) -> List.mem i i_s) ([loc] @+ g') in
           new_stack
             ((l_js, t , [],`BranchTag)
              :: (([ loc ] @+ g') @- l_js, t', k', tag) :: s)