diff options
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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: |