Files
doomemacs/core
Henrik Lissner b35b32273a fix(lib): doom-enlist not wrapping cons cells
While lists are technically cons cells, cons cells don't have all the
properties of lists, so doom-enlist shouldn't treat it as one.

Before:

  (doom-enlist '(a . b))   #=> (a . b)

After:

  (doom-enlist '(a . b))   #=> ((a . b))
2021-10-20 20:18:39 +02:00
..
2021-10-18 12:09:42 +02:00
2021-10-18 01:15:09 +02:00
2021-10-18 01:15:54 +02:00