BlockContext.st
changeset 154 d4236ec280a6
parent 92 0c73b48551ac
child 165 63341654cfb8
--- a/BlockContext.st	Thu Sep 29 21:38:11 1994 +0100
+++ b/BlockContext.st	Mon Oct 10 01:20:00 1994 +0100
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1993 by Claus Gittinger
               All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/BlockContext.st,v 1.7 1994-08-05 00:53:53 claus Exp $
+$Header: /cvs/stx/stx/libbasic/BlockContext.st,v 1.8 1994-10-10 00:19:46 claus Exp $
 '!
 
 !BlockContext class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/BlockContext.st,v 1.7 1994-08-05 00:53:53 claus Exp $
+$Header: /cvs/stx/stx/libbasic/BlockContext.st,v 1.8 1994-10-10 00:19:46 claus Exp $
 "
 !
 
@@ -98,7 +98,7 @@
 
     |nargs|
 
-    nargs := self nargs.
+    nargs := self numArgs.
     (nargs == 0) ifTrue:[^ #value].
     (nargs == 1) ifTrue:[^ #value:].
     (nargs == 2) ifTrue:[^ #value:value:].