From 433e5f06d44d027ed881337363743bc0ef60dfde Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev <107392-klay@users.noreply.gitlab.com> Date: Tue, 4 Jun 2019 20:14:41 +0000 Subject: [PATCH] Add missed paren --- mood-line.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mood-line.el b/mood-line.el index 2440bbc..525ef43 100644 --- a/mood-line.el +++ b/mood-line.el @@ -208,12 +208,12 @@ (defun mood-line-segment-anzu () "Displays color-coded anzu status information in the mode-line (if available)." - (when (and (boundp 'anzu--state) anzu--state + (when (and (boundp 'anzu--state) anzu--state) (concat (anzu--update-mode-line) " "))) (defun mood-line-segment-multiple-cursors () "Displays the number of active multiple-cursors in the mode-line (if available)." - (when (and (boundp 'multiple-cursors-mode) multiple-cursors-mode + (when (and (boundp 'multiple-cursors-mode) multiple-cursors-mode) (concat "MC:" (format #("%d" 0 2 (face font-lock-warning-face)) (mc/num-cursors)) " ")))