From: Mauro Aranda Date: Sun, 17 Sep 2023 13:00:20 +0000 (-0300) Subject: Fix shell-indirect-setup-hook :type (Bug#66051) X-Git-Tag: emacs-29.1.90~73 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b74d9e8bad9;p=emacs.git Fix shell-indirect-setup-hook :type (Bug#66051) * lisp/shell.el (shell-indirect-setup-hook): It's a hook, not a boolean. --- 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