Brodie Gaslam
2022-May-19 22:55 UTC
[Rd] Rgui.exe: bug associated with non-ASCII characters
Is it possible you intended to use: c('p?', 'p?', 'p?', 'p?', 'p?') instead of: ('p?', 'p?', 'p?', 'p?', 'p?') Note the missing `c` in the second one.? That's just not a valid R expression. I don't use Rgui but if I just type (1,2) in my R terminal I get the same error. Best, B. On Thursday, May 19, 2022, 06:01:40 PM EDT, jcfaria <joseclaudio.faria at gmail.com> wrote: Hello, R devel R82368 1- Open Rgui.exe 2- New script (Rgui's built-in editor) 3- Type the below v1 <- ('p?', 'p?', 'p?', 'p?', 'p?') 4- Select the entire line and try to send using the shortcut CTRL+R> v1 <- ('p?', 'p?', 'p?', 'p?', '?')Error: unexpected ',' in "v1 <- ('p?',">5- If you try to select the entire text (CTRL+C) and to paste (CTRL+V) into the console:> v1 <- ('p?', 'p?', 'p?', 'p?', 'p?')Error: unexpected ',' in "v1 <- ('p?',">i.e. the same result, 6- Place the cursor at the beginning of the line and try to send it via CTRL+R> v1 <- ('p+ We have a problem there, don't we? Best, ///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ Jose Claudio Faria UESC/DCET/Brasil joseclaudio.faria at gmail.com Telefones: 55(73)3680.5545 - UESC 55(73)99966.9100 - VIVO ///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ If you have software to deal with statistics, you have arms, if you have good software, you have arms and legs, if you have software like R, you have arms, legs and wings... the height of your flight depends only on you. ??? [[alternative HTML version deleted]] ______________________________________________ R-devel at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-devel
Simon Urbanek
2022-May-19 23:50 UTC
[Rd] Rgui.exe: bug associated with non-ASCII characters
I think it was just a really confusing report (it took me a while to parse it), but I suspect the issue the poster tried to raise was the fact that <Ctrl><R> without selection apparently submits an incomplete line if non-ASCII chars are involved. All the steps 1-5 were correct behaviour, but 6 (submitting a line without selection) was not since it truncated the line at the non-ASCII character. Cheers, Simon> On 20/05/2022, at 10:55 AM, Brodie Gaslam via R-devel <r-devel at r-project.org> wrote: > > Is it possible you intended to use: > > c('p?', 'p?', 'p?', 'p?', 'p?') > > instead of: > > ('p?', 'p?', 'p?', 'p?', 'p?') > > Note the missing `c` in the second one. That's just not a valid R expression. > > I don't use Rgui but if I just type (1,2) in my R terminal I get the same error. > > Best, > > B. > > > > > > On Thursday, May 19, 2022, 06:01:40 PM EDT, jcfaria <joseclaudio.faria at gmail.com> wrote: > > > > > > Hello, > > R devel R82368 > > 1- Open Rgui.exe > 2- New script (Rgui's built-in editor) > 3- Type the below > > v1 <- ('p?', 'p?', 'p?', 'p?', 'p?') > > 4- Select the entire line and try to send using the shortcut CTRL+R > >> v1 <- ('p?', 'p?', 'p?', 'p?', '?') > Error: unexpected ',' in "v1 <- ('p?'," >> > > 5- If you try to select the entire text (CTRL+C) and to paste (CTRL+V) > into the console: > >> v1 <- ('p?', 'p?', 'p?', 'p?', 'p?') > Error: unexpected ',' in "v1 <- ('p?'," >> > > i.e. the same result, > > 6- Place the cursor at the beginning of the line and try to send it via > CTRL+R > >> v1 <- ('p > + > > We have a problem there, don't we? > > Best, > ///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ > Jose Claudio Faria > UESC/DCET/Brasil > joseclaudio.faria at gmail.com > Telefones: > 55(73)3680.5545 - UESC > 55(73)99966.9100 - VIVO > ///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ > If you have software to deal with statistics, you have arms, > if you have good software, you have arms and legs, > if you have software like R, you have arms, legs and wings... > the height of your flight depends only on you. > > [[alternative HTML version deleted]] > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel >
Sorry, I noticed the bug but I really forgot to add the "c", for combine arguments, when I wrote the email. In fact, adding "c" R accepts sending the selection and copy/paste, but it does not accept the sending with the cursor at the beginning of the line. v1 <- c('p?', 'p?', 'p?', 'p?', 'p?') Place the cursor at the beginning of the line and try to send it via CTRL+R > v1 <- c('p + Best, ///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ Jose Claudio Faria UESC/DCET/Brasil joseclaudio.faria at gmail.com Telefones: 55(73)3680.5545 - UESC 55(73)99966.9100 - VIVO ///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ If you have software to deal with statistics, you have arms, if you have good software, you have arms and legs, if you have software like R, you have arms, legs and wings... the height of your flight depends only on you. ------ Mensagem original ------ De: "Brodie Gaslam" <brodie.gaslam at yahoo.com> Para: "r-devel at r-project.org" <r-devel at r-project.org>; "jcfaria" <joseclaudio.faria at gmail.com> Enviado(s): 19/05/2022 19:55:17 Assunto: Re: [Rd] Rgui.exe: bug associated with non-ASCII characters>Is it possible you intended to use: > >c('p?', 'p?', 'p?', 'p?', 'p?') > >instead of: > >('p?', 'p?', 'p?', 'p?', 'p?') > >Note the missing `c` in the second one. That's just not a valid R expression. > >I don't use Rgui but if I just type (1,2) in my R terminal I get the same error. > >Best, > >B. > > > > > >On Thursday, May 19, 2022, 06:01:40 PM EDT, jcfaria <joseclaudio.faria at gmail.com> wrote: > > > > > >Hello, > >R devel R82368 > >1- Open Rgui.exe >2- New script (Rgui's built-in editor) >3- Type the below > >v1 <- ('p?', 'p?', 'p?', 'p?', 'p?') > >4- Select the entire line and try to send using the shortcut CTRL+R > >> v1 <- ('p?', 'p?', 'p?', 'p?', '?') >Error: unexpected ',' in "v1 <- ('p?'," >> > >5- If you try to select the entire text (CTRL+C) and to paste (CTRL+V) >into the console: > >> v1 <- ('p?', 'p?', 'p?', 'p?', 'p?') >Error: unexpected ',' in "v1 <- ('p?'," >> > >i.e. the same result, > >6- Place the cursor at the beginning of the line and try to send it via >CTRL+R > >> v1 <- ('p >+ > >We have a problem there, don't we? > >Best, >///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ >Jose Claudio Faria >UESC/DCET/Brasil >joseclaudio.faria at gmail.com >Telefones: >55(73)3680.5545 - UESC >55(73)99966.9100 - VIVO >///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\///\\\ >If you have software to deal with statistics, you have arms, >if you have good software, you have arms and legs, >if you have software like R, you have arms, legs and wings... >the height of your flight depends only on you. > > [[alternative HTML version deleted]] > >______________________________________________ >R-devel at r-project.org mailing list >https://stat.ethz.ch/mailman/listinfo/r-devel