Age | Commit message (Expand) | Author |
2020-08-28 | Implement mktime() function for compatibility with mawk and gawk. | Todd C. Miller |
2020-08-11 | Update awk to August 7, 2020 version. | Todd C. Miller |
2020-07-30 | Don't print extra newlines on error before awk starts parsing. | Todd C. Miller |
2020-07-30 | Update awk to July 30, 2020 version. | Todd C. Miller |
2020-07-30 | Improved handling of an unescaped '/' in a bracket expression. | Todd C. Miller |
2020-07-24 | Regular expression support in RS is an extension. | Todd C. Miller |
2020-07-20 | If closefile() is called on std{in,out,err}, freopen() /dev/null instead. | Todd C. Miller |
2020-07-20 | In closeall(), skip stdin and flush std{err,out} instead of closing. | Todd C. Miller |
2020-07-13 | Cast to uschar when storing a char in an int that will be used as an index. | Todd C. Miller |
2020-07-02 | Update awk to July 2, 2020 version. | Todd C. Miller |
2020-07-01 | Fix regression with changed SUBSEP in subscript in version 20191024. | Todd C. Miller |
2020-07-01 | Fix concatenation regression introduced in version 20201024. | Todd C. Miller |
2020-06-27 | Improve description of field splitting and document FS special cases. | Todd C. Miller |
2020-06-26 | Document that FS is applied at the time the input line is read. | Todd C. Miller |
2020-06-26 | Update awk to June 25, 2020 version. | Todd C. Miller |
2020-06-26 | Update awk to June 12, 2020 version. | Todd C. Miller |
2020-06-23 | When parsing a character class don't increment openclass for a literal '['. | Todd C. Miller |
2020-06-17 | Document that rand() returns non-deterministic random numbers unless a | Tim van der Molen |
2020-06-16 | Fix strlcpy() size parameter in refldbld(), it was a byte too small. | Todd C. Miller |
2020-06-13 | Integrate the bsd-features branch from awk github. | Todd C. Miller |
2020-06-13 | POSIX doesn't permit an unescaped '/' in an extended regular expression. | Todd C. Miller |
2020-06-11 | Use setlocale(LC_CTYPE, "") instead of setlocale(LC_ALL, "") | Todd C. Miller |
2020-06-11 | Fix length parameter to strlcpy, inputFS is a pointer. | Todd C. Miller |
2020-06-10 | Update awk to June 5, 2020 version. | Todd C. Miller |
2020-06-10 | Update awk to Feb 28, 2020 version. | Todd C. Miller |
2020-06-10 | Update awk to Jan 31, 2020 version. | Todd C. Miller |
2020-06-10 | Update awk to Jan 5, 2020 version. | Todd C. Miller |
2020-06-10 | Update awk to Nov 10, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Oct 24, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Oct 17, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Oct 6, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Sep 10, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Jun 17, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to March 5, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Jan 25, 2019 version. | Todd C. Miller |
2020-06-10 | Update awk to Oct 25, 2018 version. | Todd C. Miller |
2020-06-10 | Update awk to Aug 27, 2018 version. | Todd C. Miller |
2020-06-10 | Update awk to Aug 23, 2018 version. | Todd C. Miller |
2020-06-10 | Update awk to Jan 5, 2013 version, no real code changes. | Todd C. Miller |
2020-06-08 | The errcheck() function treats an errno of ERANGE or EDOM as something | Philip Guenther |
2020-02-27 | Merge a missing fix from awk-12202012 and update the version and FIXES. | Todd C. Miller |
2020-01-22 | claudio noticed that "exit" inside the main {} clause still runs the EXIT | Theo de Raadt |
2019-08-13 | Check for strdup return value and exit on failure. | Frederic Cambus |
2019-08-13 | Fix a segmentation fault in awk, from upstream version 20121220. | Frederic Cambus |
2019-05-26 | use proper crossreferences | Christian Weisgerber |
2018-01-24 | POSIX requires that awk support \v and \a escapes. I used '\007' | Todd C. Miller |
2017-12-08 | Convert snprintf+write into dprintf. It is simply easier to read, and | Theo de Raadt |
2017-10-09 | rename dprintf macro to DPRINTF to avoid collision with libc posix dprintf. | Theo de Raadt |
2017-10-08 | Move the assignment to cmdname up before its first use. | Theo Buehler |
2017-09-25 | Mark FATAL() as __dead so clang doesn't report | Kenneth R Westerback |