Skip to content

Commit

Permalink
made eval use ephemeral classloader in all cases
Browse files Browse the repository at this point in the history
  • Loading branch information
richhickey committed Jan 25, 2009
1 parent a6e7c94 commit a4142dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jvm/clojure/lang/Compiler.java
Expand Up @@ -4159,7 +4159,7 @@ static String errorMsg(String source, int line, String s){

public static Object eval(Object form) throws Exception{
boolean createdLoader = false;
if(!LOADER.isBound())
if(true)//!LOADER.isBound())
{
Var.pushThreadBindings(RT.map(LOADER, RT.makeClassLoader()));
createdLoader = true;
Expand Down

0 comments on commit a4142dc

Please sign in to comment.