Open baudilio opened 1 month ago
Hello.
The keyword unspecified in line 41 of file smart-mode-line-respectful-theme.el should be unquoted. That is,
unspecified
'(sml/modes ((t :foreground "unspecified" :inherit sml/filename :weight normal))))
to read
'(sml/modes ((t :foreground unspecified :inherit sml/filename :weight normal))))
Actually, all instances of "unspecified" in the code files should be unquoted.
"unspecified"
Hello.
The keyword
unspecified
in line 41 of file smart-mode-line-respectful-theme.el should be unquoted. That is,'(sml/modes ((t :foreground "unspecified" :inherit sml/filename :weight normal))))
to read
'(sml/modes ((t :foreground unspecified :inherit sml/filename :weight normal))))