;;;###autoload
(defun studlify-region (begin end)
- "Studlify-case the region"
+ "Studlify-case the region."
(interactive "*r")
(save-excursion
(goto-char begin)
;;;###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)
(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)))