-
-
Notifications
You must be signed in to change notification settings - Fork 653
Closed
Labels
Description
In Emacs 25.1, seq.el will be built-in (it's also a smaller package). So it would be nice to replace the dash dependency with seq.
There are currently 102 usages of dash functions that I could find by grepping for [(']-[-a-z]
. About half of them -when-let
s and -if-let
s. The other half are functions provided by seq
. The only exception I found was -map-indexed
.
One way to replace the -when/if-let
s is to drop 24.3 support and use when/if-let
. Another is to copy the definition of when/if-let
from subr-x.el
. What do we think?