aboutsummaryrefslogtreecommitdiffstats
path: root/field.c
Commit message (Collapse)AuthorAgeFilesLines
* Bug fix for FPAT field parsing.Arnold D. Robbins2020-04-101-7/+18
|
* Bug fix in field.c.Arnold D. Robbins2020-04-021-2/+4
|
* Update copyright years.Arnold D. Robbins2020-03-201-1/+1
|
* Fix a number of memory leaks.Arnold D. Robbins2020-01-081-5/+2
|
* Sanitization fix from Paul Eggert.Arnold D. Robbins2019-12-201-1/+3
|
* Fix a bug with FPAT field parsing.Arnold D. Robbins2019-11-031-12/+1
|
* Fix assigning typed regex to FS and RS.Arnold D. Robbins2019-10-131-1/+1
|
* Update copyright years. Fix a typo in ChangeLog.1.Arnold D. Robbins2019-07-211-1/+1
|
* Fix lint_old warnings to use lintwarn function.Arnold D. Robbins2019-07-161-1/+1
|
* Add --lint=no-ext to disable "xxx is a gawk extension" warnings.Arnold D. Robbins2019-05-221-4/+4
|
* Fix bug with ^ in FS.Arnold D. Robbins2019-04-211-0/+1
|
* Finish transition to using assoc_set.Arnold D. Robbins2019-01-151-17/+3
|
* Add more lint warnings.Arnold D. Robbins2018-09-261-1/+1
|
* Add lint check for decrementing NF.Arnold D. Robbins2018-09-181-0/+7
|
* Improve lint check for accessing fields in END rule.Arnold D. Robbins2018-09-181-7/+8
|
* Fix check of static boolean in field.c:get_field.Arnold D. Robbins2018-09-161-1/+1
|
* Add lint warning for accessing $0 in an END rule.Arnold D. Robbins2018-09-161-0/+7
|
* Fix problem with rebuilding records if using API parser.Arnold D. Robbins2018-04-171-0/+5
|
* Changes to ROUNDMODE now invalidate cached string values.Arnold D. Robbins2018-01-031-1/+4
|
* Fix field corruption when $0 is reassigned with open $n references.Andrew J. Schorr2017-11-141-5/+11
|
* Simplify lint warnings in field.c:do_split.Arnold D. Robbins2017-10-141-7/+3
|
* Fix reference counting management problem in rebuild_record().Arnold D. Robbins2017-08-171-7/+3
|
* Update copyright years in all relevant files.Arnold D. Robbins2017-08-041-1/+1
|
* Replace malloc+memset with calloc, mostly by using the new ezalloc macro.Andrew J. Schorr2017-06-221-3/+1
|
* FIELDWIDTHS parsing should protect against blanks after skip separator, and ↵Andrew J. Schorr2017-05-241-2/+2
| | | | fix field number in error message.
* Additional robustness in FIELDWIDTHS parsing.Arnold D. Robbins2017-05-231-18/+18
|
* Greatly improve FIELDWIDTHS behavior, doc, and tests.Arnold D. Robbins2017-05-231-6/+26
|
* Fix valgrind invalid read issues in new fpat parsing.Arnold D. Robbins2017-04-121-3/+10
|
* Fix FPAT problems.Arnold D. Robbins2017-04-121-164/+85
|
* Trivial change to field.c set_FIELDWIDTHS for type consistency.Andrew J. Schorr2017-04-101-1/+1
|
* Fix comment in fw_parse_field and white space in gawkapi.h.Andrew J. Schorr2017-04-091-4/+4
|
* Minor edits in feature/api-parser prepatory to merging.Arnold D. Robbins2017-03-271-11/+12
|
* Enhance FIELDWIDTHS syntax to support a skip prefix, and unify logic with ↵Andrew J. Schorr2017-03-211-104/+92
| | | | API field parsing.
* For API input field parsing, use an array of structs instead of an array of ↵Andrew J. Schorr2017-03-091-8/+9
| | | | integers.
* Minor style edits in field.c.Arnold D. Robbins2017-03-091-8/+6
|
* Rename variable in field.c and added a comment for improved clarity.Andrew J. Schorr2017-03-061-4/+9
|
* Enable an API input parser to supply an array of field widths to override ↵Andrew J. Schorr2017-03-051-15/+101
| | | | the default gawk field parsing mechanism.
* Merge branch 'master' into feature/typed-regex-2Arnold D. Robbins2016-11-181-28/+51
|\
| * Further code improvements and doc changes as diff until merge.Arnold D. Robbins2016-11-121-15/+14
| |
| * Merge branch 'master' into feature/nocopyArnold D. Robbins2016-10-231-25/+25
| |\
| * | Optimization: support unterminated field strings inside gawk, but make ↵Andrew J. Schorr2016-07-081-101/+34
| | | | | | | | | | | | terminated copies for the API.
| * | Terminate all $n field values with a '\0' character.Andrew J. Schorr2016-07-061-41/+130
| | |
| * | Fix minor bug in last patch to rebuild_record for corner case that never occurs.Andrew J. Schorr2016-07-051-0/+1
| | |
| * | When rebuilding $0, do not bother to copy malloc'ed nodes.Andrew J. Schorr2016-07-051-32/+21
| | |
| * | Remove FIELD flag, since it is the inverse of the MALLOC flag.Andrew J. Schorr2016-07-051-5/+17
| | |
* | | Finish reworking typed regexes. Tests pass!Arnold D. Robbins2016-11-151-0/+6
| |/ |/|
* | Remove trailing whitespace everywhere. Fix Unicode into ASCII.Arnold D. Robbins2016-10-231-25/+25
|/
* Revert warning message until I'm certain that that flag combo is invalid.Andrew J. Schorr2016-07-031-5/+1
|
* Fix bug where STRING flag was disabled during record reconstruction, and add ↵Andrew J. Schorr2016-07-031-1/+5
| | | | test case.
* Use new STFMT_UNUSED define to improve code clarity, and fix some minor ↵Andrew J. Schorr2016-06-301-1/+1
| | | | stfmt issues.