Skip to content

Commit 7268e42

Browse files
committed
funplot par(mfrow = ...) bug fix
1 parent e2f401c commit 7268e42

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

R/utilityFunctions.R

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@ funplot <- function(x, y, id=NULL, rug=TRUE, ...){
8787
### Get further arguments passed to the matplot-functions
8888
dots <- list(...)
8989

90-
oldpar <- par(no.readonly = TRUE)
91-
on.exit(par(oldpar))
90+
## AS: caused bug, couldn't see necessity here
91+
# oldpar <- par(no.readonly = TRUE)
92+
# on.exit(par(oldpar))
9293

9394
getArguments <- function(x, dots=dots){
9495
if(any(names(dots) %in% names(x))){

0 commit comments

Comments
 (0)