Skip to content

Commit afe8539

Browse files
author
ripley
committed
tweaks for porting r87294 and r87300
git-svn-id: https://svn.r-project.org/R/trunk@87303 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 30de1de commit afe8539

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

doc/NEWS.Rd

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,6 @@
252252

253253
\item The deprecated S-compatibility macros \code{F77_COM} and
254254
\code{F77_COMDECL} have been removed from header \file{R_ext/RS.h}.
255-
256-
\item The functions \code{R_strtod} and \code{R_atof} now allow
257-
hexadecimal constants without an exponent, for compatibility with
258-
their C99 versions (\PR{18805}).
259255
}
260256
}
261257

@@ -349,15 +345,18 @@
349345
integer to double, analogously with \code{seq.default()},
350346
\code{seq.int()} and \code{seq.POSIXt()}, resolving a \emph{modified}
351347
\PR{18782}.
352-
353-
\item The parser now accepts hexadecimal constants with a decimal
354-
point without an exponent (taken as \code{p0}) as documented in
355-
\code{?NumericConstants} (\PR{18819}).
356348
}
357349
}
358350
}
359351

360352
\section{\Rlogo CHANGES IN R 4.4.2 patched}{
353+
\subsection{C-LEVEL FACILITIES}{
354+
\itemize{
355+
\item The functions \code{R_strtod} and \code{R_atof} now allow
356+
hexadecimal constants without an exponent, for compatibility with
357+
their C99 versions (\PR{18805}).
358+
}
359+
}
361360
\subsection{BUG FIXES}{
362361
\itemize{
363362
\item \code{kappa(A, exact=TRUE)} for singular \code{A} returns
@@ -366,6 +365,10 @@
366365

367366
\item Fixed URLs of the sun spots (\code{sunspot.month} etc) data
368367
sets and mention future changes due to recalibration.
368+
369+
\item The parser now accepts hexadecimal constants with a decimal
370+
point without an exponent (taken as \code{p0}) as documented in
371+
\code{?NumericConstants} (\PR{18819}).
369372
}
370373
}
371374
}

tests/reg-tests-1e.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1557,7 +1557,7 @@ for(x in list(x3 = {n <- 3L; x <- diag(n); x[n,n] <- 0; x},
15571557
0x1.234p7
15581558
0x1.234p-7
15591559
0x1.234
1560-
## last was a (deliberate) parse error in R < 4.5.0, but not as documented.
1560+
## last was a (deliberate) parse error in R <= 4.4.2, but not as documented.
15611561

15621562
## keep at end
15631563
rbind(last = proc.time() - .pt,

0 commit comments

Comments
 (0)