Variable: idlwave-shell-command-line-options

idlwave-shell-command-line-options is a customizable variable defined in idlwave.el.gz.

Value

nil

Documentation

A list of command line options for calling the IDL program.

Since IDL is executed directly without going through a shell like /bin/sh, this should be a list of strings like ("-rt=file" "-nw") with a separate string for each argument. But you may also give a single string which contains the options whitespace-separated. Emacs will be kind enough to split it for you.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defcustom idlwave-shell-command-line-options nil
  "A list of command line options for calling the IDL program.
Since IDL is executed directly without going through a shell like /bin/sh,
this should be a list of strings like (\"-rt=file\" \"-nw\") with a separate
string for each argument.  But you may also give a single string which
contains the options whitespace-separated.  Emacs will be kind enough to
split it for you."
  :type '(choice
	  string
	  (repeat (string :value "")))
  :group 'idlwave-external-programs)