Browse Source

Fixed arguments to pushContext call.

Herbert Vojčík 12 years ago
parent
commit
9ea6ad3542
1 changed files with 1 additions and 1 deletions
  1. 1 1
      js/boot.js

+ 1 - 1
js/boot.js

@@ -542,7 +542,7 @@ function Smalltalk() {
 		}
 		method = klass ? klass.fn.prototype[selector] : receiver.klass && receiver[selector];
 		if(method) {
-			var context = pushContext(receiver, selector, method, args);
+			var context = pushContext(receiver, selector, args);
 			call = method.apply(receiver, args);
 			popContext(context);
 			return call;