Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix byte-compiler issue #252

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions smart-mode-line.el
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,8 @@ FACE is applied to it (and checking stops there)."
:type '(repeat (list string face))
:group 'smart-mode-line-path-and-prefix)

(defvaralias 'sml/path-width 'sml/name-width)

(defcustom sml/name-width 44
"Minimum and maximum size of the file name in the mode-line.

Expand All @@ -610,8 +612,6 @@ separately, by setting this variable to a cons cell of integers:
(integer :tag "Maximum width")))
:group 'smart-mode-line-path-and-prefix)

(defvaralias 'sml/path-width 'sml/name-width)

(defcustom sml/shorten-directory t
"Should directory name be shortened to fit width?

Expand Down