R/stop.R

Defines functions stop

stop <- function(...) {
  if (getOption("TeXCheckR.no_stopping", FALSE)) {
    return(NULL)
  }
  eval.parent(substitute(base::stop(...)))
}

Try the TeXCheckR package in your browser

Any scripts or data that you put into this service are public.

TeXCheckR documentation built on May 29, 2024, 7:20 a.m.