Function: idlwave-command-hook

idlwave-command-hook is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-command-hook)

Documentation

Command run after every command.

Evaluates a non-nil value of the *variable* idlwave--command-function and sets the variable to zero afterwards.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defun idlwave-command-hook ()
  "Command run after every command.
Evaluates a non-nil value of the *variable* `idlwave--command-function' and
sets the variable to zero afterwards."
  (and idlwave--command-function
       (with-demoted-errors "idlwave-command-hook: %S"
	 (funcall (prog1 idlwave--command-function
                    (setq idlwave--command-function nil))))))