branch: elpa/hl-block-mode
commit 8dbab7b71ee959e4e57f609a2483481603a97f71
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Cleanup: use null instead of not
---
hl-block-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hl-block-mode.el b/hl-block-mode.el
index 88c307efa28..cdb0f8bf438 100644
--- a/hl-block-mode.el
+++ b/hl-block-mode.el
@@ -437,7 +437,7 @@ Argument BLOCK-LIST represents start-end ranges of braces."
(defun hl-block--mode-turn-on ()
"Enable command `hl-block-mode'."
(declare (important-return-value nil))
- (when (and (not (minibufferp)) (not (bound-and-true-p hl-block-mode)))
+ (when (and (null (minibufferp)) (not (bound-and-true-p hl-block-mode)))
(hl-block-mode 1)))
;; ---------------------------------------------------------------------------