Mercurial > emacs
view lisp/play/studly.el @ 110505:e67da919e2b5
Fix uses of int instead of EMACS_INT in intervals.c.
intervals.c (traverse_intervals, rotate_right, rotate_left)
(balance_an_interval, split_interval_right, split_interval_left)
(find_interval, next_interval, update_interval)
(adjust_intervals_for_insertion, delete_node, delete_interval)
(interval_deletion_adjustment, adjust_intervals_for_deletion)
(offset_intervals, merge_interval_right, merge_interval_left)
(graft_intervals_into_buffer, adjust_for_invis_intang)
(move_if_not_intangible, get_local_map, copy_intervals)
(copy_intervals_to_string, compare_string_intervals)
(set_intervals_multibyte_1): Use EMACS_INT for buffer positions
and EMACS_UINT for interval tree size.
intervals.h (traverse_intervals, split_interval_right)
(split_interval_left, find_interval, offset_intervals)
(graft_intervals_into_buffer, copy_intervals)
(copy_intervals_to_string, move_if_not_intangible, get_local_map)
(update_interval): Adjust prototypes.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 23 Sep 2010 11:46:54 -0400 |
parents | 950c45d670f2 |
children | ef719132ddfa |
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 in 1986 without a copyright notice. ;; 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