diff options
author | Case Duckworth | 2022-02-18 18:20:38 -0600 |
---|---|---|
committer | Case Duckworth | 2022-02-18 18:20:38 -0600 |
commit | 977ff8c2feb859e13ad52fb37a3c6340f75c3191 (patch) | |
tree | ea200c030b0571d883e99134058183b3232232d8 /lisp | |
parent | Fix +org-return-dwim to work on definition lists (diff) | |
download | emacs-977ff8c2feb859e13ad52fb37a3c6340f75c3191.tar.gz emacs-977ff8c2feb859e13ad52fb37a3c6340f75c3191.zip |
Move :quit around
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/+setup.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/+setup.el b/lisp/+setup.el index ec4c80b..bc57078 100644 --- a/lisp/+setup.el +++ b/lisp/+setup.el | |||
@@ -28,6 +28,11 @@ | |||
28 | "Warn the user that something bad happened in `setup'." | 28 | "Warn the user that something bad happened in `setup'." |
29 | (display-warning 'setup (format message args))) | 29 | (display-warning 'setup (format message args))) |
30 | 30 | ||
31 | (setup-define :quit | ||
32 | 'setup-quit | ||
33 | :documentation "Quit the current `setup' form. | ||
34 | Good for commenting.") | ||
35 | |||
31 | (setup-define :face | 36 | (setup-define :face |
32 | (lambda (face spec) | 37 | (lambda (face spec) |
33 | `(custom-set-faces '(,face ,spec 'now "Customized by `setup'."))) | 38 | `(custom-set-faces '(,face ,spec 'now "Customized by `setup'."))) |
@@ -113,11 +118,6 @@ replace itself with the RECIPE's package." | |||
113 | :indent 1 | 118 | :indent 1 |
114 | :shorthand #'+setup-straight-shorthand)) | 119 | :shorthand #'+setup-straight-shorthand)) |
115 | 120 | ||
116 | (setup-define :quit | ||
117 | 'setup-quit | ||
118 | :documentation "Quit the current `setup' form. | ||
119 | Good for commenting.") | ||
120 | |||
121 | 121 | ||
122 | ;;; Redefines of `setup' forms | 122 | ;;; Redefines of `setup' forms |
123 | 123 | ||