Function: idlwave-customize
idlwave-customize is an interactive and byte-compiled function defined
in idlwave.el.gz.
Signature
(idlwave-customize)
Documentation
Call the customize function with idlwave as argument.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-customize ()
"Call the customize function with `idlwave' as argument."
(interactive)
;; Try to load the code for the shell, so that we can customize it
;; as well.
(or (featurep 'idlw-shell)
(load "idlw-shell" t))
(customize-browse 'idlwave))