* mood-line.el (mood-line--modal-editing-p): Fixed incorrect test

We should be looking for bound-and-true minor modes. Not sure what
happened here.
This commit is contained in:
Trevor Richards 2022-07-29 09:44:03 -07:00
parent 7c30e1cada
commit 855ea2760e
No known key found for this signature in database
GPG Key ID: 8546CF84A13DD5EF

View File

@ -328,7 +328,7 @@ The `Face' may be either a face symbol or a property list of key-value pairs
(defun mood-line--modal-editing-p ()
"Determine if modal editing is being used."
(mood-line-segment-modified)) ; (or) is for future modal additions.
(or (bound-and-true-p evil-mode))) ; (or) is for future modal additions.
;;
;; Activation function