Function: cookie1
cookie1 is a byte-compiled function defined in cookie1.el.gz.
Signature
(cookie1 ARG COOKIE-VEC)
Documentation
Insert a cookie phrase ARG times.
Source Code
;; Defined in /usr/src/emacs/lisp/play/cookie1.el.gz
(defun cookie1 (arg cookie-vec)
"Insert a cookie phrase ARG times."
(cond ((zerop arg) t)
(t (insert (aref cookie-vec arg))
(insert " ")
(cookie1 (1- arg) cookie-vec))))