Function: idlwave-shell-bp
idlwave-shell-bp is a byte-compiled function defined in
idlw-shell.el.gz.
Signature
(idlwave-shell-bp FRAME &optional DATA MODULE)
Documentation
Create a breakpoint structure containing FRAME and DATA.
Second and third args, DATA and MODULE, are optional. Returns
a breakpoint of the format used in idlwave-shell-bp-alist.
Can be used in commands attempting match a breakpoint in
idlwave-shell-bp-alist.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-bp (frame &optional data module)
"Create a breakpoint structure containing FRAME and DATA.
Second and third args, DATA and MODULE, are optional. Returns
a breakpoint of the format used in `idlwave-shell-bp-alist'.
Can be used in commands attempting match a breakpoint in
`idlwave-shell-bp-alist'."
(cons frame ;; (file line)
(cons (list nil module) ;; (index_id (module type) | module)
data))) ;; (count command condition disabled)