diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-05 20:52:50 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-05 20:52:50 +0200 |
commit | da923f91d9bd8ade673a4f2f15be3d78a36b759e (patch) | |
tree | 1e1c9dcd0f0d56e95457c9af338bdbd6fb27806f /debug.c | |
parent | c084ecfb72609150bdfdce04831e83bb0e4e5cb6 (diff) | |
download | egawk-da923f91d9bd8ade673a4f2f15be3d78a36b759e.tar.gz egawk-da923f91d9bd8ade673a4f2f15be3d78a36b759e.tar.bz2 egawk-da923f91d9bd8ade673a4f2f15be3d78a36b759e.zip |
Add a FIXME comment.
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2068,6 +2068,11 @@ find_rule(char *src, long lineno) { INSTRUCTION *rp; + /* + * FIXME: The check for zero and code that goes with it + * are probably fragile. A break with no arguments can + * cause this in certain cases. Try to review how this works. + */ if (lineno == 0) { for (rp = rule_list->nexti; rp != NULL; rp = rp->nexti) { if ((rp - 1)->source_file == src && (rp - 1)->source_line > 0) |