mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-09 12:57:25 -05:00
A little more time and space gained by cutting out seq entirely and pre-generating the argument lookup table. At least, in uncompiled use cases. The original implementation used regexp to lookup arguments, which was (relatively) expensive. By comparison, using `assq` is *much* faster, especially for datasets this small; and more so when I get around to byte-compiling Doom's core (assq has its own byte-compiler opcode).