💥 Change first arg of load! macro
load!'s first argument is no longer a symbol (that will cause void-variable errors now) to save on unnecessary interning and simplify compile-time logic. It accepts any valid form that evaluates to a string now. If you use load!, you need to change its argument to a string! e.g. (load! +my-module) => (load! "+my-module")
This commit is contained in:
parent
bdee28609a
commit
1a452b6842
14 changed files with 48 additions and 56 deletions
|
@ -1,6 +1,6 @@
|
|||
;;; config/default/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
(if (featurep! +bindings) (load! +bindings))
|
||||
(if (featurep! +bindings) (load! "+bindings"))
|
||||
|
||||
|
||||
;;
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
(when (featurep 'evil)
|
||||
(when (featurep! +evil-commands)
|
||||
(load! +evil-commands))
|
||||
(load! "+evil-commands"))
|
||||
|
||||
(when (featurep! +bindings)
|
||||
(defvar +default-repeat-forward-key ";")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue