We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45a588b commit b30b5a3Copy full SHA for b30b5a3
src/library/tools/R/install.R
@@ -2950,8 +2950,10 @@ if(FALSE) {
2950
## should be valid in UTF-8, might be invalid in declared encoding
2951
desc <- iconv(desc, enc, "UTF-8", sub = "byte")
2952
}
2953
- ## drop internal entries
2954
- M <- M[!M[, 4L], ]
+ ## drop internal entries (by default)
+ if(!config_val_to_logical(Sys.getenv("_R_INSTALL_HTML_INDEX_INTERNAL_TOO_",
2955
+ "FALSE")))
2956
+ M <- M[!M[, 4L], ]
2957
if (desc["Package"] %in% c("base", "graphics", "stats", "utils")) {
2958
for(pass in 1:2) {
2959
## we skip method aliases
0 commit comments