[Rd] [PATCH] Fix status in main

Martin Maechler maechler at stat.math.ethz.ch
Fri Jul 21 10:23:43 CEST 2017


> Hello,
> This is a patch to fix what appears to be a simple typo. The warning says
> "invalid status assuming 0", but then instead sets runLast to 0.

> Signed-of-by: Steve Grubb <sgrubb at redhat.com>

> Index: src/main/main.c
> ===================================================================
> --- src/main/main.c	(revision 72935)
> +++ src/main/main.c	(working copy)
> @@ -1341,7 +1341,7 @@
>      status = asInteger(CADR(args));
>      if (status == NA_INTEGER) {
>  	warning(_("invalid 'status', 0 assumed"));
> -	runLast = 0;
> +	status = 0;
>      }
>      runLast = asLogical(CADDR(args));
>      if (runLast == NA_LOGICAL) {

Yes, thank you!

Martin



More information about the R-devel mailing list