Skip to content
Prev 58869 / 63424 Next

utils::isS3stdGeneric chokes on primitives and identity

Fixed now with

-    while(as.character(bdexpr[[1L]]) == "{")
+    while(is.call(bdexpr) && (as.character(bdexpr[[1L]]) == "{"))

(the suggested fix does not work on things like
foo <- function(x) {{ x }} 
...)

Best
-k