Closed telenieko closed 2 months ago
Hi,
https://github.com/emacs-languagetool/flymake-languagetool/blob/e52307cdd7b1708171b32e6f928bc482e1237a83/flymake-languagetool.el#L109-L113
flymake-languagetool-server-command is defined as string, but later on flymake-languagetool--start-server it is used in place of a list:
flymake-languagetool-server-command
string
flymake-languagetool--start-server
https://github.com/emacs-languagetool/flymake-languagetool/blob/e52307cdd7b1708171b32e6f928bc482e1237a83/flymake-languagetool.el#L392-L396
which results in
Debugger entered--Lisp error: (wrong-type-argument stringp 108) flymake-languagetool--start-server(nil)
You should assign it to a list. 🤔
My bad, didn't realise that :type '(repeat string) means "a list of strings". !!
:type '(repeat string)
Hi,
https://github.com/emacs-languagetool/flymake-languagetool/blob/e52307cdd7b1708171b32e6f928bc482e1237a83/flymake-languagetool.el#L109-L113
flymake-languagetool-server-command
is defined asstring
, but later onflymake-languagetool--start-server
it is used in place of a list:https://github.com/emacs-languagetool/flymake-languagetool/blob/e52307cdd7b1708171b32e6f928bc482e1237a83/flymake-languagetool.el#L392-L396
which results in