diff options
author | Case Duckworth | 2021-04-19 12:31:52 -0500 |
---|---|---|
committer | Case Duckworth | 2021-04-19 12:31:52 -0500 |
commit | cdaaee1a1dea3aaf7857f3087b940a729f0769c9 (patch) | |
tree | 715031e9610d64e24115d1609f81667446e3ef51 | |
parent | Sort .gitignore and add gnus/ (diff) | |
download | emacs-cdaaee1a1dea3aaf7857f3087b940a729f0769c9.tar.gz emacs-cdaaee1a1dea3aaf7857f3087b940a729f0769c9.zip |
Fix `:mode' keyword in `setup'
-rw-r--r-- | init.el | 2 |
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 | ||