[git commit master] awk: add comment about fixing bug 1333

Denys Vlasenko vda.linux at googlemail.com
Sat Apr 3 23:48:12 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=7379cd1ca19446547782edaaed727dcbe65103be
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 editors/awk.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/editors/awk.c b/editors/awk.c
index 3ba1a42..83c5b47 100644
--- a/editors/awk.c
+++ b/editors/awk.c
@@ -2060,6 +2060,8 @@ static int awk_sub(node *rn, const char *repl, int nm, var *src, var *dest, int
 //gsub(/\<b*/,"") on "abc" will reach this point, advance to "bc"
 //... and will erroneously match "b" even though it is NOT at the word start.
 //we need REG_NOTBOW but it does not exist...
+//TODO: if EXTRA_COMPAT=y, use GNU matching and re_search,
+//it should be able to do it correctly.
 			/* Subtle: this is safe only because
 			 * qrealloc allocated at least one extra byte */
 			resbuf[residx] = *sp;
-- 
1.6.3.3



More information about the busybox-cvs mailing list