[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: strange behavior of mapconcat
From: |
shortcutz |
Subject: |
Re: strange behavior of mapconcat |
Date: |
Mon, 15 Apr 2024 10:57:33 -0500 |
Oh, sorry my first post is spam....
it is impossible to concatenate two characters! >_<
On Mon, Apr 15, 2024 at 10:43 AM shortcutz <spookygostee@gmail.com> wrote:
> Hi all,
>
> In a piece of code I call mapconcat with these arguments:
>
> (mapconcat 'org-no-properties "t" " ")
>
> I'm getting the error (wrong-type-argument sequencep 115). This is the
> same if I use the identity function or any other string instead of "t":
>
> (mapconcat 'identity "t" " ")
> (mapconcat 'identity "string1 string2" " ")
>
> What am I doing wrong? I don't really understand where the 115 is coming
> from. The code is unchanged after macroexpanding, and sequencep says
> "string1 string2" and "t" are both valid sequences.
>
> Thanks
> R
>