]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix shell-indirect-setup-hook :type (Bug#66051)
authorMauro Aranda <maurooaranda@gmail.com>
Sun, 17 Sep 2023 13:00:20 +0000 (10:00 -0300)
committerStefan Kangas <stefankangas@gmail.com>
Sun, 17 Sep 2023 13:08:15 +0000 (15:08 +0200)
* lisp/shell.el (shell-indirect-setup-hook): It's a hook, not a
boolean.

lisp/shell.el

index 5cf108bfa3bd6cfc891a0f4f3600b718d00e6965..f844e0496b08c03ec617ce2b7d3aa820b324a53d 100644 (file)
@@ -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