[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: Imports / inclusion of s.el into Emacs
From: |
Drew Adams |
Subject: |
RE: Imports / inclusion of s.el into Emacs |
Date: |
Sat, 2 May 2020 09:49:49 -0700 (PDT) |
>> But concat is not only about strings. Will
>> we have 3 different aliases? And what about the
>> case where each argument is of a different type?
Exactly.
> I think "seq-concat-to-string" is a better choice here.
> We can remove the "to-string".
>
> That or "seq-join" with a default separator to "" ?
A character is not a sequence. `concat' is not
about concatenating sequences to return a string.
`append' is about concatenating sequences to
return a list sequence.
Oops. Except that it's not. Although it always
returns a list, in the general sense, it's not
always a sequence (a true list):
(append '(x y) [z]) => (x y . [z])
The devil is in the details. Lisp is in many
ways an ad hoc language. Some things are ugly.
Some things are elegant. Some things are ugly
AND elegant. Complicated - and simple.
- Re: Imports / inclusion of s.el into Emacs, (continued)
- Re: Imports / inclusion of s.el into Emacs, Richard Stallman, 2020/05/04
- Re: Imports / inclusion of s.el into Emacs, Dmitry Gutov, 2020/05/05
- Re: Imports / inclusion of s.el into Emacs, chad, 2020/05/04
- Re: Imports / inclusion of s.el into Emacs, Richard Stallman, 2020/05/04
- Re: Imports / inclusion of s.el into Emacs, Eli Zaretskii, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Philippe Vaucher, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Eli Zaretskii, 2020/05/02
- RE: Imports / inclusion of s.el into Emacs,
Drew Adams <=
- Re: Imports / inclusion of s.el into Emacs, Dmitry Gutov, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Stefan Monnier, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Dmitry Gutov, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Eli Zaretskii, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Dmitry Gutov, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, 조성빈, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Eli Zaretskii, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, 조성빈, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, Eli Zaretskii, 2020/05/02
- Re: Imports / inclusion of s.el into Emacs, 조성빈, 2020/05/02