aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* loop: new clauses first_then, for_var, collect_plus.Kaz Kylheku2022-03-312-0/+50
|
* list_add: fix multiple evaluation and paren problem.Kaz Kylheku2022-03-311-1/+6
|
* iter: new minimizing, argmax, argmin clauses.Kaz Kylheku2022-03-312-0/+78
|
* iter: fix bug in list clause.Kaz Kylheku2022-03-311-1/+1
|
* loop: add summing, maximizing, while, until.Kaz Kylheku2022-03-312-0/+108
|
* iter: fix circular header inclusion issue.Kaz Kylheku2022-03-311-4/+5
| | | | | | | - Add forgotten define __CPPAWK_ITER_H. - This requires the include of "cons.h" to be moved a bit down, since that uses the doarray and whatnot. We move it above loop; "cons.h" doesn't use that.
* Iteration test cases.Kaz Kylheku2022-03-312-0/+229
|
* Adding Lisp-inspired data and control utilities.Kaz Kylheku2022-03-317-0/+1385
|
* man cppawk-narg: use fonts in synopsis and examples.Kaz Kylheku2022-03-291-45/+93
|
* man cppawk-case: use fonts in synopsis and examples.Kaz Kylheku2022-03-291-23/+34
|
* Fix misuses of formatting macros in man pages.Kaz Kylheku2022-03-293-157/+160
|
* narg: test case exercising all arg list lengths.Kaz Kylheku2022-03-291-0/+15
|
* README: mention <narg.h>.Kaz Kylheku2022-03-291-5/+10
|
* Bump version to 20220329.20220329Kaz Kylheku2022-03-293-3/+3
|
* narg: rename some arguments.Kaz Kylheku2022-03-291-1/+1
|
* Add cppawk-narg man page.Kaz Kylheku2022-03-292-0/+301
|
* case: add mixed clause.Kaz Kylheku2022-03-294-3/+52
|
* nargs: add splice macro.Kaz Kylheku2022-03-293-0/+18
|
* New public header <narg.h>.Kaz Kylheku2022-03-293-0/+86
|
* __revargs: rename to __revarg to rhyme with narg.Kaz Kylheku2022-03-281-1/+1
|
* narg: 16 argument safety red zone.Kaz Kylheku2022-03-281-8/+21
|
* Settle on single, most general __varexpand.Kaz Kylheku2022-03-282-130/+79
| | | | | The nested form based on the reduce concept is more general; one macro does it all.
* __varexpand_simple: get rid of __rep_ macros.Kaz Kylheku2022-03-281-136/+1
| | | | | | | There is no need for __varexpand_simple to carry its own set of 32 macros, because it's just a special case of __varexpand_infix, with the same helper macro duplicated as mac1 and mac2.
* Test for features not awks.Kaz Kylheku2022-03-282-1/+5
| | | | | Let's start the practice of setting up some feature macros in base.h. Then test for features elsewhere.
* Simplify definition of variadic macros.Kaz Kylheku2022-03-282-8/+16
|
* Remove stray character in macro expansion.Kaz Kylheku2022-03-281-1/+1
| | | | | This would affect 15 argument variadic macros, like case clauses with exactly 15 keys.
* Fix some include guards lacking trailing _H.Kaz Kylheku2022-03-282-3/+3
|
* README: mention new case header.Kaz Kylheku2022-03-281-2/+7
|
* README: awkloop: test return value of geline rightKaz Kylheku2022-03-281-1/+1
|
* Document <case.h> with own man page; bump date.Kaz Kylheku2022-03-283-4/+173
|
* New <case.h> header and macro.Kaz Kylheku2022-03-278-4/+553
| | | | | | This provides a portable case statement implemented directly as switch on GNU Awk, and using other approaches on other Awks that do not have switch.
* man page: redesign __gawk_ver semantics.Kaz Kylheku2022-03-261-20/+16
|
* man page: revise BUGS section.Kaz Kylheku2022-03-261-34/+15
|
* Document __gawk_ver symbol.Kaz Kylheku2022-03-261-0/+34
| | | | | In the future, some cppawk headers will react to this symbol's value, if it is defined.
* runtests: remove script.sh and output.Kaz Kylheku2022-03-261-0/+1
|
* Alignment issue in license header.Kaz Kylheku2022-03-251-1/+1
|
* Use awk for testsuite rather than cppawk.Kaz Kylheku2022-03-252-3/+3
| | | | | | There are ways in which cppawk can be fundamentally broken which will cause the test suite to appear to succeed, but without actually running any tests.
* Bump version to 20220325.20220325Kaz Kylheku2022-03-242-2/+2
|
* Pass -std=c99 to cpp to remove crap like #define linux.Kaz Kylheku2022-03-242-2/+8
|
* New --dump-macros option.Kaz Kylheku2022-03-243-0/+17
|
* Run all test cases with and without --nobash option.Kaz Kylheku2022-03-243-47/+49
|
* If Bash is available, use process substitution.Kaz Kylheku2022-03-243-3/+29
|
* README: rearrangement; revise Gawk @include discussion.Kaz Kylheku2022-03-241-17/+30
|
* __FILE__ in main program resolves to original name.Kaz Kylheku2022-03-243-5/+20
|
* don't delete hash-bang line; replace with #Kaz Kylheku2022-03-242-1/+10
| | | | This preserves the line numbers.
* bugfix: collapse: don't eat blank lines.Kaz Kylheku2022-03-242-5/+21
|
* don't create temp file when not needed.Kaz Kylheku2022-03-241-14/+17
|
* test case for --prepro-only with -f.Kaz Kylheku2022-03-241-0/+5
|
* bugfix: execing awk causes temp files to persist.Kaz Kylheku2022-03-243-1/+9
|
* Bump version; remove beta status from man page.Kaz Kylheku2022-03-242-2/+2
|