More tweaks of skeleton documentation wrt \n behavior at bol/eol.
[bpt/emacs.git] / lisp / play / studly.el
CommitLineData
d501f516 1;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx)
630cc463 2
0560661c 3;;; This is in the public domain, since it was distributed
624d028a 4;;; by its author in 1986 without a copyright notice.
47bdd84a 5
60370d40
PJ
6;; This file is part of GNU Emacs.
7
34dc21db 8;; Maintainer: emacs-devel@gnu.org
58142744
ER
9;; Keywords: games
10
d9ecc911
ER
11;;; Commentary:
12
13;; Functions to studlycapsify a region, word, or buffer. Possibly the
14;; esoteric significance of studlycapsification escapes you; that is,
15;; you suffer from autostudlycapsifibogotification. Too bad.
16
630cc463
ER
17;;; Code:
18
32822a2d 19;;;###autoload
47bdd84a 20(defun studlify-region (begin end)
d97e62d2 21 "Studlify-case the region."
47bdd84a
JB
22 (interactive "*r")
23 (save-excursion
24 (goto-char begin)
25 (setq begin (point))
26 (while (and (<= (point) end)
27 (not (looking-at "\\W*\\'")))
28 (forward-word 1)
29 (backward-word 1)
30 (setq begin (max (point) begin))
31 (forward-word 1)
32 (let ((offset 0)
33 (word-end (min (point) end))
34 c)
35 (goto-char begin)
36 (while (< (point) word-end)
37 (setq offset (+ offset (following-char)))
38 (forward-char 1))
39 (setq offset (+ offset (following-char)))
40 (goto-char begin)
41 (while (< (point) word-end)
42 (setq c (following-char))
43 (if (and (= (% (+ c offset) 4) 2)
44 (let ((ch (following-char)))
45 (or (and (>= ch ?a) (<= ch ?z))
46 (and (>= ch ?A) (<= ch ?Z)))))
47 (progn
48 (delete-char 1)
49 (insert (logxor c ? ))))
50 (forward-char 1))
51 (setq begin (point))))))
52
32822a2d 53;;;###autoload
47bdd84a 54(defun studlify-word (count)
d97e62d2 55 "Studlify-case the current word, or COUNT words if given an argument."
47bdd84a
JB
56 (interactive "*p")
57 (let ((begin (point)) end rb re)
58 (forward-word count)
59 (setq end (point))
60 (setq rb (min begin end) re (max begin end))
61 (studlify-region rb re)))
62
d97e62d2 63;;;###autoload
47bdd84a 64(defun studlify-buffer ()
d97e62d2 65 "Studlify-case the current buffer."
47bdd84a
JB
66 (interactive "*")
67 (studlify-region (point-min) (point-max)))
d501f516 68
896546cd
RS
69(provide 'studly)
70
d501f516 71;;; studly.el ends here