diff options
author | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-11-07 10:32:45 -0700 |
---|---|---|
committer | Ashton Wiersdorf <mail@wiersdorf.dev> | 2023-11-07 10:32:45 -0700 |
commit | 1c2d20fc1831b9e39410eb943ef09e8fe9931256 (patch) | |
tree | b9b8b0ca2fa9880aa331bacddc3eec13e102e95c /early-init.el | |
parent | 96a69db3a9392bbb30a16f5028d12de95b9632a5 (diff) |
setq → setopt
`setq' is the normal way to set lisp variables, but it won't trigger any hooks
that might have been set for use with customize. The alternative is to use
`customize-set-variable' but that's a mouthful and it's hard to remember when to
use this. `setopt' just does The Right Thing™.
Diffstat (limited to 'early-init.el')
-rw-r--r-- | early-init.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index f6bc9d5..08bf438 100644 --- a/early-init.el +++ b/early-init.el @@ -38,4 +38,3 @@ (background-color . "#000000") (ns-appearance . dark) (ns-transparent-titlebar . t))) - |