[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: strange behavior of mapconcat
From: |
Michael Heerdegen |
Subject: |
Re: strange behavior of mapconcat |
Date: |
Tue, 16 Apr 2024 08:16:55 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
shortcutz <spookygostee@gmail.com> writes:
> Oh, sorry my first post is spam....
> it is impossible to concatenate two characters! >_<
The FUNCTION argument must return "[...] a sequence of characters" (see
docstring) , so
(mapconcat #'string "t" " ") ==> "t"
No concatenation involved at all in this example.
Michael.