Skip to content

Commit dd1c017

Browse files
author
ripley
committed
updates after comments from Kurt
git-svn-id: https://svn.r-project.org/R-dev-web/trunk@1257 c52295ea-58df-0310-926a-d16021944841
1 parent e853f22 commit dd1c017

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

170update.txt

+9-11
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ print.matrix() only exists for backwards compatibility: it is the same
3434
as print.default(). Very likely print.matrix was used for the
3535
right=TRUE argument that S's print.default does not have, but this is
3636
unnecessary. If you want the call sequence of print.matrix, use prmatrix
37-
instead. Also, note that print(.default) prints the attributes of the matrix
37+
instead. Also, note that print prints the attributes of the matrix
3838
whereas prmatrix does not.
3939

4040

@@ -62,8 +62,8 @@ data.class() reports "numeric" for integer vectors.)
6262
]
6363

6464
Unless the package makes use of setMethod (methods), loading can be
65-
speeded up by having an object called .noGenerics (with any value) in
66-
the package.
65+
speeded up (unless `methods' is not loaded) by having an object called
66+
.noGenerics (with any value) in the package.
6767

6868

6969
Namespaces
@@ -82,7 +82,8 @@ documentation is in `Writing R Extensions'.
8282
Other changes
8383
-------------
8484

85-
The default random number generators have been changed.
85+
The default random number generators have been changed: see the NEWS
86+
file and ?RNGversion.
8687

8788

8889
solve.default() now uses LAPACK by default, and works as documented,
@@ -95,19 +96,16 @@ qr() and qr.solve() for those.
9596

9697
Packages should not execute code with side effects in their .R files.
9798
If you have require() or options() statements at the top level in such
98-
files, please move them to .First.lib. This is necessary for the
99-
experiments with saving objects in databases, a feature planned for
100-
1.8.x.
99+
files, please move them to .First.lib (or .onLoad if a namespace is in
100+
use for the package). This is necessary for the experiments with
101+
saving objects in databases, a feature planned for 1.8.x.
101102

102103

103-
A full double-precision LAPACK library Rlapack.{so,sl,dll,dynlib} is
104+
A full double-precision LAPACK library Rlapack.{so,sl,dll,dylib} is
104105
installed with R, unless a high-performance LAPACK library was found
105106
at configure time. If your package makes use of LAPACK, please
106107
convert it to use this via
107108

108109
$(LAPACK_LIBS) $(BLAS_LIBS)
109110

110111
in PKG_LIBS in Makevars.
111-
112-
113-

0 commit comments

Comments
 (0)