From 7a202c1fb45bd2a25f9f6468cbc7129f9c211e83 Mon Sep 17 00:00:00 2001 From: David Florness Date: Sat, 13 Jun 2026 15:04:57 -0400 Subject: [PATCH] fix shell-pop function --- lisp/misc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/misc.el b/lisp/misc.el index 7524c9f..541b1b5 100644 --- a/lisp/misc.el +++ b/lisp/misc.el @@ -110,7 +110,7 @@ ;; show eshell with C-S-s (use-package shell-pop :custom - (shell-pop-shell-type '("eshell" "*eshell*" #'eshell)) + (shell-pop-shell-type '("eshell" "*eshell*" (lambda nil (eshell)))) (shell-pop-universal-key "C-S-s")) (use-package yaml-mode -- 2.38.4