Function: idlwave-help-diagnostics
idlwave-help-diagnostics is a byte-compiled function defined in
idlw-help.el.gz.
Signature
(idlwave-help-diagnostics STRING &optional DING)
Documentation
Add a diagnostics string to the list.
When DING is non-nil, ring the bell as well.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-help.el.gz
(defun idlwave-help-diagnostics (string &optional ding)
"Add a diagnostics string to the list.
When DING is non-nil, ring the bell as well."
(if (boundp 'idlwave-help-diagnostics)
(progn
(setq idlwave-help-diagnostics
(cons string idlwave-help-diagnostics))
(if ding (ding)))))