Function: tempo-insert-prompt-compat
tempo-insert-prompt-compat is a byte-compiled function defined in
tempo.el.gz.
Signature
(tempo-insert-prompt-compat PROMPT)
Documentation
Compatibility hack for tempo-insert-prompt.
PROMPT can be either a prompt string, or a list of arguments to
tempo-insert-prompt, or nil.
Source Code
;; Defined in /usr/src/emacs/lisp/tempo.el.gz
;;;
;;; tempo-insert-prompt
(defun tempo-insert-prompt-compat (prompt)
"Compatibility hack for `tempo-insert-prompt'.
PROMPT can be either a prompt string, or a list of arguments to
`tempo-insert-prompt', or nil."
(if (consp prompt) ; not nil either
(apply 'tempo-insert-prompt prompt)
(tempo-insert-prompt prompt)))