Function: srecode-insert-again
srecode-insert-again is an interactive and byte-compiled function
defined in insert.el.gz.
Signature
(srecode-insert-again)
Documentation
Insert the previously inserted template (by name) again.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
(defun srecode-insert-again ()
"Insert the previously inserted template (by name) again."
(interactive)
(let ((prev (car srecode-read-template-name-history)))
(if prev
(srecode-insert prev)
(call-interactively 'srecode-insert))))