From 44fcba1c746eab532f4f49ff066ac66875e56836 Mon Sep 17 00:00:00 2001 From: atusy <30277794+atusy@users.noreply.github.com> Date: Sat, 17 Nov 2018 14:16:16 +0900 Subject: [PATCH] fix force to call print.function from base package as print.function is defined internally. --- R/question.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/question.R b/R/question.R index 467c19c..a50d364 100644 --- a/R/question.R +++ b/R/question.R @@ -11,7 +11,7 @@ #' @export `?.function` <- function() { f <- deparse(substitute(e1)) - print.function(e1) + base::print.function(e1) help(f) } #' @rdname question