search for: 10xxxxx

Displaying 2 results from an estimated 2 matches for "10xxxxx".

Did you mean: _0xxxxx
2014 Dec 11
3
SUGGESTION: Force install.packages() to use ASCII encoding when parse():ing code?
...bit pattern for raw[3:5], is: > R.utils::intToBin(raw[3:5]) [1] "11101001" "01110100" "01110101" The first byte (raw[3]) matched special UTF-8 byte pattern "1110xxxx", which according to UTF-8 should be followed by two more bytes with bit patterns "10xxxxxx" and "10xxxxx" [http://en.wikipedia.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 s...
2014 Dec 11
0
SUGGESTION: Force install.packages() to use ASCII encoding when parse():ing code?
...t; > > R.utils::intToBin(raw[3:5]) > [1] "11101001" "01110100" "01110101" > > The first byte (raw[3]) matched special UTF-8 byte pattern "1110xxxx", > which according to UTF-8 should be followed by two more bytes with bit > patterns "10xxxxxx" and "10xxxxx" > [http://en.wikipedia.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,...