Differences From Artifact [dc1b68f1d7]:
- File src/windows_1252.m — part of check-in [0832fcf579] at 2017-01-10 23:23:40 on branch trunk — Add Mac OS Roman encoding (user: js, size: 3666) [annotate] [blame] [check-ins using]
To Artifact [836478cdf6]:
- File src/windows_1252.m — part of check-in [8480d9e9c8] at 2017-01-10 23:45:29 on branch trunk — Add missing files to Xcode project (user: js, size: 3672) [annotate] [blame] [check-ins using]
| ︙ | |||
146 147 148 149 150 151 152 | 146 147 148 149 150 151 152 153 154 155 156 157 158 | - + |
} else {
if OF_UNLIKELY (c >= 0x80 && c <= 0x9F) {
if (lossy)
output[i] = '?';
else
return false;
} else
|