Fix missing face in mood-line-segment-position fn

This commit is contained in:
Jessie Hildebrandt 2020-04-28 23:06:34 -04:00
parent 85b4fdecf1
commit 9cd761bdf6

View File

@ -249,7 +249,7 @@
(defun mood-line-segment-position () (defun mood-line-segment-position ()
"Displays the current cursor position in the mode-line." "Displays the current cursor position in the mode-line."
(concat "%l:%c" (concat "%l:%c"
(when mood-line-show-cursor-point (propertize (format ":%d" (point)) 'face)) (when mood-line-show-cursor-point (propertize (format ":%d" (point)) 'face 'mood-line-unimportant))
(propertize " %p%% " 'face 'mood-line-unimportant))) (propertize " %p%% " 'face 'mood-line-unimportant)))
(defun mood-line-segment-eol () (defun mood-line-segment-eol ()