diff options
author | Dave Love <fx@gnu.org> | 2000-10-08 17:36:39 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-10-08 17:36:39 +0000 |
commit | 32822a2da556d0c0950da36677a24950ac5dec75 (patch) | |
tree | 4088610aadb17416a57927aaaf9fbb5a538b0501 /lisp/play | |
parent | 1a601ad89e639ecd01ac2b25ee1458a9cdea702f (diff) | |
download | emacs-32822a2da556d0c0950da36677a24950ac5dec75.tar.gz |
(studlify-region, studlify-word): Add autoload
cookie.
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/studly.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/play/studly.el b/lisp/play/studly.el index a94eee5ecd3..f6764b45be5 100644 --- a/lisp/play/studly.el +++ b/lisp/play/studly.el @@ -13,6 +13,7 @@ ;;; Code: +;;;###autoload (defun studlify-region (begin end) "Studlify-case the region" (interactive "*r") @@ -46,6 +47,7 @@ (forward-char 1)) (setq begin (point)))))) +;;;###autoload (defun studlify-word (count) "Studlify-case the current word, or COUNT words if given an argument" (interactive "*p") |