ObjFW  Check-in [340ef20d81]

Overview
Comment:Fix Unicode table generator
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 340ef20d8176815eddd1370e0e68df42fe28cabe60470f66a8d363c7b11c4c8c
User & Date: js on 2014-06-18 13:11:03
Other Links: manifest | tags
Context
2014-06-18
13:12
Update Unicode to 7.0 check-in: 23ac92f416 user: js tags: trunk
13:11
Fix Unicode table generator check-in: 340ef20d81 user: js tags: trunk
12:54
Add OFSettings check-in: 1333634935 user: js tags: trunk
Changes

Modified generators/TableGenerator.m from [f2ce487543] to [9be66e19c9].

89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
	    [OFURL URLWithString: UNICODE_DATA_URL]];
	client = [OFHTTPClient client];
	response = [client performRequest: request];

	while ((line = [response readLine]) != nil) {
		void *pool2;
		OFArray *split;
		OFString **splitObjects;
		of_unichar_t codep;

		if ([line length] == 0)
			continue;

		pool2 = objc_autoreleasePoolPush();








|







89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
	    [OFURL URLWithString: UNICODE_DATA_URL]];
	client = [OFHTTPClient client];
	response = [client performRequest: request];

	while ((line = [response readLine]) != nil) {
		void *pool2;
		OFArray *split;
		OFString *const *splitObjects;
		of_unichar_t codep;

		if ([line length] == 0)
			continue;

		pool2 = objc_autoreleasePoolPush();

138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
	    [OFURL URLWithString: CASE_FOLDING_URL]];
	client = [OFHTTPClient client];
	response = [client performRequest: request];

	while ((line = [response readLine]) != nil) {
		void *pool2;
		OFArray *split;
		OFString **splitObjects;
		of_unichar_t codep;

		if ([line length] == 0 || [line hasPrefix: @"#"])
			continue;

		pool2 = objc_autoreleasePoolPush();








|







138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
	    [OFURL URLWithString: CASE_FOLDING_URL]];
	client = [OFHTTPClient client];
	response = [client performRequest: request];

	while ((line = [response readLine]) != nil) {
		void *pool2;
		OFArray *split;
		OFString *const *splitObjects;
		of_unichar_t codep;

		if ([line length] == 0 || [line hasPrefix: @"#"])
			continue;

		pool2 = objc_autoreleasePoolPush();