Both bugs should now be fixed in R-devel. The first one was causing the
difference between the first and the following element. The second one
was causing the printing of unnecessary backticks, inconsistently with
Unix systems.
Best
Tomas
On 07/30/2018 09:32 AM, Martin Maechler wrote:
Wil
> William Dunlap via R-devel
> on Sun, 29 Jul 2018 10:06:40 -0700 writes:
> Bugzilla issue 16101 describes another
> first-list-name-printed-differently oddity with
> the Windows GUI version of R:
Indeed:
1) "first-list-name-pri
Bugzilla issue 16101 describes another first-list-name-printed-differently
oddity
with the Windows GUI version of R:
> a <- "One is \u043E\u0434\u0438\u043D\nTwo is \u0434\u0432\u0430\n"
> Encoding(a) # expect "UTF-8"
[1] "UTF-8"
> sapply(strsplit(a, "\n")[[1]], charToRaw)[c(1,1,2)]
$`One is один`
> On Jul 29, 2018, at 6:31 AM, Gabor Grothendieck
> wrote:
>
> The first component name has backticks around it and the second does
> not. Though not wrong, it seems inconsistent.
>
> list(a = 1, b = 2)
> ## $`a`
> ## [1] 1
> ##
> ## $b
> ## [1] 2
>
> R.version.string
> ## [1] "R version 3.5