1 ;;; mule-caesar.el --- ROT 13-47 Caesar rotation utility
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version: $Id: mule-caesar.el,v 1.3 1997-05-09 02:47:55 morioka Exp $
7 ;; Keywords: ROT 13-47, caesar, mail, news, text/x-rot13-47
9 ;; This file is part of APEL (A Portable Emacs Library).
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ;; General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 (defun char-to-octet-list (character)
29 "Return list of octets in code table of graphic character set."
30 (let* ((code (char-int character))
31 (dim (charset-dimension (char-charset code)))
34 (setq dest (cons (logand code 127) dest)
40 (defun mule-caesar-region (start end &optional stride-ascii)
41 "Caesar rotation of current region.
42 Optional argument STRIDE-ASCII is rotation-size for Latin alphabet
43 \(A-Z and a-z). For non-ASCII text, ROT-N/2 will be performed in any
44 case (N=charset-chars; 94 for 94 or 94x94 graphic character set; 96
45 for 96 or 96x96 graphic character set)."
47 (setq stride-ascii (if stride-ascii
52 (narrow-to-region start end)
54 (while (< (point)(point-max))
55 (let* ((chr (char-after (point)))
56 (charset (char-charset chr))
58 (if (eq charset 'ascii)
59 (cond ((and (<= ?A chr) (<= chr ?Z))
60 (setq chr (+ chr stride-ascii))
67 ((and (<= ?a chr) (<= chr ?z))
68 (setq chr (+ chr stride-ascii))
78 (let* ((stride (lsh (charset-chars charset) -1))
79 (ret (mapcar (function
85 (char-to-octet-list chr))))
87 (insert (make-char (char-charset chr)
88 (car ret)(car (cdr ret))))
92 (provide 'mule-caesar)
94 ;;; mule-caesar.el ends here