From 59aabaead310afc28587311845b9b100452c7efd Mon Sep 17 00:00:00 2001 From: Eric Dallo Date: Sun, 16 May 2021 00:11:12 -0300 Subject: [PATCH] :ui modeline: Fix missing arg to function --- modules/ui/modeline/+light.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/ui/modeline/+light.el b/modules/ui/modeline/+light.el index 3b13583da..5f9b7c4c5 100644 --- a/modules/ui/modeline/+light.el +++ b/modules/ui/modeline/+light.el @@ -427,11 +427,11 @@ Requires `anzu', also `evil-anzu' if using `evil-mode' for compatibility with error warning info)))) - (+modeline-format-icon "check" "" 'success))) - (`running (+modeline-format-icon'material "access_time" "*" 'mode-line-inactive "Running...")) - (`errored (+modeline-format-icon'material "sim_card_alert" "!" 'error "Errored!")) - (`interrupted (+modeline-format-icon'material "pause" "!" 'mode-line-inactive "Interrupted")) - (`suspicious (+modeline-format-icon'material "priority_high" "!" 'error "Suspicious")))))) + (+modeline-format-icon 'material "check" "" 'success))) + (`running (+modeline-format-icon 'material "access_time" "*" 'mode-line-inactive "Running...")) + (`errored (+modeline-format-icon 'material "sim_card_alert" "!" 'error "Errored!")) + (`interrupted (+modeline-format-icon 'material "pause" "!" 'mode-line-inactive "Interrupted")) + (`suspicious (+modeline-format-icon 'material "priority_high" "!" 'error "Suspicious"))))))