Skip to content

Commit e4c0d74

Browse files
author
ripley
committed
R_ext/Mathlib.h has been removed
git-svn-id: https://svn.r-project.org/R-dev-web/trunk@1466 c52295ea-58df-0310-926a-d16021944841
1 parent 7e448e2 commit e4c0d74

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

180update.txt

+13-9
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ Package maintainers should be aware of the following changes scheduled
55
to appear in 1.8.0.
66

77

8-
print.coefmat (which was not a print method) has been deprecated and
8+
1) print.coefmat (which was not a print method) has been deprecated and
99
replaced by printCoefmat. By default NAs are not suppressed: should
1010
this be desired call printCoefmat(..., na.print="").
1111

1212

13-
codes() and codes<-() have been deprecated. They did not use the
13+
2) codes() and codes<-() have been deprecated. They did not use the
1414
internal codes of an unordered factor, and in almost all cases
1515
unclass/as.vector/as.integer was intended. There is no replacment for
1616
codes<-(), but it appears to be unused on CRAN.
1717

1818

19-
Multi-argument returns are deprecated. Use a named list, e.g. replace
19+
3) Multi-argument returns are deprecated. Use a named list, e.g. replace
2020

2121
return(pred, se)
2222

@@ -26,7 +26,7 @@ by
2626
.
2727

2828

29-
Calling UseMethod with more than two arguments gives a warning, as
29+
4) Calling UseMethod with more than two arguments gives a warning, as
3030
R-lang has long said it did. Normally one argument suffices, and
3131

3232
UseMethod("foo", x, ...)
@@ -35,17 +35,17 @@ is incorrect usage: replace it by UseMethod("foo") unless you do not
3535
want to dispatch on the first argument of the enclosing function.
3636

3737

38-
The distinction between as.character(NA) and "NA" introduced in 1.5.0
38+
5) The distinction between as.character(NA) and "NA" introduced in 1.5.0
3939
is now observed by sub, gsub, grep, regexpr, chartr, tolower, toupper,
4040
substr, substring, abbreviate and strsplit, but not by nchar. NA behaves
4141
as `unknown': any comparison with NA is has NA results.
4242

4343

44-
The S3 methods format.dist() and plot.hclust() are removed from the mva
44+
6) The S3 methods format.dist() and plot.hclust() are removed from the mva
4545
namespace.
4646

4747

48-
The QC facilities in package tools have substantially been enhanced, and
48+
7) The QC facilities in package tools have substantially been enhanced, and
4949
hence might report problems not found previously. Analyzing \usage
5050
sections no longer misses replacement functions or S3 replacement
5151
methods, and no longer ignores variables and data sets. Code for
@@ -58,15 +58,19 @@ There is some code/documentation consistency checking for data sets and
5858
S4 classes.
5959

6060

61-
Additional Rd markup is now available, including \concept for concept
61+
8) Additional Rd markup is now available, including \concept for concept
6262
index entries to be used by help.search(), \preformatted, as well as
6363
commands for emphasizing and quoting text, for indicating the usage of
6464
an S4 method, and for indicating specific kinds of text.
6565

6666

67-
.Random.seed is only looked for in the workspace, so R code in
67+
9) .Random.seed is only looked for in the workspace, so R code in
6868
packages should use constructs like
6969

7070
exists(".Random.seed", envir=.GlobalEnv, inherits = FALSE)
7171
seed.save <- get(".Random.seed", envir=.GlobalEnv, inherits = FALSE)
7272
assign(".Random.seed", seed.save, envir=.GlobalEnv)
73+
74+
75+
10) The header file <R_ext/Mathlib.h> has been removed: it was replaced by
76+
<Rmath.h> in R 1.2.0.

0 commit comments

Comments
 (0)