branch: elpa/julia-mode commit 7fc071eb2c383d44be6d61ea6cef73b0cc8ef9b7 Author: Tamás K. Papp <tkp...@gmail.com> Commit: Tamás K. Papp <tkp...@gmail.com>
Use keyword arguments for defining minor modes. Fixes #220. --- julia-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/julia-mode.el b/julia-mode.el index 66cd5e4f04..60f8bfa649 100644 --- a/julia-mode.el +++ b/julia-mode.el @@ -997,7 +997,7 @@ command is only entered if it is supported in Julia. The following commands are defined: \\{LaTeX-math-mode-map}" - nil nil (list (cons (LaTeX-math-abbrev-prefix) LaTeX-math-keymap)) + :keymap (list (cons (LaTeX-math-abbrev-prefix) LaTeX-math-keymap)) (if julia-math-mode (setq-local LaTeX-math-insert-function #'julia-math-insert)))))