Displaying 1 result from an estimated 1 matches for "rstd_writeerrconsole".
2005 Oct 17
1
RFC: API to allow identification of warnings and errors in the output stream
..."output" and "message", there is the
distinction between Rprintf/Rvprintf and REprintf/REvprintf. This basically
just carries this distinction over to the interface pointers.
You will note that I wrote
ptr_R_WriteErrConsole = R_WriteConsole;
instead of
ptr_R_WriteErrConsole = Rstd_WriteErrConsole;
or
ptr_R_WriteErrConsole = ptr_R_WriteConsole;
This way, code that currently overrides ptr_R_WriteConsole, but does not know
about ptr_R_WriteErrConsole, will still receive all output in
ptr_R_WriteConsole. Hence this change is perfectly backwards compatible.
Of course, the naming may not be per...