mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Before this fix: (fn! (x &key y z)) ;; implies (fn! (&key x &allow-other-keys)). But (fn! (x (&key y) &key z)) ;; would not imply (fn! (x (&key y &allow-other-keys) &key z &allow-other-keys)).