Function: eshell-using-module
eshell-using-module is a byte-compiled function defined in
esh-module.el.gz.
Signature
(eshell-using-module MODULE)
Documentation
Return non-nil if a certain Eshell MODULE is in use.
The MODULE should be a symbol corresponding to that module's
customization group. Example: eshell-cmpl for that module.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-module.el.gz
(defsubst eshell-using-module (module)
"Return non-nil if a certain Eshell MODULE is in use.
The MODULE should be a symbol corresponding to that module's
customization group. Example: `eshell-cmpl' for that module."
(memq module eshell-modules-list))