657
|
1 ;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx)
|
787
|
2
|
665
|
3 ;;; This is in the public domain, since it was distributed
|
|
4 ;;; by its author without a copyright notice in 1986.
|
2
|
5
|
38414
|
6 ;; This file is part of GNU Emacs.
|
|
7
|
38695
|
8 ;; Maintainer: FSF
|
841
|
9 ;; Keywords: games
|
|
10
|
2315
|
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
|
787
|
17 ;;; Code:
|
|
18
|
32297
|
19 ;;;###autoload
|
2
|
20 (defun studlify-region (begin end)
|
41664
|
21 "Studlify-case the region."
|
2
|
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
|
32297
|
53 ;;;###autoload
|
2
|
54 (defun studlify-word (count)
|
41664
|
55 "Studlify-case the current word, or COUNT words if given an argument."
|
2
|
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
|
41664
|
63 ;;;###autoload
|
2
|
64 (defun studlify-buffer ()
|
41664
|
65 "Studlify-case the current buffer."
|
2
|
66 (interactive "*")
|
|
67 (studlify-region (point-min) (point-max)))
|
657
|
68
|
18383
|
69 (provide 'studly)
|
|
70
|
52401
|
71 ;;; arch-tag: 0dbf5a60-d2e6-48c2-86ae-77fc8575ac67
|
657
|
72 ;;; studly.el ends here
|