diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-25 22:13:11 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-08-25 22:13:11 +0300 |
commit | 0987a787868a1d0772da19766de8a621f3a3be74 (patch) | |
tree | 3ac585daf738f56080afcd4c01f9ca6cce4cb184 /debug.c | |
parent | 7585f55d91374fb93725fa2ed53a84c118f14a72 (diff) | |
parent | 00682d87a1a1c0535c0fa5adb27867578dc76d49 (diff) | |
download | egawk-0987a787868a1d0772da19766de8a621f3a3be74.tar.gz egawk-0987a787868a1d0772da19766de8a621f3a3be74.tar.bz2 egawk-0987a787868a1d0772da19766de8a621f3a3be74.zip |
Merge branch 'master' into feature/nocopy
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1670,7 +1670,7 @@ cmp_val(struct list_item *w, NODE *old, NODE *new) if (new->type == Node_var_array) /* 5 */ return true; - return cmp_nodes(old, new); /* 4 */ + return cmp_nodes(old, new, true); /* 4 */ } /* watchpoint_triggered --- check if we should stop at this watchpoint; |