]> code.delx.au - gnu-emacs/blobdiff - lisp/play/studly.el
Merge from emacs--rel--22
[gnu-emacs] / lisp / play / studly.el
index a94eee5ecd340a62f805818dd95cbd794be251e5..2bb4cb5384645d6bb08de37b9a769ef7d823f29f 100644 (file)
@@ -3,6 +3,9 @@
 ;;; This is in the public domain, since it was distributed
 ;;; by its author without a copyright notice in 1986.
 
+;; This file is part of GNU Emacs.
+
+;; Maintainer: FSF
 ;; Keywords: games
 
 ;;; Commentary:
@@ -13,8 +16,9 @@
 
 ;;; Code:
 
+;;;###autoload
 (defun studlify-region (begin end)
-  "Studlify-case the region"
+  "Studlify-case the region."
   (interactive "*r")
   (save-excursion
     (goto-char begin)
@@ -46,8 +50,9 @@
          (forward-char 1))
        (setq begin (point))))))
 
+;;;###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)))
 
 (provide 'studly)
 
+;;; arch-tag: 0dbf5a60-d2e6-48c2-86ae-77fc8575ac67
 ;;; studly.el ends here