Variable: compilation-shell-minor-mode
compilation-shell-minor-mode is a buffer-local variable defined in
compile.el.gz.
Documentation
Non-nil if Compilation-Shell minor mode is enabled.
Use the command compilation-shell-minor-mode(var)/compilation-shell-minor-mode(fun) to change this variable.
Probably introduced at or before Emacs version 20.4.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/compile.el.gz
;;;###autoload
(define-minor-mode compilation-shell-minor-mode
"Toggle Compilation Shell minor mode.
When Compilation Shell minor mode is enabled, all the
error-parsing commands of the Compilation major mode are
available but bound to keys that don't collide with Shell mode.
See `compilation-mode'."
:lighter " Shell-Compile"
(if compilation-shell-minor-mode
(compilation-setup t)
(compilation--unsetup)))