X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/070c251e7408c9021cc4cb88804783329050068d..bbd347f5f7e99da1a559dad818b5fa8f59c0901e:/lisp/play/studly.el diff --git a/lisp/play/studly.el b/lisp/play/studly.el index 26d2a41bc0..d28304df1e 100644 --- a/lisp/play/studly.el +++ b/lisp/play/studly.el @@ -1,7 +1,7 @@ ;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx) ;;; This is in the public domain, since it was distributed -;;; by its author without a copyright notice in 1986. +;;; by its author in 1986 without a copyright notice. ;; This file is part of GNU Emacs. @@ -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)))