From b74d9e8bad9cfbd19ee4d7c56bff9349ca8fb07a Mon Sep 17 00:00:00 2001 From: Mauro Aranda Date: Sun, 17 Sep 2023 10:00:20 -0300 Subject: [PATCH] Fix shell-indirect-setup-hook :type (Bug#66051) * lisp/shell.el (shell-indirect-setup-hook): It's a hook, not a boolean. --- lisp/shell.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/shell.el b/lisp/shell.el index 5cf108bfa3b..f844e0496b0 100644 --- a/lisp/shell.el +++ b/lisp/shell.el @@ -327,9 +327,8 @@ and syntax highlighting is set up with `sh-mode'. In addition to buffer as the current buffer after its setup is done. This can be used to further customize fontification and other behavior of the indirect buffer." - :type 'boolean + :type 'hook :group 'shell - :safe 'booleanp :version "29.1") (defcustom shell-highlight-undef-enable nil -- 2.39.5