Mercurial > emacs
view lisp/play/studly.el @ 24354:6a438ef0b573
Set version to 1.4.1. Changed mail address to
alex@gnu.org. Mention the mailin listg sql.el@gnu.org.
(sql-input-ring-separator): Doc fix.
(sql-mode-syntax-table): double-dash starts comments is defined as
". 56" instead of ". 12b" for XEmacs.
(sql-stop, sql-interactive-mode): Doc fixes.
(sql-postgres): Queries for database and server, not just one.
(sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 19 Feb 1999 04:27:18 +0000 |
parents | 11218164bc54 |
children | 5a9159a46fe5 |
line wrap: on
line source
;;; 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. ;; 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: (defun studlify-region (begin end) "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) (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)))))) (defun studlify-word (count) "Studlify-case the current word, or COUNT words if given an argument" (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))) (defun studlify-buffer () "Studlify-case the current buffer" (interactive "*") (studlify-region (point-min) (point-max))) (provide 'studly) ;;; studly.el ends here