mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
1bcdd1cab3
commit
796dcacd54
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>
|
||||
|
||||
* Source/GNUmakefile: install DistributedObjects.h in gnustep/base
|
||||
|
|
|
@ -141,7 +141,8 @@ static void setupQuotables()
|
|||
NSData *bitmap;
|
||||
|
||||
s = [[NSCharacterSet characterSetWithCharactersInString:
|
||||
@"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz$./_"]
|
||||
@"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
@"abcdefghijklmnopqrstuvwxyz!#$%&*+-./:?@|~_^"]
|
||||
mutableCopy];
|
||||
[s invert];
|
||||
quotables = [s copy];
|
||||
|
|
Loading…
Reference in a new issue