Variable: idlwave-shell-electric-stop-line-face
idlwave-shell-electric-stop-line-face is a customizable variable
defined in idlw-shell.el.gz.
Value
idlwave-shell-electric-stop-line
Documentation
The face for idlwave-shell-stop-line-overlay when in electric debug mode.
Allows you to choose the font, color and other properties for the line where IDL is stopped, when in Electric Debug Mode.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defcustom idlwave-shell-electric-stop-line-face
(prog1
(copy-face 'mode-line 'idlwave-shell-electric-stop-line)
(set-face-background 'idlwave-shell-electric-stop-line
idlwave-shell-electric-stop-color)
(condition-case nil
(set-face-foreground 'idlwave-shell-electric-stop-line nil)
(error nil)))
"The face for `idlwave-shell-stop-line-overlay' when in electric debug mode.
Allows you to choose the font, color and other properties for the line
where IDL is stopped, when in Electric Debug Mode."
:group 'idlwave-shell-highlighting-and-faces
:type 'symbol)