Brian Kernighan | e37f882 | 2012-12-22 10:46:35 -0500 | [diff] [blame] | 1 | /**************************************************************** |
| 2 | Copyright (C) Lucent Technologies 1997 |
| 3 | All Rights Reserved |
| 4 | |
| 5 | Permission to use, copy, modify, and distribute this software and |
| 6 | its documentation for any purpose and without fee is hereby |
| 7 | granted, provided that the above copyright notice appear in all |
| 8 | copies and that both that the copyright notice and this |
| 9 | permission notice and warranty disclaimer appear in supporting |
| 10 | documentation, and that the name Lucent Technologies or any of |
| 11 | its entities not be used in advertising or publicity pertaining |
| 12 | to distribution of the software without specific, written prior |
| 13 | permission. |
| 14 | |
| 15 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 16 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 17 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 18 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 20 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 21 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 22 | THIS SOFTWARE. |
| 23 | ****************************************************************/ |
| 24 | |
| 25 | This file lists all bug fixes, changes, etc., made since the AWK book |
| 26 | was sent to the printers in August, 1987. |
| 27 | |
Arnold D. Robbins | 9206c64 | 2019-01-25 13:02:19 +0200 | [diff] [blame] | 28 | Jan 25, 2019: |
| 29 | Make getline handle numeric strings properly in all cases. |
| 30 | (Thanks, Arnold.) |
| 31 | |
| 32 | Jan 21, 2019: |
| 33 | Merged a number of small fixes from GitHub pull requests. |
| 34 | Thanks to GitHub users Arnold Robbins (arnoldrobbins), |
| 35 | Cody Mello (melloc) and Christoph Junghans (junghans). |
| 36 | PR numbers: 13-21, 23, 24, 27. |
| 37 | |
Brian Kernighan | e8c2800 | 2018-10-25 13:28:54 -0400 | [diff] [blame] | 38 | Oct 25, 2018: |
| 39 | Added test in maketab.c to prevent generating a proctab entry |
| 40 | for YYSTYPE_IS_DEFINED. It was harmless but some gcc settings |
| 41 | generated a warning message. Thanks to Nan Xiao for report. |
| 42 | |
Brian Kernighan | 22aff9e | 2018-08-27 08:52:34 -0400 | [diff] [blame] | 43 | Aug 27, 2018: |
| 44 | Disallow '$' in printf formats; arguments evaluated in order |
| 45 | and printed in order. |
| 46 | |
| 47 | Added some casts to silence warnings on debugging printfs. |
| 48 | (Thanks, Arnold.) |
| 49 | |
Brian Kernighan | 0f4e1ba | 2018-08-24 09:09:59 -0400 | [diff] [blame] | 50 | Aug 23, 2018: |
| 51 | A long list of fixes courtesy of Arnold Robbins, |
| 52 | to whom profound thanks. |
| 53 | |
| 54 | 1. ofs-rebuild: OFS value used to rebuild the record was incorrect. |
| 55 | Fixed August 19, 2014. Revised fix August 2018. |
| 56 | |
| 57 | 2. system-status: Instead of a floating-point division by 256, use |
| 58 | the wait(2) macros to create a reasonable exit status. |
| 59 | Fixed March 12, 2016. |
| 60 | |
| 61 | 3. space: Use provided xisblank() function instead of ispace() for |
| 62 | matching [[:blank:]]. |
| 63 | |
| 64 | 4. a-format: Add POSIX standard %a and %A to supported formats. Check |
| 65 | at runtime that this format is available. |
| 66 | |
| 67 | 5. decr-NF: Decrementing NF did not change $0. This is a decades-old |
| 68 | bug. There are interactions with the old and new value of OFS as well. |
| 69 | Most of the fix came from the NetBSD awk. |
| 70 | |
| 71 | 6. string-conv: String conversions of scalars were sticky. Once a |
| 72 | conversion to string happened, even with OFMT, that value was used until |
| 73 | a new numeric value was assigned, even if OFMT differed from CONVFMT, |
| 74 | and also if CONVFMT changed. |
| 75 | |
| 76 | 7. unary-plus: Unary plus on a string constant returned the string. |
| 77 | Instead, it should convert the value to numeric and give that value. |
| 78 | |
| 79 | Also added Arnold's tests for these to awktest.tar as T.arnold. |
| 80 | |
Brian Kernighan | ba7569c | 2018-08-16 09:41:13 -0400 | [diff] [blame] | 81 | Aug 15, 2018: |
| 82 | fixed mangled awktest.tar (thanks, Arnold), posted all |
| 83 | current (very minor) fixes to github / onetrueawk |
| 84 | |
Brian Kernighan | 3ed9e24 | 2018-08-15 10:45:03 -0400 | [diff] [blame] | 85 | Jun 7, 2018: |
| 86 | (yes, a long layoff) |
| 87 | Updated some broken tests (beebe.tar, T.lilly) |
| 88 | [thanks to Arnold Robbins] |
| 89 | |
| 90 | Mar 26, 2015: |
| 91 | buffer overflow in error reporting; thanks to tobias ulmer |
| 92 | and john-mark gurney for spotting it and the fix. |
| 93 | |
| 94 | Feb 4, 2013: |
| 95 | cleaned up a handful of tests that didn't seem to actually |
| 96 | test for correct behavior: T.latin1, T.gawk. |
| 97 | |
| 98 | Jan 5, 2013: |
| 99 | added ,NULL initializer to static Cells in run.c; not really |
| 100 | needed but cleaner. Thanks to Michael Bombardieri. |
| 101 | |
Brian Kernighan | e37f882 | 2012-12-22 10:46:35 -0500 | [diff] [blame] | 102 | Dec 20, 2012: |
| 103 | fiddled makefile to get correct yacc and bison flags. pick yacc |
| 104 | (linux) or bison (mac) as necessary. |
| 105 | |
| 106 | added __attribute__((__noreturn__)) to a couple of lines in |
| 107 | proto.h, to silence someone's enthusiastic checker. |
| 108 | |
| 109 | fixed obscure call by value bug in split(a[1],a) reported on |
| 110 | 9fans. the management of temporary values is just a mess; i |
| 111 | took a shortcut by making an extra string copy. thanks |
| 112 | to paul patience and arnold robbins for passing it on and for |
| 113 | proposed patches. |
| 114 | |
| 115 | tiny fiddle in setfval to eliminate -0 results in T.expr, which |
| 116 | has irritated me for 20+ years. |
| 117 | |
| 118 | Aug 10, 2011: |
| 119 | another fix to avoid core dump with delete(ARGV); again, many thanks |
| 120 | to ruslan ermilov. |
| 121 | |
| 122 | Aug 7, 2011: |
| 123 | split(s, a, //) now behaves the same as split(s, a, "") |
| 124 | |
| 125 | Jun 12, 2011: |
| 126 | /pat/, \n /pat/ {...} is now legal, though bad style to use. |
| 127 | |
| 128 | added checks to new -v code that permits -vnospace; thanks to |
| 129 | ruslan ermilov for spotting this and providing the patch. |
| 130 | |
| 131 | removed fixed limit on number of open files; thanks to aleksey |
| 132 | cheusov and christos zoulos. |
| 133 | |
| 134 | fixed day 1 bug that resurrected deleted elements of ARGV when |
| 135 | used as filenames (in lib.c). |
| 136 | |
| 137 | minor type fiddles to make gcc -Wall -pedantic happier (but not |
| 138 | totally so); turned on -fno-strict-aliasing in makefile. |
| 139 | |
| 140 | May 6, 2011: |
| 141 | added #ifdef for isblank. |
| 142 | now allows -ffoo as well as -f foo arguments. |
| 143 | (thanks, ruslan) |
| 144 | |
| 145 | May 1, 2011: |
| 146 | after advice from todd miller, kevin lo, ruslan ermilov, |
| 147 | and arnold robbins, changed srand() to return the previous |
| 148 | seed (which is 1 on the first call of srand). the seed is |
| 149 | an Awkfloat internally though converted to unsigned int to |
| 150 | pass to the library srand(). thanks, everyone. |
| 151 | |
| 152 | fixed a subtle (and i hope low-probability) overflow error |
| 153 | in fldbld, by adding space for one extra \0. thanks to |
| 154 | robert bassett for spotting this one and providing a fix. |
| 155 | |
| 156 | removed the files related to compilation on windows. i no |
| 157 | longer have anything like a current windows environment, so |
| 158 | i can't test any of it. |
| 159 | |
| 160 | May 23, 2010: |
| 161 | fixed long-standing overflow bug in run.c; many thanks to |
| 162 | nelson beebe for spotting it and providing the fix. |
| 163 | |
| 164 | fixed bug that didn't parse -vd=1 properly; thanks to santiago |
| 165 | vila for spotting it. |
| 166 | |
| 167 | Feb 8, 2010: |
| 168 | i give up. replaced isblank with isspace in b.c; there are |
| 169 | no consistent header files. |
| 170 | |
| 171 | Nov 26, 2009: |
| 172 | fixed a long-standing issue with when FS takes effect. a |
| 173 | change to FS is now noticed immediately for subsequent splits. |
| 174 | |
| 175 | changed the name getline() to awkgetline() to avoid yet another |
| 176 | name conflict somewhere. |
| 177 | |
| 178 | Feb 11, 2009: |
| 179 | temporarily for now defined HAS_ISBLANK, since that seems to |
| 180 | be the best way through the thicket. isblank arrived in C99, |
| 181 | but seems to be arriving at different systems at different |
| 182 | times. |
| 183 | |
| 184 | Oct 8, 2008: |
| 185 | fixed typo in b.c that set tmpvec wrongly. no one had ever |
| 186 | run into the problem, apparently. thanks to alistair crooks. |
| 187 | |
| 188 | Oct 23, 2007: |
| 189 | minor fix in lib.c: increase inputFS to 100, change malloc |
| 190 | for fields to n+1. |
| 191 | |
| 192 | fixed memory fault caused by out of order test in setsval. |
| 193 | |
| 194 | thanks to david o'brien, freebsd, for both fixes. |
| 195 | |
| 196 | May 1, 2007: |
| 197 | fiddle in makefile to fix for BSD make; thanks to igor sobrado. |
| 198 | |
| 199 | Mar 31, 2007: |
| 200 | fixed some null pointer refs calling adjbuf. |
| 201 | |
| 202 | Feb 21, 2007: |
| 203 | fixed a bug in matching the null RE in sub and gsub. thanks to al aho |
| 204 | who actually did the fix (in b.c), and to wolfgang seeberg for finding |
| 205 | it and providing a very compact test case. |
| 206 | |
| 207 | fixed quotation in b.c; thanks to Hal Pratt and the Princeton Dante |
| 208 | Project. |
| 209 | |
| 210 | removed some no-effect asserts in run.c. |
| 211 | |
| 212 | fiddled maketab.c to not complain about bison-generated values. |
| 213 | |
| 214 | removed the obsolete -V argument; fixed --version to print the |
| 215 | version and exit. |
| 216 | |
| 217 | fixed wording and an outright error in the usage message; thanks to igor |
| 218 | sobrado and jason mcintyre. |
| 219 | |
| 220 | fixed a bug in -d that caused core dump if no program followed. |
| 221 | |
| 222 | Jan 1, 2007: |
| 223 | dropped mac.code from makefile; there are few non-MacOSX |
| 224 | mac's these days. |
| 225 | |
| 226 | Jan 17, 2006: |
| 227 | system() not flagged as unsafe in the unadvertised -safe option. |
| 228 | found it while enhancing tests before shipping the ;login: article. |
| 229 | practice what you preach. |
| 230 | |
| 231 | removed the 9-years-obsolete -mr and -mf flags. |
| 232 | |
| 233 | added -version and --version options. |
| 234 | |
| 235 | core dump on linux with BEGIN {nextfile}, now fixed. |
| 236 | |
| 237 | removed some #ifdef's in run.c and lex.c that appear to no |
| 238 | longer be necessary. |
| 239 | |
| 240 | Apr 24, 2005: |
| 241 | modified lib.c so that values of $0 et al are preserved in the END |
| 242 | block, apparently as required by posix. thanks to havard eidnes |
| 243 | for the report and code. |
| 244 | |
| 245 | Jan 14, 2005: |
| 246 | fixed infinite loop in parsing, originally found by brian tsang. |
| 247 | thanks to arnold robbins for a suggestion that started me |
| 248 | rethinking it. |
| 249 | |
| 250 | Dec 31, 2004: |
| 251 | prevent overflow of -f array in main, head off potential error in |
| 252 | call of SYNTAX(), test malloc return in lib.c, all with thanks to |
| 253 | todd miller. |
| 254 | |
| 255 | Dec 22, 2004: |
| 256 | cranked up size of NCHARS; coverity thinks it can be overrun with |
| 257 | smaller size, and i think that's right. added some assertions to b.c |
| 258 | to catch places where it might overrun. the RE code is still fragile. |
| 259 | |
| 260 | Dec 5, 2004: |
| 261 | fixed a couple of overflow problems with ridiculous field numbers: |
| 262 | e.g., print $(2^32-1). thanks to ruslan ermilov, giorgos keramidas |
| 263 | and david o'brien at freebsd.org for patches. this really should |
| 264 | be re-done from scratch. |
| 265 | |
| 266 | Nov 21, 2004: |
| 267 | fixed another 25-year-old RE bug, in split. it's another failure |
| 268 | to (re-)initialize. thanks to steve fisher for spotting this and |
| 269 | providing a good test case. |
| 270 | |
| 271 | Nov 22, 2003: |
| 272 | fixed a bug in regular expressions that dates (so help me) from 1977; |
| 273 | it's been there from the beginning. an anchored longest match that |
| 274 | was longer than the number of states triggered a failure to initialize |
| 275 | the machine properly. many thanks to moinak ghosh for not only finding |
| 276 | this one but for providing a fix, in some of the most mysterious |
| 277 | code known to man. |
| 278 | |
| 279 | fixed a storage leak in call() that appears to have been there since |
| 280 | 1983 or so -- a function without an explicit return that assigns a |
| 281 | string to a parameter leaked a Cell. thanks to moinak ghosh for |
| 282 | spotting this very subtle one. |
| 283 | |
| 284 | Jul 31, 2003: |
| 285 | fixed, thanks to andrey chernov and ruslan ermilov, a bug in lex.c |
| 286 | that mis-handled the character 255 in input. (it was being compared |
| 287 | to EOF with a signed comparison.) |
| 288 | |
| 289 | Jul 29, 2003: |
| 290 | fixed (i think) the long-standing botch that included the beginning of |
| 291 | line state ^ for RE's in the set of valid characters; this led to a |
| 292 | variety of odd problems, including failure to properly match certain |
| 293 | regular expressions in non-US locales. thanks to ruslan for keeping |
| 294 | at this one. |
| 295 | |
| 296 | Jul 28, 2003: |
| 297 | n-th try at getting internationalization right, with thanks to volker |
| 298 | kiefel, arnold robbins and ruslan ermilov for advice, though they |
| 299 | should not be blamed for the outcome. according to posix, "." is the |
| 300 | radix character in programs and command line arguments regardless of |
| 301 | the locale; otherwise, the locale should prevail for input and output |
| 302 | of numbers. so it's intended to work that way. |
| 303 | |
| 304 | i have rescinded the attempt to use strcoll in expanding shorthands in |
| 305 | regular expressions (cclenter). its properties are much too |
| 306 | surprising; for example [a-c] matches aAbBc in locale en_US but abBcC |
| 307 | in locale fr_CA. i can see how this might arise by implementation |
| 308 | but i cannot explain it to a human user. (this behavior can be seen |
| 309 | in gawk as well; we're leaning on the same library.) |
| 310 | |
| 311 | the issue appears to be that strcoll is meant for sorting, where |
| 312 | merging upper and lower case may make sense (though note that unix |
| 313 | sort does not do this by default either). it is not appropriate |
| 314 | for regular expressions, where the goal is to match specific |
| 315 | patterns of characters. in any case, the notations [:lower:], etc., |
| 316 | are available in awk, and they are more likely to work correctly in |
| 317 | most locales. |
| 318 | |
| 319 | a moratorium is hereby declared on internationalization changes. |
| 320 | i apologize to friends and colleagues in other parts of the world. |
| 321 | i would truly like to get this "right", but i don't know what |
| 322 | that is, and i do not want to keep making changes until it's clear. |
| 323 | |
| 324 | Jul 4, 2003: |
| 325 | fixed bug that permitted non-terminated RE, as in "awk /x". |
| 326 | |
| 327 | Jun 1, 2003: |
| 328 | subtle change to split: if source is empty, number of elems |
| 329 | is always 0 and the array is not set. |
| 330 | |
| 331 | Mar 21, 2003: |
| 332 | added some parens to isblank, in another attempt to make things |
| 333 | internationally portable. |
| 334 | |
| 335 | Mar 14, 2003: |
| 336 | the internationalization changes, somewhat modified, are now |
| 337 | reinstated. in theory awk will now do character comparisons |
| 338 | and case conversions in national language, but "." will always |
| 339 | be the decimal point separator on input and output regardless |
| 340 | of national language. isblank(){} has an #ifndef. |
| 341 | |
| 342 | this no longer compiles on windows: LC_MESSAGES isn't defined |
| 343 | in vc6++. |
| 344 | |
| 345 | fixed subtle behavior in field and record splitting: if FS is |
| 346 | a single character and RS is not empty, \n is NOT a separator. |
| 347 | this tortuous reading is found in the awk book; behavior now |
| 348 | matches gawk and mawk. |
| 349 | |
| 350 | Dec 13, 2002: |
| 351 | for the moment, the internationalization changes of nov 29 are |
| 352 | rolled back -- programs like x = 1.2 don't work in some locales, |
| 353 | because the parser is expecting x = 1,2. until i understand this |
| 354 | better, this will have to wait. |
| 355 | |
| 356 | Nov 29, 2002: |
| 357 | modified b.c (with tiny changes in main and run) to support |
| 358 | locales, using strcoll and iswhatever tests for posix character |
| 359 | classes. thanks to ruslan ermilov (ru@freebsd.org) for code. |
| 360 | the function isblank doesn't seem to have propagated to any |
| 361 | header file near me, so it's there explicitly. not properly |
| 362 | tested on non-ascii character sets by me. |
| 363 | |
| 364 | Jun 28, 2002: |
| 365 | modified run/format() and tran/getsval() to do a slightly better |
| 366 | job on using OFMT for output from print and CONVFMT for other |
| 367 | number->string conversions, as promised by posix and done by |
| 368 | gawk and mawk. there are still places where it doesn't work |
| 369 | right if CONVFMT is changed; by then the STR attribute of the |
| 370 | variable has been irrevocably set. thanks to arnold robbins for |
| 371 | code and examples. |
| 372 | |
| 373 | fixed subtle bug in format that could get core dump. thanks to |
| 374 | Jaromir Dolecek <jdolecek@NetBSD.org> for finding and fixing. |
| 375 | minor cleanup in run.c / format() at the same time. |
| 376 | |
| 377 | added some tests for null pointers to debugging printf's, which |
| 378 | were never intended for external consumption. thanks to dave |
| 379 | kerns (dkerns@lucent.com) for pointing this out. |
| 380 | |
| 381 | GNU compatibility: an empty regexp matches anything (thanks to |
| 382 | dag-erling smorgrav, des@ofug.org). subject to reversion if |
| 383 | this does more harm than good. |
| 384 | |
| 385 | pervasive small changes to make things more const-correct, as |
| 386 | reported by gcc's -Wwrite-strings. as it says in the gcc manual, |
| 387 | this may be more nuisance than useful. provoked by a suggestion |
| 388 | and code from arnaud desitter, arnaud@nimbus.geog.ox.ac.uk |
| 389 | |
| 390 | minor documentation changes to note that this now compiles out |
| 391 | of the box on Mac OS X. |
| 392 | |
| 393 | Feb 10, 2002: |
| 394 | changed types in posix chars structure to quiet solaris cc. |
| 395 | |
| 396 | Jan 1, 2002: |
| 397 | fflush() or fflush("") flushes all files and pipes. |
| 398 | |
| 399 | length(arrayname) returns number of elements; thanks to |
| 400 | arnold robbins for suggestion. |
| 401 | |
| 402 | added a makefile.win to make it easier to build on windows. |
| 403 | based on dan allen's buildwin.bat. |
| 404 | |
| 405 | Nov 16, 2001: |
| 406 | added support for posix character class names like [:digit:], |
| 407 | which are not exactly shorter than [0-9] and perhaps no more |
| 408 | portable. thanks to dag-erling smorgrav for code. |
| 409 | |
| 410 | Feb 16, 2001: |
| 411 | removed -m option; no longer needed, and it was actually |
| 412 | broken (noted thanks to volker kiefel). |
| 413 | |
| 414 | Feb 10, 2001: |
| 415 | fixed an appalling bug in gettok: any sequence of digits, +,-, E, e, |
| 416 | and period was accepted as a valid number if it started with a period. |
| 417 | this would never have happened with the lex version. |
| 418 | |
| 419 | other 1-character botches, now fixed, include a bare $ and a |
| 420 | bare " at the end of the input. |
| 421 | |
| 422 | Feb 7, 2001: |
| 423 | more (const char *) casts in b.c and tran.c to silence warnings. |
| 424 | |
| 425 | Nov 15, 2000: |
| 426 | fixed a bug introduced in august 1997 that caused expressions |
| 427 | like $f[1] to be syntax errors. thanks to arnold robbins for |
| 428 | noticing this and providing a fix. |
| 429 | |
| 430 | Oct 30, 2000: |
| 431 | fixed some nextfile bugs: not handling all cases. thanks to |
| 432 | arnold robbins for pointing this out. new regressions added. |
| 433 | |
| 434 | close() is now a function. it returns whatever the library |
| 435 | fclose returns, and -1 for closing a file or pipe that wasn't |
| 436 | opened. |
| 437 | |
| 438 | Sep 24, 2000: |
| 439 | permit \n explicitly in character classes; won't work right |
| 440 | if comes in as "[\n]" but ok as /[\n]/, because of multiple |
| 441 | processing of \'s. thanks to arnold robbins. |
| 442 | |
| 443 | July 5, 2000: |
| 444 | minor fiddles in tran.c to keep compilers happy about uschar. |
| 445 | thanks to norman wilson. |
| 446 | |
| 447 | May 25, 2000: |
| 448 | yet another attempt at making 8-bit input work, with another |
| 449 | band-aid in b.c (member()), and some (uschar) casts to head |
| 450 | off potential errors in subscripts (like isdigit). also |
| 451 | changed HAT to NCHARS-2. thanks again to santiago vila. |
| 452 | |
| 453 | changed maketab.c to ignore apparently out of range definitions |
| 454 | instead of halting; new freeBSD generates one. thanks to |
| 455 | jon snader <jsnader@ix.netcom.com> for pointing out the problem. |
| 456 | |
| 457 | May 2, 2000: |
| 458 | fixed an 8-bit problem in b.c by making several char*'s into |
| 459 | unsigned char*'s. not clear i have them all yet. thanks to |
| 460 | Santiago Vila <sanvila@unex.es> for the bug report. |
| 461 | |
| 462 | Apr 21, 2000: |
| 463 | finally found and fixed a memory leak in function call; it's |
| 464 | been there since functions were added ~1983. thanks to |
| 465 | jon bentley for the test case that found it. |
| 466 | |
| 467 | added test in envinit to catch environment "variables" with |
| 468 | names beginning with '='; thanks to Berend Hasselman. |
| 469 | |
| 470 | Jul 28, 1999: |
| 471 | added test in defn() to catch function foo(foo), which |
| 472 | otherwise recurses until core dump. thanks to arnold |
| 473 | robbins for noticing this. |
| 474 | |
| 475 | Jun 20, 1999: |
| 476 | added *bp in gettok in lex.c; appears possible to exit function |
| 477 | without terminating the string. thanks to russ cox. |
| 478 | |
| 479 | Jun 2, 1999: |
| 480 | added function stdinit() to run to initialize files[] array, |
| 481 | in case stdin, etc., are not constants; some compilers care. |
| 482 | |
| 483 | May 10, 1999: |
| 484 | replaced the ERROR ... FATAL, etc., macros with functions |
| 485 | based on vprintf, to avoid problems caused by overrunning |
| 486 | fixed-size errbuf array. thanks to ralph corderoy for the |
| 487 | impetus, and for pointing out a string termination bug in |
| 488 | qstring as well. |
| 489 | |
| 490 | Apr 21, 1999: |
| 491 | fixed bug that caused occasional core dumps with commandline |
| 492 | variable with value ending in \. (thanks to nelson beebe for |
| 493 | the test case.) |
| 494 | |
| 495 | Apr 16, 1999: |
| 496 | with code kindly provided by Bruce Lilly, awk now parses |
| 497 | /=/ and similar constructs more sensibly in more places. |
| 498 | Bruce also provided some helpful test cases. |
| 499 | |
| 500 | Apr 5, 1999: |
| 501 | changed true/false to True/False in run.c to make it |
| 502 | easier to compile with C++. Added some casts on malloc |
| 503 | and realloc to be honest about casts; ditto. changed |
| 504 | ltype int to long in struct rrow to reduce some 64-bit |
| 505 | complaints; other changes scattered throughout for the |
| 506 | same purpose. thanks to Nelson Beebe for these portability |
| 507 | improvements. |
| 508 | |
| 509 | removed some horrible pointer-int casting in b.c and elsewhere |
| 510 | by adding ptoi and itonp to localize the casts, which are |
| 511 | all benign. fixed one incipient bug that showed up on sgi |
| 512 | in 64-bit mode. |
| 513 | |
| 514 | reset lineno for new source file; include filename in error |
| 515 | message. also fixed line number error in continuation lines. |
| 516 | (thanks to Nelson Beebe for both of these.) |
| 517 | |
| 518 | Mar 24, 1999: |
| 519 | Nelson Beebe notes that irix 5.3 yacc dies with a bogus |
| 520 | error; use a newer version or switch to bison, since sgi |
| 521 | is unlikely to fix it. |
| 522 | |
| 523 | Mar 5, 1999: |
| 524 | changed isnumber to is_number to avoid the problem caused by |
| 525 | versions of ctype.h that include the name isnumber. |
| 526 | |
| 527 | distribution now includes a script for building on a Mac, |
| 528 | thanks to Dan Allen. |
| 529 | |
| 530 | Feb 20, 1999: |
| 531 | fixed memory leaks in run.c (call) and tran.c (setfval). |
| 532 | thanks to Stephen Nutt for finding these and providing the fixes. |
| 533 | |
| 534 | Jan 13, 1999: |
| 535 | replaced srand argument by (unsigned int) in run.c; |
| 536 | avoids problem on Mac and potentially on Unix & Windows. |
| 537 | thanks to Dan Allen. |
| 538 | |
| 539 | added a few (int) casts to silence useless compiler warnings. |
| 540 | e.g., errorflag= in run.c jump(). |
| 541 | |
| 542 | added proctab.c to the bundle outout; one less thing |
| 543 | to have to compile out of the box. |
| 544 | |
| 545 | added calls to _popen and _pclose to the win95 stub for |
| 546 | pipes (thanks to Steve Adams for this helpful suggestion). |
| 547 | seems to work, though properties are not well understood |
| 548 | by me, and it appears that under some circumstances the |
| 549 | pipe output is truncated. Be careful. |
| 550 | |
| 551 | Oct 19, 1998: |
| 552 | fixed a couple of bugs in getrec: could fail to update $0 |
| 553 | after a getline var; because inputFS wasn't initialized, |
| 554 | could split $0 on every character, a misleading diversion. |
| 555 | |
| 556 | fixed caching bug in makedfa: LRU was actually removing |
| 557 | least often used. |
| 558 | |
| 559 | thanks to ross ridge for finding these, and for providing |
| 560 | great bug reports. |
| 561 | |
| 562 | May 12, 1998: |
| 563 | fixed potential bug in readrec: might fail to update record |
| 564 | pointer after growing. thanks to dan levy for spotting this |
| 565 | and suggesting the fix. |
| 566 | |
| 567 | Mar 12, 1998: |
| 568 | added -V to print version number and die. |
| 569 | |
Arnold D. Robbins | 32093f5 | 2018-08-22 20:40:26 +0300 | [diff] [blame] | 570 | [notify dave kerns, dkerns@dacsoup.ih.lucent.com] |
| 571 | |
Brian Kernighan | e37f882 | 2012-12-22 10:46:35 -0500 | [diff] [blame] | 572 | Feb 11, 1998: |
| 573 | subtle silent bug in lex.c: if the program ended with a number |
| 574 | longer than 1 digit, part of the input would be pushed back and |
| 575 | parsed again because token buffer wasn't terminated right. |
| 576 | example: awk 'length($0) > 10'. blush. at least i found it |
| 577 | myself. |
| 578 | |
| 579 | Aug 31, 1997: |
| 580 | s/adelete/awkdelete/: SGI uses this in malloc.h. |
| 581 | thanks to nelson beebe for pointing this one out. |
| 582 | |
| 583 | Aug 21, 1997: |
| 584 | fixed some bugs in sub and gsub when replacement includes \\. |
| 585 | this is a dark, horrible corner, but at least now i believe that |
| 586 | the behavior is the same as gawk and the intended posix standard. |
| 587 | thanks to arnold robbins for advice here. |
| 588 | |
| 589 | Aug 9, 1997: |
| 590 | somewhat regretfully, replaced the ancient lex-based lexical |
| 591 | analyzer with one written in C. it's longer, generates less code, |
| 592 | and more portable; the old one depended too much on mysterious |
| 593 | properties of lex that were not preserved in other environments. |
| 594 | in theory these recognize the same language. |
| 595 | |
| 596 | now using strtod to test whether a string is a number, instead of |
| 597 | the convoluted original function. should be more portable and |
| 598 | reliable if strtod is implemented right. |
| 599 | |
| 600 | removed now-pointless optimization in makefile that tries to avoid |
| 601 | recompilation when awkgram.y is changed but symbols are not. |
| 602 | |
| 603 | removed most fixed-size arrays, though a handful remain, some |
| 604 | of which are unchecked. you have been warned. |
| 605 | |
| 606 | Aug 4, 1997: |
| 607 | with some trepidation, replaced the ancient code that managed |
| 608 | fields and $0 in fixed-size arrays with arrays that grow on |
| 609 | demand. there is still some tension between trying to make this |
| 610 | run fast and making it clean; not sure it's right yet. |
| 611 | |
| 612 | the ill-conceived -mr and -mf arguments are now useful only |
| 613 | for debugging. previous dynamic string code removed. |
| 614 | |
| 615 | numerous other minor cleanups along the way. |
| 616 | |
| 617 | Jul 30, 1997: |
| 618 | using code provided by dan levy (to whom profuse thanks), replaced |
| 619 | fixed-size arrays and awkward kludges by a fairly uniform mechanism |
| 620 | to grow arrays as needed for printf, sub, gsub, etc. |
| 621 | |
| 622 | Jul 23, 1997: |
| 623 | falling off the end of a function returns "" and 0, not 0. |
| 624 | thanks to arnold robbins. |
| 625 | |
| 626 | Jun 17, 1997: |
| 627 | replaced several fixed-size arrays by dynamically-created ones |
| 628 | in run.c; added overflow tests to some previously unchecked cases. |
| 629 | getline, toupper, tolower. |
| 630 | |
| 631 | getline code is still broken in that recursive calls may wind |
| 632 | up using the same space. [fixed later] |
| 633 | |
| 634 | increased RECSIZE to 8192 to push problems further over the horizon. |
| 635 | |
| 636 | added \r to \n as input line separator for programs, not data. |
| 637 | damn CRLFs. |
| 638 | |
| 639 | modified format() to permit explicit printf("%c", 0) to include |
| 640 | a null byte in output. thanks to ken stailey for the fix. |
| 641 | |
| 642 | added a "-safe" argument that disables file output (print >, |
| 643 | print >>), process creation (cmd|getline, print |, system), and |
| 644 | access to the environment (ENVIRON). this is a first approximation |
| 645 | to a "safe" version of awk, but don't rely on it too much. thanks |
| 646 | to joan feigenbaum and matt blaze for the inspiration long ago. |
| 647 | |
| 648 | Jul 8, 1996: |
| 649 | fixed long-standing bug in sub, gsub(/a/, "\\\\&"); thanks to |
| 650 | ralph corderoy. |
| 651 | |
| 652 | Jun 29, 1996: |
| 653 | fixed awful bug in new field splitting; didn't get all the places |
| 654 | where input was done. |
| 655 | |
| 656 | Jun 28, 1996: |
| 657 | changed field-splitting to conform to posix definition: fields are |
| 658 | split using the value of FS at the time of input; it used to be |
| 659 | the value when the field or NF was first referred to, a much less |
| 660 | predictable definition. thanks to arnold robbins for encouragement |
| 661 | to do the right thing. |
| 662 | |
| 663 | May 28, 1996: |
| 664 | fixed appalling but apparently unimportant bug in parsing octal |
| 665 | numbers in reg exprs. |
| 666 | |
| 667 | explicit hex in reg exprs now limited to 2 chars: \xa, \xaa. |
| 668 | |
| 669 | May 27, 1996: |
| 670 | cleaned up some declarations so gcc -Wall is now almost silent. |
| 671 | |
| 672 | makefile now includes backup copies of ytab.c and lexyy.c in case |
| 673 | one makes before looking; it also avoids recreating lexyy.c unless |
| 674 | really needed. |
| 675 | |
| 676 | s/aprintf/awkprint, s/asprintf/awksprintf/ to avoid some name clashes |
| 677 | with unwisely-written header files. |
| 678 | |
| 679 | thanks to jeffrey friedl for several of these. |
| 680 | |
| 681 | May 26, 1996: |
| 682 | an attempt to rationalize the (unsigned) char issue. almost all |
| 683 | instances of unsigned char have been removed; the handful of places |
| 684 | in b.c where chars are used as table indices have been hand-crafted. |
| 685 | added some latin-1 tests to the regression, but i'm not confident; |
| 686 | none of my compilers seem to care much. thanks to nelson beebe for |
| 687 | pointing out some others that do care. |
| 688 | |
| 689 | May 2, 1996: |
| 690 | removed all register declarations. |
| 691 | |
| 692 | enhanced split(), as in gawk, etc: split(s, a, "") splits s into |
| 693 | a[1]...a[length(s)] with each character a single element. |
| 694 | |
| 695 | made the same changes for field-splitting if FS is "". |
| 696 | |
| 697 | added nextfile, as in gawk: causes immediate advance to next |
| 698 | input file. (thanks to arnold robbins for inspiration and code). |
| 699 | |
| 700 | small fixes to regexpr code: can now handle []], [[], and |
| 701 | variants; [] is now a syntax error, rather than matching |
| 702 | everything; [z-a] is now empty, not z. far from complete |
| 703 | or correct, however. (thanks to jeffrey friedl for pointing out |
| 704 | some awful behaviors.) |
| 705 | |
| 706 | Apr 29, 1996: |
| 707 | replaced uchar by uschar everywhere; apparently some compilers |
| 708 | usurp this name and this causes conflicts. |
| 709 | |
| 710 | fixed call to time in run.c (bltin); arg is time_t *. |
| 711 | |
| 712 | replaced horrible pointer/long punning in b.c by a legitimate |
| 713 | union. should be safer on 64-bit machines and cleaner everywhere. |
| 714 | (thanks to nelson beebe for pointing out some of these problems.) |
| 715 | |
| 716 | replaced nested comments by #if 0...#endif in run.c, lib.c. |
| 717 | |
| 718 | removed getsval, setsval, execute macros from run.c and lib.c. |
| 719 | machines are 100x faster than they were when these macros were |
| 720 | first used. |
| 721 | |
| 722 | revised filenames: awk.g.y => awkgram.y, awk.lx.l => awklex.l, |
| 723 | y.tab.[ch] => ytab.[ch], lex.yy.c => lexyy.c, all in the aid of |
| 724 | portability to nameless systems. |
| 725 | |
| 726 | "make bundle" now includes yacc and lex output files for recipients |
| 727 | who don't have yacc or lex. |
| 728 | |
| 729 | Aug 15, 1995: |
| 730 | initialized Cells in setsymtab more carefully; some fields |
| 731 | were not set. (thanks to purify, all of whose complaints i |
| 732 | think i now understand.) |
| 733 | |
| 734 | fixed at least one error in gsub that looked at -1-th element |
| 735 | of an array when substituting for a null match (e.g., $). |
| 736 | |
| 737 | delete arrayname is now legal; it clears the elements but leaves |
| 738 | the array, which may not be the right behavior. |
| 739 | |
| 740 | modified makefile: my current make can't cope with the test used |
| 741 | to avoid unnecessary yacc invocations. |
| 742 | |
| 743 | Jul 17, 1995: |
| 744 | added dynamically growing strings to awk.lx.l and b.c |
| 745 | to permit regular expressions to be much bigger. |
| 746 | the state arrays can still overflow. |
| 747 | |
| 748 | Aug 24, 1994: |
| 749 | detect duplicate arguments in function definitions (mdm). |
| 750 | |
| 751 | May 11, 1994: |
| 752 | trivial fix to printf to limit string size in sub(). |
| 753 | |
| 754 | Apr 22, 1994: |
| 755 | fixed yet another subtle self-assignment problem: |
| 756 | $1 = $2; $1 = $1 clobbered $1. |
| 757 | |
| 758 | Regression tests now use private echo, to avoid quoting problems. |
| 759 | |
| 760 | Feb 2, 1994: |
| 761 | changed error() to print line number as %d, not %g. |
| 762 | |
| 763 | Jul 23, 1993: |
| 764 | cosmetic changes: increased sizes of some arrays, |
| 765 | reworded some error messages. |
| 766 | |
| 767 | added CONVFMT as in posix (just replaced OFMT in getsval) |
| 768 | |
| 769 | FILENAME is now "" until the first thing that causes a file |
| 770 | to be opened. |
| 771 | |
| 772 | Nov 28, 1992: |
| 773 | deleted yyunput and yyoutput from proto.h; |
| 774 | different versions of lex give these different declarations. |
| 775 | |
| 776 | May 31, 1992: |
| 777 | added -mr N and -mf N options: more record and fields. |
| 778 | these really ought to adjust automatically. |
| 779 | |
| 780 | cleaned up some error messages; "out of space" now means |
| 781 | malloc returned NULL in all cases. |
| 782 | |
| 783 | changed rehash so that if it runs out, it just returns; |
| 784 | things will continue to run slow, but maybe a bit longer. |
| 785 | |
| 786 | Apr 24, 1992: |
| 787 | remove redundant close of stdin when using -f -. |
| 788 | |
| 789 | got rid of core dump with -d; awk -d just prints date. |
| 790 | |
| 791 | Apr 12, 1992: |
| 792 | added explicit check for /dev/std(in,out,err) in redirection. |
| 793 | unlike gawk, no /dev/fd/n yet. |
| 794 | |
| 795 | added (file/pipe) builtin. hard to test satisfactorily. |
| 796 | not posix. |
| 797 | |
| 798 | Feb 20, 1992: |
| 799 | recompile after abortive changes; should be unchanged. |
| 800 | |
| 801 | Dec 2, 1991: |
| 802 | die-casting time: converted to ansi C, installed that. |
| 803 | |
| 804 | Nov 30, 1991: |
| 805 | fixed storage leak in freefa, failing to recover [N]CCL. |
| 806 | thanks to Bill Jones (jones@cs.usask.ca) |
| 807 | |
| 808 | Nov 19, 1991: |
| 809 | use RAND_MAX instead of literal in builtin(). |
| 810 | |
| 811 | Nov 12, 1991: |
| 812 | cranked up some fixed-size arrays in b.c, and added a test for |
| 813 | overflow in penter. thanks to mark larsen. |
| 814 | |
| 815 | Sep 24, 1991: |
| 816 | increased buffer in gsub. a very crude fix to a general problem. |
| 817 | and again on Sep 26. |
| 818 | |
| 819 | Aug 18, 1991: |
| 820 | enforce variable name syntax for commandline variables: has to |
| 821 | start with letter or _. |
| 822 | |
| 823 | Jul 27, 1991: |
| 824 | allow newline after ; in for statements. |
| 825 | |
| 826 | Jul 21, 1991: |
| 827 | fixed so that in self-assignment like $1=$1, side effects |
| 828 | like recomputing $0 take place. (this is getting subtle.) |
| 829 | |
| 830 | Jun 30, 1991: |
| 831 | better test for detecting too-long output record. |
| 832 | |
| 833 | Jun 2, 1991: |
| 834 | better defense against very long printf strings. |
| 835 | made break and continue illegal outside of loops. |
| 836 | |
| 837 | May 13, 1991: |
| 838 | removed extra arg on gettemp, tempfree. minor error message rewording. |
| 839 | |
| 840 | May 6, 1991: |
| 841 | fixed silly bug in hex parsing in hexstr(). |
| 842 | removed an apparently unnecessary test in isnumber(). |
| 843 | warn about weird printf conversions. |
| 844 | fixed unchecked array overwrite in relex(). |
| 845 | |
| 846 | changed for (i in array) to access elements in sorted order. |
| 847 | then unchanged it -- it really does run slower in too many cases. |
| 848 | left the code in place, commented out. |
| 849 | |
| 850 | Feb 10, 1991: |
| 851 | check error status on all writes, to avoid banging on full disks. |
| 852 | |
| 853 | Jan 28, 1991: |
| 854 | awk -f - reads the program from stdin. |
| 855 | |
| 856 | Jan 11, 1991: |
| 857 | failed to set numeric state on $0 in cmd|getline context in run.c. |
| 858 | |
| 859 | Nov 2, 1990: |
| 860 | fixed sleazy test for integrality in getsval; use modf. |
| 861 | |
| 862 | Oct 29, 1990: |
| 863 | fixed sleazy buggy code in lib.c that looked (incorrectly) for |
| 864 | too long input lines. |
| 865 | |
| 866 | Oct 14, 1990: |
| 867 | fixed the bug on p. 198 in which it couldn't deduce that an |
| 868 | argument was an array in some contexts. replaced the error |
| 869 | message in intest() by code that damn well makes it an array. |
| 870 | |
| 871 | Oct 8, 1990: |
| 872 | fixed horrible bug: types and values were not preserved in |
| 873 | some kinds of self-assignment. (in assign().) |
| 874 | |
| 875 | Aug 24, 1990: |
| 876 | changed NCHARS to 256 to handle 8-bit characters in strings |
| 877 | presented to match(), etc. |
| 878 | |
| 879 | Jun 26, 1990: |
| 880 | changed struct rrow (awk.h) to use long instead of int for lval, |
| 881 | since cfoll() stores a pointer in it. now works better when int's |
| 882 | are smaller than pointers! |
| 883 | |
| 884 | May 6, 1990: |
| 885 | AVA fixed the grammar so that ! is uniformly of the same precedence as |
| 886 | unary + and -. This renders illegal some constructs like !x=y, which |
| 887 | now has to be parenthesized as !(x=y), and makes others work properly: |
| 888 | !x+y is (!x)+y, and x!y is x !y, not two pattern-action statements. |
| 889 | (These problems were pointed out by Bob Lenk of Posix.) |
| 890 | |
| 891 | Added \x to regular expressions (already in strings). |
| 892 | Limited octal to octal digits; \8 and \9 are not octal. |
| 893 | Centralized the code for parsing escapes in regular expressions. |
| 894 | Added a bunch of tests to T.re and T.sub to verify some of this. |
| 895 | |
| 896 | Feb 9, 1990: |
| 897 | fixed null pointer dereference bug in main.c: -F[nothing]. sigh. |
| 898 | |
| 899 | restored srand behavior: it returns the current seed. |
| 900 | |
| 901 | Jan 18, 1990: |
| 902 | srand now returns previous seed value (0 to start). |
| 903 | |
| 904 | Jan 5, 1990: |
| 905 | fix potential problem in tran.c -- something was freed, |
| 906 | then used in freesymtab. |
| 907 | |
| 908 | Oct 18, 1989: |
| 909 | another try to get the max number of open files set with |
| 910 | relatively machine-independent code. |
| 911 | |
| 912 | small fix to input() in case of multiple reads after EOF. |
| 913 | |
| 914 | Oct 11, 1989: |
| 915 | FILENAME is now defined in the BEGIN block -- too many old |
| 916 | programs broke. |
| 917 | |
| 918 | "-" means stdin in getline as well as on the commandline. |
| 919 | |
| 920 | added a bunch of casts to the code to tell the truth about |
| 921 | char * vs. unsigned char *, a right royal pain. added a |
| 922 | setlocale call to the front of main, though probably no one |
| 923 | has it usefully implemented yet. |
| 924 | |
| 925 | Aug 24, 1989: |
| 926 | removed redundant relational tests against nullnode if parse |
| 927 | tree already had a relational at that point. |
| 928 | |
| 929 | Aug 11, 1989: |
| 930 | fixed bug: commandline variable assignment has to look like |
| 931 | var=something. (consider the man page for =, in file =.1) |
| 932 | |
| 933 | changed number of arguments to functions to static arrays |
| 934 | to avoid repeated malloc calls. |
| 935 | |
| 936 | Aug 2, 1989: |
| 937 | restored -F (space) separator |
| 938 | |
| 939 | Jul 30, 1989: |
| 940 | added -v x=1 y=2 ... for immediate commandline variable assignment; |
| 941 | done before the BEGIN block for sure. they have to precede the |
| 942 | program if the program is on the commandline. |
| 943 | Modified Aug 2 to require a separate -v for each assignment. |
| 944 | |
| 945 | Jul 10, 1989: |
| 946 | fixed ref-thru-zero bug in environment code in tran.c |
| 947 | |
| 948 | Jun 23, 1989: |
| 949 | add newline to usage message. |
| 950 | |
| 951 | Jun 14, 1989: |
| 952 | added some missing ansi printf conversion letters: %i %X %E %G. |
| 953 | no sensible meaning for h or L, so they may not do what one expects. |
| 954 | |
| 955 | made %* conversions work. |
| 956 | |
| 957 | changed x^y so that if n is a positive integer, it's done |
| 958 | by explicit multiplication, thus achieving maximum accuracy. |
| 959 | (this should be done by pow() but it seems not to be locally.) |
| 960 | done to x ^= y as well. |
| 961 | |
| 962 | Jun 4, 1989: |
| 963 | ENVIRON array contains environment: if shell variable V=thing, |
| 964 | ENVIRON["V"] is "thing" |
| 965 | |
| 966 | multiple -f arguments permitted. error reporting is naive. |
| 967 | (they were permitted before, but only the last was used.) |
| 968 | |
| 969 | fixed a really stupid botch in the debugging macro dprintf |
| 970 | |
| 971 | fixed order of evaluation of commandline assignments to match |
| 972 | what the book claims: an argument of the form x=e is evaluated |
| 973 | at the time it would have been opened if it were a filename (p 63). |
| 974 | this invalidates the suggested answer to ex 4-1 (p 195). |
| 975 | |
| 976 | removed some code that permitted -F (space) fieldseparator, |
| 977 | since it didn't quite work right anyway. (restored aug 2) |
| 978 | |
| 979 | Apr 27, 1989: |
| 980 | Line number now accumulated correctly for comment lines. |
| 981 | |
| 982 | Apr 26, 1989: |
| 983 | Debugging output now includes a version date, |
| 984 | if one compiles it into the source each time. |
| 985 | |
| 986 | Apr 9, 1989: |
| 987 | Changed grammar to prohibit constants as 3rd arg of sub and gsub; |
| 988 | prevents class of overwriting-a-constant errors. (Last one?) |
| 989 | This invalidates the "banana" example on page 43 of the book. |
| 990 | |
| 991 | Added \a ("alert"), \v (vertical tab), \xhhh (hexadecimal), |
| 992 | as in ANSI, for strings. Rescinded the sloppiness that permitted |
| 993 | non-octal digits in \ooo. Warning: not all compilers and libraries |
| 994 | will be able to deal with \x correctly. |
| 995 | |
| 996 | Jan 9, 1989: |
| 997 | Fixed bug that caused tempcell list to contain a duplicate. |
| 998 | The fix is kludgy. |
| 999 | |
| 1000 | Dec 17, 1988: |
| 1001 | Catches some more commandline errors in main. |
| 1002 | Removed redundant decl of modf in run.c (confuses some compilers). |
| 1003 | Warning: there's no single declaration of malloc, etc., in awk.h |
| 1004 | that seems to satisfy all compilers. |
| 1005 | |
| 1006 | Dec 7, 1988: |
| 1007 | Added a bit of code to error printing to avoid printing nulls. |
| 1008 | (Not clear that it actually would.) |
| 1009 | |
| 1010 | Nov 27, 1988: |
| 1011 | With fear and trembling, modified the grammar to permit |
| 1012 | multiple pattern-action statements on one line without |
| 1013 | an explicit separator. By definition, this capitulation |
| 1014 | to the ghost of ancient implementations remains undefined |
| 1015 | and thus subject to change without notice or apology. |
| 1016 | DO NOT COUNT ON IT. |
| 1017 | |
| 1018 | Oct 30, 1988: |
| 1019 | Fixed bug in call() that failed to recover storage. |
| 1020 | |
| 1021 | A warning is now generated if there are more arguments |
| 1022 | in the call than in the definition (in lieu of fixing |
| 1023 | another storage leak). |
| 1024 | |
| 1025 | Oct 20, 1988: |
| 1026 | Fixed %c: if expr is numeric, use numeric value; |
| 1027 | otherwise print 1st char of string value. still |
| 1028 | doesn't work if the value is 0 -- won't print \0. |
| 1029 | |
| 1030 | Added a few more checks for running out of malloc. |
| 1031 | |
| 1032 | Oct 12, 1988: |
| 1033 | Fixed bug in call() that freed local arrays twice. |
| 1034 | |
| 1035 | Fixed to handle deletion of non-existent array right; |
| 1036 | complains about attempt to delete non-array element. |
| 1037 | |
| 1038 | Sep 30, 1988: |
| 1039 | Now guarantees to evaluate all arguments of built-in |
| 1040 | functions, as in C; the appearance is that arguments |
| 1041 | are evaluated before the function is called. Places |
| 1042 | affected are sub (gsub was ok), substr, printf, and |
| 1043 | all the built-in arithmetic functions in bltin(). |
| 1044 | A warning is generated if a bltin() is called with |
| 1045 | the wrong number of arguments. |
| 1046 | |
| 1047 | This requires changing makeprof on p167 of the book. |
| 1048 | |
| 1049 | Aug 23, 1988: |
| 1050 | setting FILENAME in BEGIN caused core dump, apparently |
| 1051 | because it was freeing space not allocated by malloc. |
| 1052 | |
| 1053 | July 24, 1988: |
| 1054 | fixed egregious error in toupper/tolower functions. |
| 1055 | still subject to rescinding, however. |
| 1056 | |
| 1057 | July 2, 1988: |
| 1058 | flush stdout before opening file or pipe |
| 1059 | |
| 1060 | July 2, 1988: |
| 1061 | performance bug in b.c/cgoto(): not freeing some sets of states. |
| 1062 | partial fix only right now, and the number of states increased |
| 1063 | to make it less obvious. |
| 1064 | |
| 1065 | June 1, 1988: |
| 1066 | check error status on close |
| 1067 | |
| 1068 | May 28, 1988: |
| 1069 | srand returns seed value it's using. |
| 1070 | see 1/18/90 |
| 1071 | |
| 1072 | May 22, 1988: |
| 1073 | Removed limit on depth of function calls. |
| 1074 | |
| 1075 | May 10, 1988: |
| 1076 | Fixed lib.c to permit _ in commandline variable names. |
| 1077 | |
| 1078 | Mar 25, 1988: |
| 1079 | main.c fixed to recognize -- as terminator of command- |
| 1080 | line options. Illegal options flagged. |
| 1081 | Error reporting slightly cleaned up. |
| 1082 | |
| 1083 | Dec 2, 1987: |
| 1084 | Newer C compilers apply a strict scope rule to extern |
| 1085 | declarations within functions. Two extern declarations in |
| 1086 | lib.c and tran.c have been moved to obviate this problem. |
| 1087 | |
| 1088 | Oct xx, 1987: |
| 1089 | Reluctantly added toupper and tolower functions. |
| 1090 | Subject to rescinding without notice. |
| 1091 | |
| 1092 | Sep 17, 1987: |
| 1093 | Error-message printer had printf(s) instead of |
| 1094 | printf("%s",s); got core dumps when the message |
| 1095 | included a %. |
| 1096 | |
| 1097 | Sep 12, 1987: |
| 1098 | Very long printf strings caused core dump; |
| 1099 | fixed aprintf, asprintf, format to catch them. |
| 1100 | Can still get a core dump in printf itself. |
| 1101 | |
| 1102 | |