From 81ed58540cf23658be51450c99992feb4494b5ab Mon Sep 17 00:00:00 2001 From: Uladzimir Stsepchanka Date: Wed, 23 Nov 2022 12:00:26 +0300 Subject: [PATCH] Use :load! and :reload! instead of :l! :r! Unlike shortcuts works in older GHCs --- dante.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dante.el b/dante.el index cd30eec..f2943db 100644 --- a/dante.el +++ b/dante.el @@ -326,8 +326,8 @@ and over." (lcr-call dante-async-call (if interpret ":set -fbyte-code" ":set -fobject-code")) (with-current-buffer buffer (setq-local dante-status 'loading) - (dante-async-write (if same-target ":r!" - (concat ":l! " (if interpret "*" "") (dante-local-name fname)))) + (dante-async-write (if same-target ":reload!" + (concat ":load! " (if interpret "*" "") (dante-local-name fname)))) (cl-destructuring-bind (_status err-messages _loaded-modules) (lcr-call dante-load-loop "" nil err-fn) (setq dante-loaded-file src-fname)