Function: idlwave-call-special
idlwave-call-special is a byte-compiled function defined in
idlwave.el.gz.
This function is obsolete since 28.1; use
run-hook-with-args-until-success instead.
Signature
(idlwave-call-special FUNCTIONS &rest ARGS)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defun idlwave-call-special (functions &rest args)
(declare (obsolete run-hook-with-args-until-success "28.1"))
(let ((funcs functions)
fun ret)
(catch 'exit
(while (setq fun (pop funcs))
(if (setq ret (apply fun args))
(throw 'exit ret)))
nil)))