Displaying 2 results from an estimated 2 matches for "siouxsie".
2009 Jan 07
1
Parse-Error creates strange function calls (completely different printouts) (PR#13436)
...he function seems to be
called more than once!
I just added a line, which prints some data,
but then the printouts were completely different than
expected; and when commenting the new stuff out,
the OK-behaviour came back.
Here a diff of the code:
=====================================
oliver at siouxsie:~/R-BUG$ diff ok.R buggy.R
64c64
< res.txt <- paste(# "\n\n Anzahl der Messungen:", sample_times, "\n",
---
> res.txt <- paste("\n\n Anzahl der Messungen:", sample_times, "\n",
oliver at siouxsie:~/R-BUG$
====================================...
2009 Jan 08
0
Parse-Error creates strange function calls (completely different (PR#13438)
...> I just added a line, which prints some data,
> but then the printouts were completely different than
> expected; and when commenting the new stuff out,
> the OK-behaviour came back.
>
>
> Here a diff of the code:
>
> =====================================
> oliver at siouxsie:~/R-BUG$ diff ok.R buggy.R
> 64c64
> < res.txt <- paste(# "\n\n Anzahl der Messungen:", sample_times, "\n",
> ---
>
>> res.txt <- paste("\n\n Anzahl der Messungen:", sample_times, "\n",
>>
> oliver at siouxsie:...