Displaying 2 results from an estimated 2 matches for "11xxxxx".
Did you mean:
110xxxxx
2014 Dec 11
3
SUGGESTION: Force install.packages() to use ASCII encoding when parse():ing code?
...ikipedia.org/wiki/UTF-8#Description]. Since raw[4:5] does
not match those, it's an invalid UTF-8 byte sequence. So, technically
this does not happen for all comments using acute accents, but it's
very likely. More generally, a multi-byte UTF-8 sequence is expected
when byte pattern "11xxxxx" (>= 192 in decimal values) is encountered.
Looking http://en.wikipedia.org/wiki/ISO/IEC_8859, there are several
characters with this bit pattern for many "Latin-N" encodings, which
I'd assume is still in dominant use by many developers.
So, since options(encoding="UTF-8...
2014 Dec 11
0
SUGGESTION: Force install.packages() to use ASCII encoding when parse():ing code?
...F-8#Description]. Since raw[4:5] does
> not match those, it's an invalid UTF-8 byte sequence. So, technically
> this does not happen for all comments using acute accents, but it's
> very likely. More generally, a multi-byte UTF-8 sequence is expected
> when byte pattern "11xxxxx" (>= 192 in decimal values) is encountered.
> Looking http://en.wikipedia.org/wiki/ISO/IEC_8859, there are several
> characters with this bit pattern for many "Latin-N" encodings, which
> I'd assume is still in dominant use by many developers.
>
> So, since opti...