Browse Source

apply --each to last compilation step (fixed issue #1155)

Simon Krajewski 13 years ago
parent
commit
54bd3d9233
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main.ml

+ 1 - 1
main.ml

@@ -390,7 +390,7 @@ let rec process_params create pl =
 	let each_params = ref [] in
 	let rec loop acc = function
 		| [] ->
-			let ctx = create (List.rev acc) in
+			let ctx = create (!each_params @ (List.rev acc)) in
 			init ctx;
 			ctx.flush()
 		| "--next" :: l ->