Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
R 4.1 has an obscure bug in `get0('.First')`, which causes the function to return `NULL` instead of `ifnotfound`, unless `mode` is specified, because `.First` is defined as `NULL` in the ‘base’ package: ``` > get0('.First', ifnotfound = 42) NULL > get0('.First', mode = 'function', ifnotfound = 42) [1] 42 ```
- Loading branch information