mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-06-01 17:52:14 +00:00
* EOControl/EOQualifier.m (getKey): Fix parsing of 'nil'
EOKeyValueQualifiers. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@22157 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a0cdfdc4d9
commit
e13af57d12
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-12-05 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOQualifier.m (getKey): Fix parsing of 'nil'
|
||||
EOKeyValueQualifiers.
|
||||
|
||||
2005-11-30 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOQualifier.m (cimSEL, spaceSet, alnumSet, digitSet)
|
||||
|
|
|
@ -246,9 +246,9 @@ getKey(const unichar **cFormat,
|
|||
|
||||
if ((*s)[0] == 'n' && (*s)[1] == 'i' && (*s)[2] == 'l')
|
||||
{
|
||||
unichar value = *(*s+3);
|
||||
unichar value = (*s)[3];
|
||||
|
||||
if (value == 0 || value == ' ')
|
||||
if (value != '_' && !alnumCIM(alnumSet,cimSEL,value))
|
||||
{
|
||||
*cFormat = *s = *s+3;
|
||||
*isKeyValue = YES;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue