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:
Henrik Lissner 2022-09-16 02:05:51 +02:00
parent de2f538fd6
commit 36d3a62f6e
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -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