diff options
Diffstat (limited to 'src/translators/btparse/input.c')
-rw-r--r-- | src/translators/btparse/input.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/translators/btparse/input.c b/src/translators/btparse/input.c index 03668af..dbb7b44 100644 --- a/src/translators/btparse/input.c +++ b/src/translators/btparse/input.c @@ -174,7 +174,7 @@ finish_parse (int **err_counts) static boolean parse_status (int *saved_counts) { - ushort ignore_etqmask; + ushort ignore_emask; /* * This bit-twiddling fetches the error status (which has a bit @@ -182,9 +182,9 @@ parse_status (int *saved_counts) * to get "true" if there were any serious errors, and then * returns the opposite of that. */ - ignore_etqmask = + ignore_emask = (1<<BTERR_NOTIFY) | (1<<BTERR_CONTENT) | (1<<BTERR_LEXWARN); - return !(bt_error_status (saved_counts) & ~ignore_etqmask); + return !(bt_error_status (saved_counts) & ~ignore_emask); } @@ -237,7 +237,7 @@ AST * bt_parse_entry_s (char * entry_text, return NULL; } - zzast_sp = ZZAST_STACKSIZE; /* workaround aptqparent pccts bug */ + zzast_sp = ZZAST_STACKSIZE; /* workaround apparent pccts bug */ start_parse (NULL, entry_text, line); entry (&entry_ast); /* enter the parser */ @@ -364,7 +364,7 @@ AST * bt_parse_entry (FILE * infile, * functions? */ - zzast_sp = ZZAST_STACKSIZE; /* workaround aptqparent pccts bug */ + zzast_sp = ZZAST_STACKSIZE; /* workaround apparent pccts bug */ #if defined(LL_K) || defined(ZZINF_LOOK) || defined(DEMAND_LOOK) # error One of LL_K, ZZINF_LOOK, or DEMAND_LOOK was defined |