We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
useBytes = TRUE
1 parent ec61d1c commit 456e9daCopy full SHA for 456e9da
NEWS.md
@@ -1,6 +1,8 @@
1
2
# vdiffr 0.3.0.9000
3
4
+- Fix warnings in non-UTF-8 MBCS locale (#59, @yutannihilation).
5
+
6
7
# vdiffr 0.3.0
8
R/utils.R
@@ -28,7 +28,7 @@ capitalise <- function(x) {
28
}
29
30
read_file <- function(file) {
31
- readChar(file, file.info(file)$size)
+ readChar(file, file.info(file)$size, useBytes = TRUE)
32
33
34
package_version <- function(pkg) {
0 commit comments