Function: tempo-insert-named
tempo-insert-named is a byte-compiled function defined in tempo.el.gz.
Signature
(tempo-insert-named NAME)
Documentation
Insert the previous insertion saved under a named specified in NAME.
If there is no such name saved, a tempo mark is inserted.
Note that if the data is a string, it will not be run through the string processor.
Source Code
;; Defined in /usr/src/emacs/lisp/tempo.el.gz
;;;
;;; tempo-insert-named
(defun tempo-insert-named (name)
"Insert the previous insertion saved under a named specified in NAME.
If there is no such name saved, a tempo mark is inserted.
Note that if the data is a string, it will not be run through the string
processor."
(let* ((insertion (tempo-lookup-named name)))
(cond ((null insertion)
(tempo-insert-mark (point-marker)))
((stringp insertion)
(insert insertion))
(t
(tempo-insert insertion nil)))))