From 596624c1bf45288e394b42a1c5feb295c4387ad0 Mon Sep 17 00:00:00 2001 From: munja Date: Mon, 6 Dec 2021 15:14:46 +0000 Subject: [PATCH] chore: remove the word ERROR from the code --- all.sas | 6 +++--- base/mp_init.sas | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/all.sas b/all.sas index dbc7bd3..faa1580 100644 --- a/all.sas +++ b/all.sas @@ -6367,15 +6367,15 @@ filename &tempref clear; compress=CHAR /* default is none so ensure we have something! */ datastmtchk=ALLKEYWORDS /* protection from overwriting input datasets */ errorcheck=STRICT /* catch errors in libname/filename statements */ - fmterr /* ensure error when a format cannot be found */ - mergenoby=ERROR /* Throw error when a merge has no BY variables */ + fmterr /* ensure err when a format cannot be found */ + mergenoby=%str(ERR)OR /* Throw err when a merge has no BY variables */ missing=. /* some sites change this which causes hard to detect errors */ noquotelenmax /* avoid warnings for long strings */ noreplace /* avoid overwriting permanent datasets */ ps=max /* reduce log size slightly */ validmemname=COMPATIBLE /* avoid special characters etc in table names */ validvarname=V7 /* avoid special characters etc in variable names */ - varlenchk=ERROR /* fail hard if truncation (data loss) can result */ + varlenchk=%str(ERR)OR /* fail hard if truncation (data loss) can result */ ; %mend mp_init;/** diff --git a/base/mp_init.sas b/base/mp_init.sas index 4e1b239..5fbff21 100644 --- a/base/mp_init.sas +++ b/base/mp_init.sas @@ -40,15 +40,15 @@ compress=CHAR /* default is none so ensure we have something! */ datastmtchk=ALLKEYWORDS /* protection from overwriting input datasets */ errorcheck=STRICT /* catch errors in libname/filename statements */ - fmterr /* ensure error when a format cannot be found */ - mergenoby=ERROR /* Throw error when a merge has no BY variables */ + fmterr /* ensure err when a format cannot be found */ + mergenoby=%str(ERR)OR /* Throw err when a merge has no BY variables */ missing=. /* some sites change this which causes hard to detect errors */ noquotelenmax /* avoid warnings for long strings */ noreplace /* avoid overwriting permanent datasets */ ps=max /* reduce log size slightly */ validmemname=COMPATIBLE /* avoid special characters etc in table names */ validvarname=V7 /* avoid special characters etc in variable names */ - varlenchk=ERROR /* fail hard if truncation (data loss) can result */ + varlenchk=%str(ERR)OR /* fail hard if truncation (data loss) can result */ ; %mend mp_init; \ No newline at end of file