mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-21 02:31:01 +00:00
Add missing nil terminator to argument list of arrayWithObjects.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@38116 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a58da09aa0
commit
8b6c53712c
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2014-10-14 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* STBlock.m (value:value:):
|
||||
* STBlock.m (value:value:value:):
|
||||
Add missing nil terminator to argument list of arrayWithObjects.
|
||||
|
||||
2014-09-09 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* STCompiler.m (setReceiverVariables:):
|
||||
|
|
|
@ -90,12 +90,12 @@ Class STBlockContextClass = nil;
|
|||
|
||||
- value:arg1 value:arg2
|
||||
{
|
||||
return [self valueWithArguments:[NSArray arrayWithObjects:arg1,arg2]];
|
||||
return [self valueWithArguments:[NSArray arrayWithObjects:arg1,arg2,nil]];
|
||||
}
|
||||
|
||||
- value:arg1 value:arg2 value:arg3
|
||||
{
|
||||
return [self valueWithArguments:[NSArray arrayWithObjects:arg1,arg2,arg3]];
|
||||
return [self valueWithArguments:[NSArray arrayWithObjects:arg1,arg2,arg3,nil]];
|
||||
}
|
||||
|
||||
- valueWith:arg
|
||||
|
|
Loading…
Reference in a new issue