###----- NOTE: ../man/base-deprecated.Rd must be synchronized with this file! ### ------------------------- .Deprecated <- function(new, package = NULL) { msg <- gettextf("'%s' is deprecated.\n", as.character(sys.call(sys.parent())[[1]])) if(!missing(new)) msg <- c(msg, gettextf("Use '%s' instead.\n", new)) msg <- c(msg, if(!is.null(package)) gettextf("See help(\"Deprecated\") and help(\"%s-deprecated\").", package) else gettext("See help(\"Deprecated\")")) warning(paste(msg, collapse=""), call. = FALSE, domain = NA) } ## consider keeping one (commented) entry here, for easier additions ## ## Deprecated in 2.4.0 ## symbol.C and symbol.For are primitives ## La.chol <- function(x) { ## .Deprecated("chol") ## .Call("La_chol", as.matrix(x), PACKAGE = "base") ## } ##