diff --git a/mood-line.el b/mood-line.el index 0c5ff47..4eb7c3a 100644 --- a/mood-line.el +++ b/mood-line.el @@ -777,10 +777,8 @@ Checkers checked, in order: `flycheck', `flymake'." "Display the position of the cursor in the current buffer." (concat "%l:%c" (when mood-line-show-cursor-point - (propertize (format ":%d" (point)) - 'face 'mood-line-unimportant)) - (propertize " %p%% " - 'face 'mood-line-unimportant))) + (format ":%d" (point))) + " %p%% ")) ;; ---------------------------------- ;; ;; EOL segment @@ -831,8 +829,7 @@ Checkers checked, in order: `flycheck', `flymake'." "Display the current value of `mode-line-misc-info'." (let ((misc-info (format-mode-line mode-line-misc-info))) (unless (string-blank-p misc-info) - (concat (propertize (string-trim misc-info) - 'face 'mood-line-unimportant) + (concat (string-trim misc-info) " ")))) ;; ---------------------------------- ;;