Mercurial > emacs
annotate lisp/play/dissociate.el @ 7456:493a32789e7d
(update-file-autoloads): Delete leftover variable.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 11 May 1994 04:40:25 +0000 |
parents | 46f13ed25534 |
children | 7198dbca1d01 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; dissociate.el --- scramble text amusingly for Emacs. |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1985 Free Software Foundation, Inc. |
4 | |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
5 ;; Maintainer: FSF |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
6 ;; Keywords: games |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
794
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
24 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
25 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2307
diff
changeset
|
26 ;; The single entry point, `dissociated-press', applies a travesty |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
27 ;; generator to the current buffer. The results can be quite amusing. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
28 |
794
2598c08c91c2
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
29 ;;; Code: |
36 | 30 |
258 | 31 ;;;###autoload |
36 | 32 (defun dissociated-press (&optional arg) |
33 "Dissociate the text of the current buffer. | |
34 Output goes in buffer named *Dissociation*, | |
35 which is redisplayed each time text is added to it. | |
36 Every so often the user must say whether to continue. | |
37 If ARG is positive, require ARG chars of continuity. | |
38 If ARG is negative, require -ARG words of continuity. | |
39 Default is 2." | |
40 (interactive "P") | |
41 (setq arg (if arg (prefix-numeric-value arg) 2)) | |
42 (let* ((inbuf (current-buffer)) | |
43 (outbuf (get-buffer-create "*Dissociation*")) | |
44 (move-function (if (> arg 0) 'forward-char 'forward-word)) | |
45 (move-amount (if (> arg 0) arg (- arg))) | |
46 (search-function (if (> arg 0) 'search-forward 'word-search-forward)) | |
47 (last-query-point 0)) | |
48 (switch-to-buffer outbuf) | |
49 (erase-buffer) | |
50 (while | |
51 (save-excursion | |
52 (goto-char last-query-point) | |
53 (vertical-motion (- (window-height) 4)) | |
54 (or (= (point) (point-max)) | |
55 (and (progn (goto-char (point-max)) | |
56 (y-or-n-p "Continue dissociation? ")) | |
57 (progn | |
58 (message "") | |
59 (recenter 1) | |
60 (setq last-query-point (point-max)) | |
61 t)))) | |
62 (let (start end) | |
63 (save-excursion | |
64 (set-buffer inbuf) | |
65 (setq start (point)) | |
66 (if (eq move-function 'forward-char) | |
67 (progn | |
68 (setq end (+ start (+ move-amount (random 16)))) | |
69 (if (> end (point-max)) | |
70 (setq end (+ 1 move-amount (random 16)))) | |
71 (goto-char end)) | |
72 (funcall move-function | |
73 (+ move-amount (random 16)))) | |
74 (setq end (point))) | |
75 (let ((opoint (point))) | |
76 (insert-buffer-substring inbuf start end) | |
77 (save-excursion | |
78 (goto-char opoint) | |
79 (end-of-line) | |
80 (and (> (current-column) fill-column) | |
81 (do-auto-fill))))) | |
82 (save-excursion | |
83 (set-buffer inbuf) | |
84 (if (eobp) | |
85 (goto-char (point-min)) | |
86 (let ((overlap | |
87 (buffer-substring (prog1 (point) | |
88 (funcall move-function | |
89 (- move-amount))) | |
90 (point)))) | |
4404
46f13ed25534
(dissociated-press): Use `(random N)' instead of while loop.
Paul Eggert <eggert@twinsun.com>
parents:
3591
diff
changeset
|
91 (goto-char (1+ (random (1- (point-max))))) |
36 | 92 (or (funcall search-function overlap nil t) |
93 (let ((opoint (point))) | |
94 (goto-char 1) | |
95 (funcall search-function overlap opoint t)))))) | |
96 (sit-for 0)))) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
97 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
98 ;;; dissociate.el ends here |