mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Fix void-variable nose-mode error in python #628
Caused by associate! only doing a fboundp check on MODE, but not boundp, before trying to access its value.
This commit is contained in:
@ -355,7 +355,7 @@ The available conditions are:
|
||||
`(progn
|
||||
(defun ,hook-name ()
|
||||
(when (and (fboundp ',mode)
|
||||
(not ,mode)
|
||||
(not (bound-and-true-p ,mode))
|
||||
(and buffer-file-name (not (file-remote-p buffer-file-name)))
|
||||
,(if match `(if buffer-file-name (string-match-p ,match buffer-file-name)) t)
|
||||
,(if files (doom--resolve-path-forms files '(doom-project-root)) t)
|
||||
|
Reference in New Issue
Block a user