about summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-04-19 12:31:52 -0500
committerCase Duckworth2021-04-19 12:31:52 -0500
commitcdaaee1a1dea3aaf7857f3087b940a729f0769c9 (patch)
tree715031e9610d64e24115d1609f81667446e3ef51 /init.el
parentSort .gitignore and add gnus/ (diff)
downloademacs-cdaaee1a1dea3aaf7857f3087b940a729f0769c9.tar.gz
emacs-cdaaee1a1dea3aaf7857f3087b940a729f0769c9.zip
Fix `:mode' keyword in `setup'
Diffstat (limited to 'init.el')
-rw-r--r--init.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.el b/init.el index 862a2e2..febe047 100644 --- a/init.el +++ b/init.el
@@ -51,7 +51,7 @@
51 51
52(setup-define :mode 52(setup-define :mode
53 (lambda (ext) 53 (lambda (ext)
54 `(add-to-list 'auto-mode-alist '(,ext . setup-mode))) 54 `(add-to-list 'auto-mode-alist (cons ,ext setup-mode)))
55 :documentation "Add SETUP-MODE to `auto-mode-alist' for EXTENSION." 55 :documentation "Add SETUP-MODE to `auto-mode-alist' for EXTENSION."
56 :repeatable t) 56 :repeatable t)
57 57