mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +00:00
Extend range of characters valid in unquoted string in property list.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@11030 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4177213d01
commit
553d92634d
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2001-09-27 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSString: setupQuotables() ... add several characters to the
|
||||||
|
set of those valid in an unquoted string ... so read back of NSNumber
|
||||||
|
values encoded as strings works ... problem reported by Rene Cornilis.
|
||||||
|
|
||||||
2001-09-26 Richard Frith-Macdonald <rfm@gnu.org>
|
2001-09-26 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/GNUmakefile: install DistributedObjects.h in gnustep/base
|
* Source/GNUmakefile: install DistributedObjects.h in gnustep/base
|
||||||
|
|
|
@ -141,7 +141,8 @@ static void setupQuotables()
|
||||||
NSData *bitmap;
|
NSData *bitmap;
|
||||||
|
|
||||||
s = [[NSCharacterSet characterSetWithCharactersInString:
|
s = [[NSCharacterSet characterSetWithCharactersInString:
|
||||||
@"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz$./_"]
|
@"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||||
|
@"abcdefghijklmnopqrstuvwxyz!#$%&*+-./:?@|~_^"]
|
||||||
mutableCopy];
|
mutableCopy];
|
||||||
[s invert];
|
[s invert];
|
||||||
quotables = [s copy];
|
quotables = [s copy];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue