Function: idlwave-help-error

idlwave-help-error is a byte-compiled function defined in idlw-help.el.gz.

Signature

(idlwave-help-error NAME TYPE CLASS KEYWORD)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-help.el.gz
(defun idlwave-help-error (name _type class keyword)
  (error "Can't find help on %s%s %s"
	 (or (and (or class name) (idlwave-make-full-name class name))
	     "<unknown>")
	 (if keyword (format ", keyword %s" (upcase keyword)) "")
	 (if idlwave-html-help-location
	     ""
	   "(help location unknown)")))