Fix `:mode' keyword in `setup'

This commit is contained in:
Case Duckworth 2021-04-19 12:31:52 -05:00
parent 8a99f1b722
commit cdaaee1a1d
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@
(setup-define :mode
(lambda (ext)
`(add-to-list 'auto-mode-alist '(,ext . setup-mode)))
`(add-to-list 'auto-mode-alist (cons ,ext setup-mode)))
:documentation "Add SETUP-MODE to `auto-mode-alist' for EXTENSION."
:repeatable t)