From 38e901d3888e3a245a5cba14a061bffa1c5fd20b Mon Sep 17 00:00:00 2001 From: Leo Gaskin <34915973+leotaku@users.noreply.github.com> Date: Sat, 4 Sep 2021 09:00:52 +0200 Subject: [PATCH] Explicitly require hydra package I have noticed that, on some versions of Emacs, requiring `worf` fails with a void-variable error on `hydra-worf-change`. This user here abo-abo/pamparam#34 also seems to be getting the same error. I do not fully understand why, but adding `(require 'hydra)` to the `worf.el` file has completely fixed this issue for me. Please feel free to just close this PR if you want, as I'm not able to give a good justification of why this works. --- worf.el | 1 + 1 file changed, 1 insertion(+) diff --git a/worf.el b/worf.el index 1aa7507..12ba7d1 100755 --- a/worf.el +++ b/worf.el @@ -133,6 +133,7 @@ (require 'ace-link) (require 'dired) (require 'flyspell) +(require 'hydra) (require 'org) (require 'org-agenda) (require 'org-attach)