tpapp / julia-repl

Run an inferior Julia REPL in a terminal inside Emacs
Other
169 stars 35 forks source link

Byte compile warning: define-minor-mode argument form #113

Closed tecosaur closed 2 years ago

tecosaur commented 2 years ago

Currently in julia-repl.el positional arguments are used to define the minor mode, however for a while now define-minor-mode has been asking for keyword arguments ((define-minor-mode MODE DOC [KEYWORD VAL ... &rest BODY])).

julia-repl.el: Warning: Use keywords rather than deprecated positional arguments to `define-minor-mode'
apatry commented 2 years ago

I had the same message and created this PR to address it:

https://github.com/tpapp/julia-repl/pull/116