Browse Source

fix mega-stupid addClassPath macro bug

Simon Krajewski 8 years ago
parent
commit
5db1d5ecb6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/macro/macroApi.ml

+ 1 - 1
src/macro/macroApi.ml

@@ -1750,7 +1750,7 @@ let macro_api ccom get_api =
 			com.class_path <- cp :: com.class_path;
 			(match com.get_macros() with
 			| Some(mcom) ->
-				mcom.class_path <- cp :: com.class_path;
+				mcom.class_path <- cp :: mcom.class_path;
 			| None ->
 				());
 			Hashtbl.clear com.file_lookup_cache;