## Hacked help.start() to use with ess-rutils.el1.rutils.help.start <- function (update=FALSE, remote=NULL) {2home <- if (is.null(remote)) {3if (tools:::httpdPort == 0L)4tools::startDynamicHelp()5if (tools:::httpdPort > 0L) {6if (update)7make.packages.html()8paste("http://127.0.0.1:", tools:::httpdPort, sep="")9}10else stop(".rutils.help.start() requires the HTTP server to be running",11call.=FALSE)12} else remote13paste(home, "/doc/html/index.html", sep="")14}151617