diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:10:31 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-12-17 11:10:31 +0200 |
commit | aa58c798bed920b6051c4459488195df2b76aaf4 (patch) | |
tree | 0f19662dafc6a13909cc1806a74f65b200efe918 /field.c | |
parent | 71258c13172b489139f1a1d339bf140af6c1ebf1 (diff) | |
parent | f285f960bdfb5acb50a8ec7ed4b98f17d0bd624a (diff) | |
download | egawk-aa58c798bed920b6051c4459488195df2b76aaf4.tar.gz egawk-aa58c798bed920b6051c4459488195df2b76aaf4.tar.bz2 egawk-aa58c798bed920b6051c4459488195df2b76aaf4.zip |
Merge branch 'gawk-5.1-stable'
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; |