diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:14:00 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:14:00 +0200 |
commit | b52237743955ece2c890aeb0959c03e70e3175e3 (patch) | |
tree | 29618b84f7089d1caebbe1b9a91f5d83b1e4ea16 /field.c | |
parent | 03183d8f307ee708fe57de2d9d923c3885f80bc8 (diff) | |
parent | aa58c798bed920b6051c4459488195df2b76aaf4 (diff) | |
download | egawk-b52237743955ece2c890aeb0959c03e70e3175e3.tar.gz egawk-b52237743955ece2c890aeb0959c03e70e3175e3.tar.bz2 egawk-b52237743955ece2c890aeb0959c03e70e3175e3.zip |
Merge branch 'master' into feature/readall
Diffstat (limited to 'field.c')
-rw-r--r-- | field.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -81,13 +81,13 @@ static awk_fieldwidth_info_t *FIELDWIDTHS = NULL; NODE **fields_arr; /* array of pointers to the field nodes */ bool field0_valid; /* $(>0) has not been changed yet */ -int default_FS; /* true when FS == " " */ -Regexp *FS_re_yes_case = NULL; -Regexp *FS_re_no_case = NULL; -Regexp *FS_regexp = NULL; -Regexp *FPAT_re_yes_case = NULL; -Regexp *FPAT_re_no_case = NULL; -Regexp *FPAT_regexp = NULL; +static int default_FS; /* true when FS == " " */ +static Regexp *FS_re_yes_case = NULL; +static Regexp *FS_re_no_case = NULL; +static Regexp *FS_regexp = NULL; +static Regexp *FPAT_re_yes_case = NULL; +static Regexp *FPAT_re_no_case = NULL; +static Regexp *FPAT_regexp = NULL; NODE *Null_field = NULL; #define clear_mpfr(n) ((n)->flags &= ~(MPFN | MPZN | NUMCUR)) @@ -837,7 +837,7 @@ fw_parse_field(long up_to, /* parse only up to this field number */ /* invalidate_field0 --- $0 needs reconstruction */ -void +static void invalidate_field0() { field0_valid = false; |