2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
+ * play/cookie1.el (cookie, cookie-insert, shuffle-vector): Doc
+ fixes.
+
* play/studly.el (studlify-word, studlify-region)
(studlify-buffer): Fix doc-string.
(studlify-buffer): Add autoload cookie.
;;;###autoload
(defun cookie (phrase-file startmsg endmsg)
- "Return a random phrase from PHRASE-FILE. When the phrase file
-is read in, display STARTMSG at beginning of load, ENDMSG at end."
+ "Return a random phrase from PHRASE-FILE.
+When the phrase file is read in, display STARTMSG at the beginning
+of load, ENDMSG at the end."
(let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg)))
(shuffle-vector cookie-vector)
(aref cookie-vector 1)))
;;;###autoload
(defun cookie-insert (phrase-file &optional count startmsg endmsg)
- "Insert random phrases from PHRASE-FILE; COUNT of them. When the phrase file
-is read in, display STARTMSG at beginning of load, ENDMSG at end."
+ "Insert random phrases from PHRASE-FILE; COUNT of them.
+When the phrase file is read in, display STARTMSG at the beginning
+of load, ENDMSG at the end."
(let ((cookie-vector (cookie-snarf phrase-file startmsg endmsg)))
(shuffle-vector cookie-vector)
(let ((start (point)))
;
;;;###autoload
(defun shuffle-vector (vector)
- "Randomly permute the elements of VECTOR (all permutations equally likely)"
+ "Randomly permute the elements of VECTOR (all permutations equally likely)."
(let ((i 0)
j
temp