Function: tempo-lookup-named
tempo-lookup-named is a byte-compiled function defined in tempo.el.gz.
Signature
(tempo-lookup-named NAME)
Documentation
Lookup some saved data under the name NAME.
Returns the data if NAME was found, and nil otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/tempo.el.gz
;;;
;;; tempo-lookup-named
(defun tempo-lookup-named (name)
"Lookup some saved data under the name NAME.
Returns the data if NAME was found, and nil otherwise."
(cdr (assq name tempo-named-insertions)))