Skip to content

Commit

Permalink
fix: compile warning (#28)
Browse files Browse the repository at this point in the history
* feat: Use built-in truncation symbols

* docs: changelog

* fix: compile warning

* fix: compile warning
  • Loading branch information
jcs090218 authored Nov 20, 2024
1 parent 0307db5 commit b6b7945
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sideline.el
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@

(require 'cl-lib)
(require 'face-remap)
(require 'mule-util)
(require 'rect)
(require 'subr-x)

Expand All @@ -57,12 +58,12 @@

(defcustom sideline-backends-left nil
"The list of active backends to display sideline on the left."
:type 'list
:type '(list symbol)
:group 'sideline)

(defcustom sideline-backends-right nil
"The list of active backends to display sideline on the right."
:type 'list
:type '(list symbol)
:group 'sideline)

(defcustom sideline-order-left 'down
Expand Down

0 comments on commit b6b7945

Please sign in to comment.