1992-05-30 20:24:49 +00:00
|
|
|
;;; studly.el --- StudlyCaps (tm)(r)(c)(xxx)
|
1992-07-15 21:31:44 +00:00
|
|
|
|
1992-05-31 18:36:59 +00:00
|
|
|
;;; This is in the public domain, since it was distributed
|
2009-09-04 06:52:21 +00:00
|
|
|
;;; by its author in 1986 without a copyright notice.
|
1986-09-12 04:36:33 +00:00
|
|
|
|
2001-07-15 19:53:53 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2001-08-06 09:59:02 +00:00
|
|
|
;; Maintainer: FSF
|
1992-07-22 02:58:48 +00:00
|
|
|
;; Keywords: games
|
|
|
|
|
1993-03-22 16:53:22 +00:00
|
|
|
;;; 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.
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2000-10-08 17:36:39 +00:00
|
|
|
;;;###autoload
|
1986-09-12 04:36:33 +00:00
|
|
|
(defun studlify-region (begin end)
|
2001-11-29 08:18:25 +00:00
|
|
|
"Studlify-case the region."
|
1986-09-12 04:36:33 +00:00
|
|
|
(interactive "*r")
|
|
|
|
(save-excursion
|
|
|
|
(goto-char begin)
|
|
|
|
(setq begin (point))
|
|
|
|
(while (and (<= (point) end)
|
|
|
|
(not (looking-at "\\W*\\'")))
|
|
|
|
(forward-word 1)
|
|
|
|
(backward-word 1)
|
|
|
|
(setq begin (max (point) begin))
|
|
|
|
(forward-word 1)
|
|
|
|
(let ((offset 0)
|
|
|
|
(word-end (min (point) end))
|
|
|
|
c)
|
|
|
|
(goto-char begin)
|
|
|
|
(while (< (point) word-end)
|
|
|
|
(setq offset (+ offset (following-char)))
|
|
|
|
(forward-char 1))
|
|
|
|
(setq offset (+ offset (following-char)))
|
|
|
|
(goto-char begin)
|
|
|
|
(while (< (point) word-end)
|
|
|
|
(setq c (following-char))
|
|
|
|
(if (and (= (% (+ c offset) 4) 2)
|
|
|
|
(let ((ch (following-char)))
|
|
|
|
(or (and (>= ch ?a) (<= ch ?z))
|
|
|
|
(and (>= ch ?A) (<= ch ?Z)))))
|
|
|
|
(progn
|
|
|
|
(delete-char 1)
|
|
|
|
(insert (logxor c ? ))))
|
|
|
|
(forward-char 1))
|
|
|
|
(setq begin (point))))))
|
|
|
|
|
2000-10-08 17:36:39 +00:00
|
|
|
;;;###autoload
|
1986-09-12 04:36:33 +00:00
|
|
|
(defun studlify-word (count)
|
2001-11-29 08:18:25 +00:00
|
|
|
"Studlify-case the current word, or COUNT words if given an argument."
|
1986-09-12 04:36:33 +00:00
|
|
|
(interactive "*p")
|
|
|
|
(let ((begin (point)) end rb re)
|
|
|
|
(forward-word count)
|
|
|
|
(setq end (point))
|
|
|
|
(setq rb (min begin end) re (max begin end))
|
|
|
|
(studlify-region rb re)))
|
|
|
|
|
2001-11-29 08:18:25 +00:00
|
|
|
;;;###autoload
|
1986-09-12 04:36:33 +00:00
|
|
|
(defun studlify-buffer ()
|
2001-11-29 08:18:25 +00:00
|
|
|
"Studlify-case the current buffer."
|
1986-09-12 04:36:33 +00:00
|
|
|
(interactive "*")
|
|
|
|
(studlify-region (point-min) (point-max)))
|
1992-05-30 20:24:49 +00:00
|
|
|
|
1997-06-22 18:57:55 +00:00
|
|
|
(provide 'studly)
|
|
|
|
|
1992-05-30 20:24:49 +00:00
|
|
|
;;; studly.el ends here
|