rainstormstudio / nerd-icons.el

GNU General Public License v3.0
206 stars 22 forks source link

Compiler warning about free variable `web-mode-content-type' #22

Closed dr-scsi closed 1 year ago

dr-scsi commented 1 year ago

Hi all,

after commit 7cc287e, the compiler says:

In nerd-icons--web-mode:
nerd-icons.el:1095:14: Warning: reference to free variable `web-mode-content-type'

This can easily be fixed with

(defvar web-mode-content-type)

somewhere in the library. I'm not proposing a PR since I don't know how the project wants do deal with this stuff, i.e., at the beginning of the library or near the function where they appear. Please consider adding the form above where appropriate. TIA.