search for: pretty_format

Displaying 3 results from an estimated 3 matches for "pretty_format".

2011 Mar 29
1
Typo in tools:::format.check_Rd_metadata()
...c(character(), if(length(bad <- x$files_with_duplicated_name)) { unlist(lapply(names(bad)), function(nm) { c(gettextf("Rd files with duplicated name '%s':", nm), .pretty_format(bad[[nm]])) }) }, if(length(bad <- x$files_with_duplicated_aliases)) { unlist(lapply(names(bad)), function(nm) { c(gettextf("Rd files with duplicated alias '%s':",...
2018 Sep 18
2
Suggested Patch: Adding commas to list of packages after R CMD check
...conductor/glmSparseNet.Rcheck/00check.log' for details. ``` svn diff: Index: src/library/tools/R/QC.R =================================================================== --- src/library/tools/R/QC.R (revision 75322) +++ src/library/tools/R/QC.R (working copy) @@ -8536,13 +8536,13 @@ .pretty_format <- function(x) { - strwrap(paste(sQuote(x), collapse = " "), + strwrap(paste(sQuote(x), collapse = ", "), indent = 2L, exdent = 2L) } .pretty_format2 <- function(msg, x) { - xx <- strwrap(paste(sQuote(x), collapse = " "), exdent = 2...
2018 Sep 18
0
Suggested Patch: Adding commas to list of packages after R CMD check
...gt; ``` > > > svn diff: > > > Index: src/library/tools/R/QC.R > =================================================================== > --- src/library/tools/R/QC.R (revision 75322) > +++ src/library/tools/R/QC.R (working copy) > @@ -8536,13 +8536,13 @@ > .pretty_format <- > function(x) > { > - strwrap(paste(sQuote(x), collapse = " "), > + strwrap(paste(sQuote(x), collapse = ", "), > indent = 2L, exdent = 2L) > } > .pretty_format2 <- > function(msg, x) > { > - xx <- strwr...