Function: idlwave-shell-add-or-remove-show

idlwave-shell-add-or-remove-show is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-add-or-remove-show TYPE)

Documentation

Add or remove a show command from the list.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-add-or-remove-show (type)
  "Add or remove a show command from the list."
  (if (listp idlwave-shell-show-commands)
      (setq idlwave-shell-show-commands
	    (if (memq type idlwave-shell-show-commands)
		(delq type idlwave-shell-show-commands)
	      (add-to-list'idlwave-shell-show-commands type)))
    (setq idlwave-shell-show-commands (list type))))