# HG changeset patch # User Pavel Jank # Date 1007021905 0 # Node ID 4e9db3befa860aab5014da2403a923dc797a3bdf # Parent 1cc9127ddf726fb517899619c033bf4e703fce35 (studlify-word, studlify-region, studlify-buffer): Fix doc-string. (studlify-buffer): Add autoload cookie. diff -r 1cc9127ddf72 -r 4e9db3befa86 lisp/play/studly.el --- a/lisp/play/studly.el Thu Nov 29 07:27:54 2001 +0000 +++ b/lisp/play/studly.el Thu Nov 29 08:18:25 2001 +0000 @@ -18,7 +18,7 @@ ;;;###autoload (defun studlify-region (begin end) - "Studlify-case the region" + "Studlify-case the region." (interactive "*r") (save-excursion (goto-char begin) @@ -52,7 +52,7 @@ ;;;###autoload (defun studlify-word (count) - "Studlify-case the current word, or COUNT words if given an argument" + "Studlify-case the current word, or COUNT words if given an argument." (interactive "*p") (let ((begin (point)) end rb re) (forward-word count) @@ -60,8 +60,9 @@ (setq rb (min begin end) re (max begin end)) (studlify-region rb re))) +;;;###autoload (defun studlify-buffer () - "Studlify-case the current buffer" + "Studlify-case the current buffer." (interactive "*") (studlify-region (point-min) (point-max)))