]> code.delx.au - gnu-emacs/blobdiff - lisp/play/studly.el
Remove compatibility with Emacs 24.3 in octave-mode
[gnu-emacs] / lisp / play / studly.el
index 6d97a31fef056377653494d97c64be816cca1b00..ff1bf03e118a402091ba5061dbcd57fc66c3eec5 100644 (file)
@@ -1,19 +1,34 @@
 ;;; 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.
+
+;; Maintainer: emacs-devel@gnu.org
+;; Keywords: games
+
+;;; Commentary:
 
+;; Functions to studlycapsify a region, word, or buffer.  Possibly the
+;; esoteric significance of studlycapsification escapes you; that is,
+;; you suffer from autostudlycapsifibogotification.  Too bad.
+
+;;; Code:
+
+;;;###autoload
 (defun studlify-region (begin end)
-  "Studlify-case the region"
+  "Studlify-case the region."
   (interactive "*r")
   (save-excursion
     (goto-char begin)
     (setq begin (point))
     (while (and (<= (point) end)
                (not (looking-at "\\W*\\'")))
-      (forward-word 1)
-      (backward-word 1)
+      (forward-word-strictly 1)
+      (backward-word-strictly 1)
       (setq begin (max (point) begin))
-      (forward-word 1)
+      (forward-word-strictly 1)
       (let ((offset 0)
            (word-end (min (point) end))
            c)
          (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)
+    (forward-word-strictly count)
     (setq end (point))
     (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)
+
 ;;; studly.el ends here