emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/play/studly.el


From: Pavel Janík
Subject: [Emacs-diffs] Changes to emacs/lisp/play/studly.el
Date: Thu, 29 Nov 2001 03:18:25 -0500

Index: emacs/lisp/play/studly.el
diff -u emacs/lisp/play/studly.el:1.13 emacs/lisp/play/studly.el:1.14
--- emacs/lisp/play/studly.el:1.13      Mon Aug  6 05:39:53 2001
+++ emacs/lisp/play/studly.el   Thu Nov 29 03:18:25 2001
@@ -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)))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]