Variable: idlwave-shell-prompt-pattern
idlwave-shell-prompt-pattern is a customizable variable defined in
idlw-shell.el.gz.
Value
"^
? ?IDL> "
Documentation
Regexp to match IDL prompt at beginning of a line.
For example, "^\\r?IDL> " or "^\\r?WAVE> ".
The "^\\r?" is needed, to indicate the beginning of the line, with
optional return character (which IDL seems to output randomly).
This variable is used to initialize comint-prompt-regexp in the
process buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defcustom idlwave-shell-prompt-pattern "^\r? ?IDL> "
"Regexp to match IDL prompt at beginning of a line.
For example, \"^\\r?IDL> \" or \"^\\r?WAVE> \".
The \"^\\r?\" is needed, to indicate the beginning of the line, with
optional return character (which IDL seems to output randomly).
This variable is used to initialize `comint-prompt-regexp' in the
process buffer."
:group 'idlwave-shell-general-setup
:type 'regexp)