Mercurial > emacs
annotate lisp/rot13.el @ 687:e2b747dd6a6e
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 04 Jun 1992 06:43:29 +0000 |
parents | 7cbd4fcd8b0f |
children | 4f28bd14272c |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
1 ;;; rot13.el --- display a buffer in rot13. |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
2 |
583 | 3 ;; Copyright (C) 1988 Free Software Foundation, Inc. |
4 | |
5 ;; This file is part of GNU Emacs. | |
6 | |
7 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
8 ;; it under the terms of the GNU General Public License as published by | |
9 ;; the Free Software Foundation; either version 1, or (at your option) | |
10 ;; any later version. | |
11 | |
12 ;; GNU Emacs is distributed in the hope that it will be useful, | |
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 ;; GNU General Public License for more details. | |
16 | |
17 ;; You should have received a copy of the GNU General Public License | |
18 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
19 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
20 | |
21 | |
22 ;; Written by Howard Gayle. See case-table.el for details. | |
23 | |
24 ;; This hack is mainly to show off the char table stuff. | |
25 | |
26 (defvar rot13-display-table | |
27 (let ((table (make-display-table)) | |
28 (i 0)) | |
29 (while (< i 26) | |
30 (aset table (+ i ?a) (make-rope (+ (% (+ i 13) 26) ?a))) | |
31 (aset table (+ i ?A) (make-rope (+ (% (+ i 13) 26) ?A))) | |
32 (setq i (1+ i))) | |
33 table) | |
34 "Char table for rot 13 display.") | |
35 | |
36 (defun rot13-other-window () | |
37 "Display current buffer in rot 13 in another window." | |
38 (interactive) | |
39 (let ((w (display-buffer (current-buffer) t))) | |
40 (set-window-display-table w rot13-display-table))) | |
41 | |
42 (provide 'rot13) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
43 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
583
diff
changeset
|
44 ;;; rot13.el ends here |