1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 14:10:47 -08:00

Clarify :config with setq versus :custom

Fixes https://github.com/jwiegley/use-package/issues/564
This commit is contained in:
John Wiegley 2017-12-06 06:22:52 -08:00
parent c272c6b56b
commit 0939993935

View file

@ -80,6 +80,12 @@
- New keywords `:custom (foo1 bar1) (foo2 bar2)` etc., and `:custom-face`.
NOTE: These are only for people who wish to keep customizations with their
accompanying use-package declarations. Functionally, the only benefit over
using `setq` in a `:config` block is that customizations might execute code
when values are assigned. If you currently use `M-x customize-option` and
save to a settings file, you do not want to use this option.
- New `:magic` and `:magic-fallback` keywords.
- New `:defer-install` keyword.