summaryrefslogtreecommitdiff
path: root/lisp/shell.el
diff options
context:
space:
mode:
authorMauro Aranda <maurooaranda@gmail.com>2023-09-17 10:00:20 -0300
committerStefan Kangas <stefankangas@gmail.com>2023-09-17 15:08:15 +0200
commitb74d9e8bad9cfbd19ee4d7c56bff9349ca8fb07a (patch)
treeba7d2942b40180218b302408cba25a5e129e5a14 /lisp/shell.el
parentf549d4330f34a0fa6867f3d83832476ce5c4873f (diff)
downloademacs-b74d9e8bad9cfbd19ee4d7c56bff9349ca8fb07a.tar.gz
Fix shell-indirect-setup-hook :type (Bug#66051)
* lisp/shell.el (shell-indirect-setup-hook): It's a hook, not a boolean.
Diffstat (limited to 'lisp/shell.el')
-rw-r--r--lisp/shell.el3
1 files changed, 1 insertions, 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