Skip to content

Commit

Permalink
fix: Unreferenced face
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Apr 6, 2024
1 parent 37108ee commit a699658
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions jcs-modeline.el
Original file line number Diff line number Diff line change
Expand Up @@ -341,14 +341,14 @@ mouse-1: Toggle display of major mode name"
(defun jcs-modeline--render-line-columns ()
"Render current line number and column."
(let* ((ind-line (propertize (jcs-modeline-format "%l")
'mouse-face 'moody-mode-line-height
'mouse-face 'mode-line-highlight
'help-echo "Line"))
(ind-column (propertize (jcs-modeline-format "%c")
'mouse-face 'moody-mode-line-height
'mouse-face 'mode-line-highlight
'help-echo "Column"))
(ind-point (concat "("
(propertize (jcs-modeline-2str (point))
'mouse-face 'moody-mode-line-height
'mouse-face 'mode-line-highlight
'help-echo "Point")
")"))
(lst (if jcs-modeline-show-point
Expand All @@ -362,7 +362,7 @@ mouse-1: Toggle display of major mode name"
(defun jcs-modeline--render-percent-position ()
"Render current scroll."
(concat " " (propertize "%p"
'mouse-face 'moody-mode-line-height
'mouse-face 'mode-line-highlight
'help-echo "Percent position")))

;;
Expand Down

0 comments on commit a699658

Please sign in to comment.