From ff45d706929208c58c84bd9178b3315aed06e6e6 Mon Sep 17 00:00:00 2001 From: John Grey Date: Thu, 22 Jan 2026 17:05:20 +0000 Subject: [PATCH 1/3] fix: remove repl command from eask-special-p --- lisp/_prepare.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/_prepare.el b/lisp/_prepare.el index 3f9e7bc7..266f7a41 100644 --- a/lisp/_prepare.el +++ b/lisp/_prepare.el @@ -195,7 +195,7 @@ These commands will first respect the current workspace. If the current workspace has no valid Eask-file; it will load global workspace instead." (eask-command-p '("init" "init/source" "init/cask" "init/eldev" "init/keg" "create/package" "create/elpa" "create/el-project" - "bump" "cat" "keywords" "repl" + "bump" "cat" "keywords" "generate/ignore" "generate/license" "test/melpazoid" "util/root"))) From 061c4a0ab028436d2975e0fa5faafce7cd3a421c Mon Sep 17 00:00:00 2001 From: John Grey Date: Thu, 22 Jan 2026 17:05:59 +0000 Subject: [PATCH 2/3] fix: add test/buttercup command to eask-execution-p --- lisp/_prepare.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/_prepare.el b/lisp/_prepare.el index 266f7a41..f49f3053 100644 --- a/lisp/_prepare.el +++ b/lisp/_prepare.el @@ -208,7 +208,7 @@ This is added because we don't want to pollute `error' and `warn' functions." "run/script" "run/command" ;; NOTE: These test commands handle the exit code themselves; ;; therefore, we don't need to handle it for them! - "test/ert" "test/ert-runner"))) + "test/ert" "test/ert-runner" "test/buttercup"))) (defun eask-checker-p () "Return t if running Eask as the checker. From 59ad4627d26628e74c3a29eaa726207fed62b4ca Mon Sep 17 00:00:00 2001 From: Jen-Chieh Shen Date: Thu, 22 Jan 2026 23:07:36 -0800 Subject: [PATCH 3/3] fix: Revert repl from special command --- lisp/_prepare.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/_prepare.el b/lisp/_prepare.el index f49f3053..cd133030 100644 --- a/lisp/_prepare.el +++ b/lisp/_prepare.el @@ -195,7 +195,7 @@ These commands will first respect the current workspace. If the current workspace has no valid Eask-file; it will load global workspace instead." (eask-command-p '("init" "init/source" "init/cask" "init/eldev" "init/keg" "create/package" "create/elpa" "create/el-project" - "bump" "cat" "keywords" + "bump" "cat" "keywords" "repl" "generate/ignore" "generate/license" "test/melpazoid" "util/root")))