1. 857800c awk: never return NULL from awk_printf() by Denys Vlasenko · 3 years, 3 months ago
  2. e60c569 awk: code shrink by Denys Vlasenko · 3 years, 3 months ago
  3. 8a0adba awk: code shrink: avoid duplicate NUL checks and strlen() by Denys Vlasenko · 3 years, 3 months ago
  4. 305a30d awk: fix read beyond end of buffer by Ron Yorston · 3 years, 3 months ago
  5. 7d06d6e awk: fix printf %% by Daniel Thau · 3 years, 3 months ago
  6. dabbeeb awk: whitespace and debugging tweaks by Denys Vlasenko · 3 years, 5 months ago
  7. d3480dd awk: disallow break/continue outside of loops by Denys Vlasenko · 3 years, 5 months ago
  8. d626274 awk: tighten parsing - disallow extra semicolons by Denys Vlasenko · 3 years, 5 months ago
  9. ab755e3 awk: in parsing, remove superfluous NEWLINE check; optimize builtin arg evaluation by Denys Vlasenko · 3 years, 5 months ago
  10. 8d269ef awk: fix printf "%-10c", 0 by Denys Vlasenko · 3 years, 5 months ago
  11. caa93ec awk: fix corner case in awk_printf by Denys Vlasenko · 3 years, 5 months ago
  12. 39aabfe awk: unbreak "cmd" | getline by Denys Vlasenko · 3 years, 5 months ago
  13. 4ef8841 awk: unbreak "printf('%c') can output NUL" testcase by Denys Vlasenko · 3 years, 5 months ago
  14. 3d57a84 awk: undo TI_PRINT, it introduced a bug (print with any redirect acting as printf) by Denys Vlasenko · 3 years, 5 months ago
  15. 49c3ce6 awk: rollback_token() + chain_group() == chain_until_rbrace() by Denys Vlasenko · 3 years, 5 months ago
  16. e2e3802 awk: fix printf buffer overflow by Denys Vlasenko · 3 years, 5 months ago
  17. 08ca313 awk: simplify tests for operation class by Denys Vlasenko · 3 years, 5 months ago
  18. cb042b0 awk: restore strdup elision optimization in assignment by Denys Vlasenko · 3 years, 5 months ago
  19. 90404ed awk: match(): code shrink by Denys Vlasenko · 3 years, 5 months ago
  20. 0e3ef4e awk: rand(): 64-bit constants should be ULL by Denys Vlasenko · 3 years, 5 months ago
  21. 2211fa7 awk: do not use a copy of g_progname for node->l.new_progname by Denys Vlasenko · 3 years, 5 months ago
  22. e1e7ad6 awk: support %F %a %A in printf by Denys Vlasenko · 3 years, 5 months ago
  23. 1f76570 awk: open-code TS_OPTERM, no logic changes by Denys Vlasenko · 3 years, 5 months ago
  24. 2b65e73 awk: tighten rules in action parsing by Denys Vlasenko · 3 years, 5 months ago
  25. 717200e awk: rename GRPSTART/END to L/RBRACE, no code changes by Denys Vlasenko · 3 years, 5 months ago
  26. b705bf5 awk: move match() code out-of-line by Denys Vlasenko · 3 years, 5 months ago
  27. 646429e awk: use smaller regmatch_t arrays, they had 2 elements for no apparent reason by Denys Vlasenko · 3 years, 5 months ago
  28. a5d7b0f awk: fix detection of VAR=VAL arguments by Denys Vlasenko · 3 years, 5 months ago
  29. 4d902ea awk: fix beavior of "exit" without parameter by Denys Vlasenko · 3 years, 5 months ago
  30. 8bb03da awk: rand() could return 1.0, fix this - should be in [0,1) by Denys Vlasenko · 3 years, 5 months ago
  31. 37ae8cd awk: beautify builtins table, no code changes by Denys Vlasenko · 3 years, 5 months ago
  32. 47d9133 awk: enforce simple builtins' argument number by Denys Vlasenko · 3 years, 5 months ago
  33. 786ca19 awk: make builtin definitions more understandable, no code changes by Denys Vlasenko · 3 years, 5 months ago
  34. 640212a awk: do not special-case "delete" by Denys Vlasenko · 3 years, 5 months ago
  35. ef5463c awk: shuffle globals for smaller offsets by Denys Vlasenko · 3 years, 5 months ago
  36. 966cafc awk: use "static" tmpvars in main and exit by Denys Vlasenko · 3 years, 5 months ago
  37. 1193c68 awk: when parsing length(), simplify eating of LPAREN by Denys Vlasenko · 3 years, 5 months ago
  38. 4057355 awk: shuffle functions to reduce forward declarations, no code changes by Denys Vlasenko · 3 years, 5 months ago
  39. 8b4c429 awk: use static tmpvars instead of nvalloc(1)ed ones by Denys Vlasenko · 3 years, 6 months ago
  40. 1573487 awk: rename temp variables, no code changes by Denys Vlasenko · 3 years, 6 months ago
  41. d7354df awk: evaluate all, even superfluous function args by Denys Vlasenko · 3 years, 6 months ago
  42. ca9278e awk: rewrite "print" logic a bit to make it clearer by Denys Vlasenko · 3 years, 6 months ago
  43. d150710 awk: allow empty fuinctions with no arguments, disallow function redefinitions by Denys Vlasenko · 3 years, 6 months ago
  44. 86fc287 awk: replace incorrect use of union in undefined function check (no code changes) by Denys Vlasenko · 3 years, 6 months ago
  45. 6cf6f1e awk: remove custom pool allocator for temporary awk variables by Denys Vlasenko · 3 years, 6 months ago
  46. 3aff3b9 awk: assorted optimizations by Denys Vlasenko · 3 years, 6 months ago
  47. b3c91a1 awk: free unused parsing structures after parse is done by Denys Vlasenko · 3 years, 6 months ago
  48. 21fbee2 awk: document which hashes are used at what state (parse/execute) by Denys Vlasenko · 3 years, 6 months ago
  49. 6872c19 awk: fix parsing of expressions such as "v (a)" by Denys Vlasenko · 3 years, 6 months ago
  50. 686287b awk: deindent a block, no code changes by Denys Vlasenko · 3 years, 6 months ago
  51. 216d3d8 awk: code shrink by Denys Vlasenko · 3 years, 6 months ago
  52. 4f27503 awk: get rid of "move name one char back" trick in next_token() by Denys Vlasenko · 3 years, 6 months ago
  53. f414fb4 awk: when parsing TC_FUNCTION token, eat its opening '(' by Denys Vlasenko · 3 years, 6 months ago
  54. cb6061a awk: g_buf[] does not need a separate allocation by Denys Vlasenko · 3 years, 6 months ago
  55. 9264207 awk: simplify parsing of function declaration by Denys Vlasenko · 3 years, 6 months ago
  56. 9782cb7 awk: rename TC_SEQSTART/END to L/RPAREN, no code changes by Denys Vlasenko · 3 years, 6 months ago
  57. a493441 awk: deindent code block, no code changes by Denys Vlasenko · 3 years, 6 months ago
  58. adcd9a6 awk: use TS_foo for combined token classes. No code changes by Denys Vlasenko · 3 years, 6 months ago
  59. 832cb4f awk: make ltclass ("last token class") local to next_token() by Denys Vlasenko · 3 years, 6 months ago
  60. af01723 awk: remove redundant check by Denys Vlasenko · 3 years, 6 months ago
  61. 78645d8 awk: move locals deeper into scopes where they are used, no logic changes by Denys Vlasenko · 3 years, 6 months ago
  62. 8c5da03 awk: more efficient -f FILE, document what "some trick in next_token" is by Denys Vlasenko · 3 years, 6 months ago
  63. ac4786b qwk: make code clearer, no actual code changes by Denys Vlasenko · 3 years, 6 months ago
  64. fd217c1 awk: after preinc/dec, only allow variable, field ref, array ref, or another preinc/dec by Denys Vlasenko · 3 years, 6 months ago
  65. a885ce1 awk: fix use-after-free in "$BIGNUM1 $BIGGERNUM2" concat op by Denys Vlasenko · 3 years, 6 months ago
  66. e8fe9f9 awk: allow printf('%c') to output NUL, closes 13486 by Ron Yorston · 3 years, 11 months ago
  67. 665a659 awk: FS regex matches only non-empty separators (gawk compat) by Denys Vlasenko · 4 years ago
  68. 965b795 decrease paddign: gcc-9.3.1 slaps 32-byte alignment on arrays willy-nilly by Denys Vlasenko · 4 years ago
  69. 5323af7 awk: fix dodgy multi-char separators splitting logic by Denys Vlasenko · 4 years, 1 month ago
  70. 6f7a009 awk: disallow "str"++, closes bug 12981 by Denys Vlasenko · 4 years, 6 months ago
  71. bd8b05b awk: fix more "length" cases, closes 12486 by Denys Vlasenko · 4 years, 11 months ago
  72. 6937487 libbb: reduce the overhead of single parameter bb_error_msg() calls by James Byrne · 5 years ago
  73. 1c42c18 awk: Fix overly permissive func arg list parsing by Brian Foley · 6 years ago
  74. 08a514c awk: Syntax error if delete isn't given an arg. by Brian Foley · 6 years ago
  75. dac15a1 awk: Guard pointer chasing when parsing ternary expressions. by Brian Foley · 6 years ago
  76. b097a84 config: update size information by Denys Vlasenko · 6 years ago
  77. 75a1c87 awk: abort if NF set to negative value by Denys Vlasenko · 6 years ago
  78. 2454e67 awk: do not allow $(-1) by Denys Vlasenko · 7 years ago
  79. 844a6c5 awk: code shrink by Denys Vlasenko · 7 years ago
  80. 6f4a785 awk: fix 'delete array[var--]' decrementing var twice by Denys Vlasenko · 7 years ago
  81. 0c4dbd4 regularize format of source file headers, no code changes by Denys Vlasenko · 7 years ago
  82. a1799db awk: stop on first non-option, closes 9861 by Denys Vlasenko · 7 years ago
  83. 95f7953 do not use `a' quoting style in comments by Denys Vlasenko · 7 years ago
  84. 68b653b config: trim/improve item names and help texts, take 2 by Denys Vlasenko · 7 years ago
  85. 72089cf config: deindent all help texts by Denys Vlasenko · 7 years ago
  86. 75d151e libarchive: FEATURE_LZMA_FAST should be visible if FEATURE_SEAMLESS_LZMA by Denys Vlasenko · 7 years ago
  87. 4eed2c6 Update menuconfig items with approximate applet sizes by Denys Vlasenko · 7 years ago
  88. 61d5997 awk: fix segfault on for loop syntax error by Brian Foley · 8 years ago
  89. 237bedd getopt32: add new syntax of 'o:+' and 'o:*' for -o NUM and -o LIST by Denys Vlasenko · 8 years ago
  90. 28b00ce awk: support "length" form of "length()". Closes 8371 by Denys Vlasenko · 9 years ago
  91. 97f2f7c Removes stray empty line from code by Maninder Singh · 10 years ago
  92. 5f8daef awk: fix handling of "if ... break ; else ..." - closes 7226 by Denys Vlasenko · 10 years ago
  93. bd0e221 awk: fix a bug in argc counting in recent change by Denys Vlasenko · 11 years ago
  94. f200f73 awk: optionally support -e AWK_PROG by Sven-Göran Bergh · 11 years ago
  95. 7985bc1 awk: fix length(array) by Denys Vlasenko · 11 years ago
  96. a060a1a awk: Fix handling of functions with empty body by Bernhard Reutner-Fischer · 11 years ago
  97. 1390a01 awk: use "long long" as integer type, not "int" by Denys Vlasenko · 11 years ago
  98. b79a0fe awk: Fix handling of functions with empty body by Bernhard Reutner-Fischer · 12 years ago
  99. 60cb48c whitespace cleanup. no code changes by Denys Vlasenko · 12 years ago
  100. df8066a awk: fix FS assignment behavior. Closes 5108 by Denys Vlasenko · 12 years ago