Skip to content

Commit 7132913

Browse files
author
luke
committed
Allow for WRE @forfun annotation in api tools.
git-svn-id: https://svn.r-project.org/R/trunk@88877 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 2f8f61f commit 7132913

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/library/tools/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ mkR: mkR1
4949

5050
## avoid "$<" as that was empty when using bmake (tested 20200710 and 20241124)
5151
$(WRE_DATA): $(WRE_SRC)
52-
@grep -E '^@(api|eapi|emb)(fun|var|hdr)' "$(WRE_SRC)" > "$@"
52+
@grep -E '^@(api|eapi|emb|for)(fun|var|hdr)' "$(WRE_SRC)" > "$@"
5353

5454
include $(top_srcdir)/share/make/basepkg.mk
5555

src/library/tools/R/apitools.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ getOneFunAPI <- function(apitype) {
7474
}
7575

7676
getFunAPI <- function() {
77-
apitypes <- c("api", "eapi", "emb")
77+
apitypes <- c("api", "eapi", "emb", "for")
7878
val <- do.call(rbind, lapply(apitypes, getOneFunAPI))
7979
val <- unique(val)
8080
val <- by(val,

0 commit comments

Comments
 (0)