Mercurial > emacs
annotate lisp/play/studly.el @ 40584:252c24214c9f
Remove the menu items for nodes that were moved to xresource.texi.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 31 Oct 2001 21:50:05 +0000 |
parents | 01c7199c0ee7 |
children | 4e9db3befa86 |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2
diff
changeset
|
1 ;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx) |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
665
diff
changeset
|
2 |
665
f9274ecd9acd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
664
diff
changeset
|
3 ;;; This is in the public domain, since it was distributed |
f9274ecd9acd
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
664
diff
changeset
|
4 ;;; by its author without a copyright notice in 1986. |
2 | 5 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
32297
diff
changeset
|
6 ;; This file is part of GNU Emacs. |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
32297
diff
changeset
|
7 |
38695 | 8 ;; Maintainer: FSF |
841 | 9 ;; Keywords: games |
10 | |
2315
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
11 ;;; Commentary: |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
12 |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
13 ;; Functions to studlycapsify a region, word, or buffer. Possibly the |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
14 ;; esoteric significance of studlycapsification escapes you; that is, |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
15 ;; you suffer from autostudlycapsifibogotification. Too bad. |
9e7ec92a4fdf
Added or corrected Commentary headers
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
16 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
665
diff
changeset
|
17 ;;; Code: |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
665
diff
changeset
|
18 |
32297
5a9159a46fe5
(studlify-region, studlify-word): Add autoload
Dave Love <fx@gnu.org>
parents:
18383
diff
changeset
|
19 ;;;###autoload |
2 | 20 (defun studlify-region (begin end) |
21 "Studlify-case the region" | |
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
5a9159a46fe5
(studlify-region, studlify-word): Add autoload
Dave Love <fx@gnu.org>
parents:
18383
diff
changeset
|
53 ;;;###autoload |
2 | 54 (defun studlify-word (count) |
55 "Studlify-case the current word, or COUNT words if given an argument" | |
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 | |
63 (defun studlify-buffer () | |
64 "Studlify-case the current buffer" | |
65 (interactive "*") | |
66 (studlify-region (point-min) (point-max))) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2
diff
changeset
|
67 |
18383 | 68 (provide 'studly) |
69 | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2
diff
changeset
|
70 ;;; studly.el ends here |