Displaying 1 result from an estimated 1 matches for "calmate".
Did you mean:
alzate
2013 Jan 07
0
aspell(..., dictionaries) incorrectly passes double-quoted arguments via shell() [and a patch]
...characters [...]" in 'cmd /?'). Example:
% cmd /c R --slave -e "print(1:3)"
[1] 1 2 3
% cmd /c "R" --slave -e "print(1:3)"
'R" --slave -e "print' is not recognized as an internal or external command,
operable program or batch file.
x:\calmate,R-forge>cmd /c "R" --slave -e print(1:3)
[1] 1 2 3
x:\calmate,R-forge>cmd /c "R" --slave -e 'print(1:3)'
[1] "print(1:3)"
PATCH:
Because the the personal dictionary used by aspell() is passed via
tempfile("aspell_personal", tmpdir=tempdir())...