You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By the way, that particular error can be because Emacs now uses cl-defstruct instead of defstruct. Maybe your code needs to do it like this too:
(cl-defstruct (flymake-ler
(:constructor nil)
(:constructor flymake-ler-make-ler (file line type text &optional full-file)))
file line type text full-file)
Could you add to flymake.el the instructions on how to load your file in a recent Emacs?
Because recent Emacs already include flymake, a (require 'flymake) doesn't load yours.
If I use
(load-file "/w/emacs-flymake/flymake.el")
, then I see conflicts or dependency with the old one:Long log:
This is with: GNU Emacs 25.0.50.1 (x86_64-unknown-linux-gnu, X toolkit, Xaw scroll bars) of 2015-01-12 on la4
Maybe you can use a different name like
flymake-il
? Or really merge everything into main Emacs?Thanks
The text was updated successfully, but these errors were encountered: