Mercurial > emacs
view lisp/play/studly.el @ 57561:505c55fe8dc9
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-621
Merge from gnus--rel--5.10
Patches applied:
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-51
- miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-52
Update from CVS
* miles@gnu.org--gnu-2004/gnus--rel--5.10--patch-53
Merge from emacs--cvs-trunk--0
2004-10-15 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/pop3.el (pop3-leave-mail-on-server): Describe possible problems
in the doc string.
* lisp/gnus/message.el (message-ignored-news-headers)
(message-ignored-supersedes-headers)
(message-ignored-resent-headers)
(message-forward-ignored-headers): Improve custom type.
2004-10-15 Simon Josefsson <jas@extundo.com>
* lisp/gnus/pop3.el (top-level): Don't require nnheader.
(pop3-read-timeout): Add.
(pop3-accept-process-output): Add.
(pop3-read-response, pop3-retr): Use it.
2004-10-11 Reiner Steib <Reiner.Steib@gmx.de>
* lisp/gnus/message.el (message-bury): Use `window-dedicated-p'.
2004-10-15 Reiner Steib <Reiner.Steib@gmx.de>
* man/gnus.texi (New Features): Add 5.11.
* man/message.texi (Resending): Remove wrong default value.
* man/gnus.texi (Mail Source Specifiers): Describe possible problems
of `pop3-leave-mail-on-server'. Add `pop3-movemail' and
`pop3-leave-mail-on-server' to the index.
2004-10-15 Katsumi Yamaoka <yamaoka@jpl.org>
* man/message.texi (Canceling News): Add how to set a password.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sun, 17 Oct 2004 14:29:01 +0000 |
parents | 695cf19ef79e |
children | 375f2633d815 1e3a407766b9 |
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. ;; This file is part of GNU Emacs. ;; Maintainer: FSF ;; 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: ;;;###autoload (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)))))) ;;;###autoload (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))) ;;;###autoload (defun studlify-buffer () "Studlify-case the current buffer." (interactive "*") (studlify-region (point-min) (point-max))) (provide 'studly) ;;; arch-tag: 0dbf5a60-d2e6-48c2-86ae-77fc8575ac67 ;;; studly.el ends here