Displaying 1 result from an estimated 1 matches for "rtmpqfmyh8".
2007 May 31
0
feature request for page() and options()
...e.g.
page(ls)
The problem in this case is that the pager has no way of knowing
whether the file it is showing contains R code (e.g. page(,
method="print") need not produce valid R code); the name of the file
is always produced by tempfile("Rpage."), so it looks like
"/tmp/RtmpQfmyH8/Rpage.4a43d33f".
A simple solution is to use an appropriate file extension. Here's a
trivial patch that implements this:
Index: src/library/utils/R/page.R
===================================================================
--- src/library/utils/R/page.R (revision 41765)
+++ src/library/...