diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-08-23 22:35:17 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-08-23 22:35:17 -0700 |
commit | 87af2fde6249070addbed571482ddae251d90161 (patch) | |
tree | 41060fcacbbac52e3b0da99b72bddb3c558faa09 /lib.c | |
parent | bdc4dba50ad8f250d9edfc2036cfca1eadd4fc50 (diff) | |
download | txr-87af2fde6249070addbed571482ddae251d90161.tar.gz txr-87af2fde6249070addbed571482ddae251d90161.tar.bz2 txr-87af2fde6249070addbed571482ddae251d90161.zip |
Regression: assignment to [hash x..y] not working.
In this case, x..y should just be treated as a cons
cell key, not as a range.
* lib.c (dwim_set): If range argument is a cons, only
delegate to the replace function if the object isn't
a hash.
(dwim_del): Likewise.
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 16 |
1 files changed, 7 insertions, 9 deletions
@@ -6681,7 +6681,7 @@ val replace(val seq, val items, val from, val to) val dwim_set(val seq, val ind_range, val newval) { - if (consp(ind_range)) { + if (consp(ind_range) && !hashp(seq)) { cons_bind (x, y, ind_range); if (atom(y)) @@ -6689,7 +6689,7 @@ val dwim_set(val seq, val ind_range, val newval) return replace(seq, newval, ind_range, colon_k); } else if (vectorp(ind_range)) { return replace(seq, newval, ind_range, colon_k); - } else{ + } else { (void) refset(seq, ind_range, newval); return seq; } @@ -6699,15 +6699,13 @@ val dwim_set(val seq, val ind_range, val newval) val dwim_del(val seq, val ind_range) { - if (consp(ind_range)) { + if (hashp(seq)) { + (void) remhash(seq, ind_range); + return seq; + } else if (consp(ind_range)) { return replace(seq, nil, car(ind_range), cdr(ind_range)); } else { - if (hashp(seq)) { - (void) remhash(seq, ind_range); - return seq; - } else { - return replace(seq, nil, ind_range, succ(ind_range)); - } + return replace(seq, nil, ind_range, succ(ind_range)); } } |