aboutsummaryrefslogtreecommitdiff
path: root/run.c
AgeCommit message (Expand)Author
2024-01-22Restore ability to compile with g++.Arnold D. Robbins
2023-12-28fix for matchop dereferencing a pointer x->sval after freeing x.ozan yigit
2023-11-27Fix after review comment.Arnold D. Robbins
2023-11-27Fix exit status of system on MacOS.Arnold D. Robbins
2023-11-23Fix issue #147. Update FIXES and main.c version.Arnold D. Robbins
2023-11-06Consolidate sub and gsub in dosubMiguel Pineiro Jr
2023-10-30todd miller's substr fix for buffer overflow with utf-8 stringsozan yigit
2023-10-30todd miller's change to disable utf-8 for non-multibyte localesozan yigit
2023-10-30todd miller's code cleanupozan yigit
2023-10-28substr: fix buffer overflow with utf-8 stringsTodd C. Miller
2023-10-05Disable utf-8 for non-multibyte locales, such as C or POSIX.Todd C. Miller
2023-09-27arnold's fix for gsub null match bug with unicode charsozan yigit
2023-09-18Use upper scope "int i" scope instead of declaring another in the for loop.Todd C. Miller
2023-09-14length error in u8_byte2char that set RSTART to -1 for EOL match(str, /$/).ozan yigit
2023-06-25fixed (I think) the behavior of Nan, thanks to code from Arnold Robbins; also...Brian Kernighan
2023-03-15fixed split with CSV (i think)Brian Kernighan
2023-03-15added \u processing, based on plan9 runetochar()Brian Kernighan
2023-01-31Change wide_char_to_byte_str() to force UTF-8 encoding.Arnold D. Robbins
2022-12-24Fix fnematch for unicode. Fix printf %c for unicode.Arnold D. Robbins
2022-10-20Addition unicode printf %c and %s fixes.Arnold D. Robbins
2022-10-14fixes for printf from arnold (for which many thanks)Brian Kernighan
2022-10-02"fixed" %c conversion for utf8 inputsBrian Kernighan
2022-10-02merged changes from master into unicode-supportBrian Kernighan
2022-10-02added test cases %-w.ps examplesBrian Kernighan
2022-09-26finally got printf(%w.%ps) "working", though notBrian Kernighan
2022-09-12adjbuf minlen error in cat, resulting in NULL pbuf.ozan yigit
2022-09-05merged master and unicode-supportBrian Kernighan
2022-09-05fixed split so if 3rd argument is a comma,Brian Kernighan
2022-08-30Stop leaking tempcells from extra arguments in formatMiguel Pineiro Jr
2022-08-30Stop leaking tempcells from extra args in bltinMiguel Pineiro Jr
2022-08-29Fix use-after-free in splitMiguel Pineiro Jr
2022-08-24Fix permissions on some files.Arnold D. Robbins
2022-08-24Latest additions from BWK.Arnold D. Robbins
2022-05-31Changes from BWK for Unicode support. More to do though.Arnold D. Robbins
2022-03-03Eliminate file management memory leakMiguel Pineiro Jr
2021-12-16When closing, don't flush input streamsMiguel Pineiro Jr
2021-12-08Fix error handling in closefile and closeallMiguel Pineiro Jr
2021-12-08Delete leading spaces surrounding closefileMiguel Pineiro Jr
2021-11-01awkgetline: do not access unitialized data on EOFTodd C. Miller
2020-12-08Rework floating point conversions. (#98)Arnold Robbins
2020-10-13Make it compile with g++.Arnold D. Robbins
2020-08-16Additional fixes for DJGPP.Arnold D. Robbins
2020-08-07printf: The argument p shall be a pointer to void. (#93)Chris
2020-08-04Fix Issue #92; see FIXES.Arnold D. Robbins
2020-07-30Move exclusively to bison as parser generator.Arnold D. Robbins
2020-07-27Avoid using stdio streams after they have been closed. (#89)Todd C. Miller
2020-07-02Fix regression with changed SUBSEP in subscript (#86)Tim van der Molen
2020-07-02Fix concatenation regression (#85)Tim van der Molen
2020-06-25Rename dprintf to DPRINTF and use C99 cpp variadic arguments. (#82)Todd C. Miller
2020-06-12Clear errno before using errcheck() to avoid spurious errors. (#80)Todd C. Miller