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))