summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-02-26 20:09:23 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-02-26 20:09:23 -0800
commit8b01397de3f74cb608250554119322e53099a9a8 (patch)
treec090748794233af2eeac954d2f70079daeec6503 /lib.c
parent1521adde660652f214be2b8f2811db0c2a0339d2 (diff)
downloadtxr-8b01397de3f74cb608250554119322e53099a9a8.tar.gz
txr-8b01397de3f74cb608250554119322e53099a9a8.tar.bz2
txr-8b01397de3f74cb608250554119322e53099a9a8.zip
* lib.c (make_like): If the first element of list isn't
a character, then don't try to make it into a string; keep it as a list. This allows [mapcar list "abc" "def"] to work intuitively rather than blow up.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 4b1366e1..9aa3af95 100644
--- a/lib.c
+++ b/lib.c
@@ -453,7 +453,9 @@ val make_like(val list, val thatobj)
case STR:
case LIT:
case LSTR:
- return cat_str(list, nil);
+ if (is_chr(car(list)))
+ return cat_str(list, nil);
+ break;
case NIL:
case CONS:
case LCONS: