Function: idlwave-shell-hide-p
idlwave-shell-hide-p is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-hide-p TYPE &optional LIST)
Documentation
Whether to hide this type of command.
Return either nil or hide.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-hide-p (type &optional list)
"Whether to hide this type of command.
Return either nil or `hide'."
(let ((list (or list idlwave-shell-show-commands)))
(if (listp list)
(if (not (memq type list)) 'hide))))