mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(emacs-lisp): defconst->defvar for +emacs-lisp-linter-warnings
This wasn't supposed to be a constant, and there's no reason it should
be one.
Amend: afa154db27
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
"Regexp to use for `outline-regexp' in `emacs-lisp-mode'.
|
||||
This marks a foldable marker for `outline-minor-mode' in elisp buffers.")
|
||||
|
||||
(defconst +emacs-lisp-linter-warnings
|
||||
(defvar +emacs-lisp-linter-warnings
|
||||
'(not free-vars ; don't complain about unknown variables
|
||||
noruntime ; don't complain about unknown function calls
|
||||
unresolved) ; don't complain about undefined functions
|
||||
|
Reference in New Issue
Block a user