abo-abo / lispy

Short and sweet LISP editing
http://oremacs.com/lispy/
1.2k stars 132 forks source link

Updates eval-alist to use correct function for racket #560

Closed kiranandcode closed 3 years ago

kiranandcode commented 3 years ago

lispy-eval-alist seemingly points to the wrong evaluation function for racket-mode.

The function lispy-eval-racket (used currently) expects 0 arguments, while the proposed lispy--eval-racket (both already existing in le-racket.el) expects a string to evaluate.

This causes an error when trying to evaluate sexps in racket-mode using lispy, raising the error Wrong number of arguments: (0 . 0), 1.

coveralls commented 3 years ago

Coverage Status

Coverage remained the same at 62.771% when pulling a36155337f4f15b1c904392843a15f04602dc2f0 on Gopiandcode:patch-1 into 1ad128be0afc04b58967c1158439d99931becef4 on abo-abo:master.

abo-abo commented 3 years ago

Thanks!