Mercurial > emacs
annotate lisp/play/yow.el @ 6203:e353e98cdd77
(rmail-message-filter): Doc fix.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 04 Mar 1994 23:08:31 +0000 |
parents | dc61f16f4f79 |
children | 2dc00bfe8280 |
rev | line source |
---|---|
2374
c00b3b357392
(psychoanalyze-pinhead) Needed a prefrontal lobotomy. I gave it one.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2320
diff
changeset
|
1 ;;; yow.el --- quote random zippyisms |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
2 |
5622 | 3 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc. |
841 | 4 |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
5 ;; Maintainer: FSF |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: games |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
7 |
46 | 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:
772
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
46 | 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 | |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
24 ;;; Commentary: |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
25 |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3384
diff
changeset
|
26 ;; Important pinheadery for GNU Emacs. |
2320
ee096523431c
Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
27 ;; |
3384 | 28 ;; See cookie1.el for implementation. Note --- the `n' argument of yow |
2320
ee096523431c
Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
29 ;; from the 18.xx implementation is no longer; we only support *random* |
ee096523431c
Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
30 ;; random access now. |
772
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
31 |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
32 ;;; Code: |
2b5af16c9af3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
676
diff
changeset
|
33 |
3384 | 34 (require 'cookie1) |
2320
ee096523431c
Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
35 |
ee096523431c
Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
841
diff
changeset
|
36 (defvar yow-file (concat data-directory "yow.lines") |
5622 | 37 "File containing pertinent pinhead phrases.") |
46 | 38 |
256 | 39 ;;;###autoload |
5622 | 40 (defun yow (&optional insert) |
41 "Return or display a random Zippy quotation. With prefix arg, insert it." | |
42 (interactive "P") | |
43 (let ((yow (cookie yow-file | |
44 "Am I CONSING yet?..." "I have SEEN the CONSING!!"))) | |
45 (cond (insert | |
46 (insert yow)) | |
47 ((not (interactive-p)) | |
46 | 48 yow) |
49 ((not (string-match "\n" yow)) | |
50 (delete-windows-on (get-buffer-create "*Help*")) | |
51 (message "%s" yow)) | |
52 (t | |
53 (message "Yow!") | |
54 (with-output-to-temp-buffer "*Help*" | |
55 (princ yow)))))) | |
56 | |
4737
430cee1995ab
(read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
57 (defsubst read-zippyism (prompt &optional require-match) |
430cee1995ab
(read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
58 "Read a Zippyism from the minibuffer with completion, prompting with PROMPT. |
430cee1995ab
(read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
59 If optional second arg is non-nil, require input to match a completion." |
430cee1995ab
(read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
60 (read-cookie prompt yow-file |
430cee1995ab
(read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
61 "Am I CONSING yet?..." "I have SEEN the CONSING!!" |
430cee1995ab
(read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
62 require-match)) |
5622 | 63 |
64 ;;;###autoload | |
65 (defun insert-zippyism (&optional zippyism) | |
66 "Prompt with completion for a known Zippy quotation, and insert it at point." | |
67 (interactive (list (read-zippyism "Pinhead wisdom: " t))) | |
68 (insert zippyism)) | |
46 | 69 |
70 ; Yowza!! Feed zippy quotes to the doctor. Watch results. | |
71 ; fun, fun, fun. Entertainment for hours... | |
72 ; | |
73 ; written by Kayvan Aghaiepour | |
74 | |
256 | 75 ;;;###autoload |
46 | 76 (defun psychoanalyze-pinhead () |
77 "Zippy goes to the analyst." | |
78 (interactive) | |
79 (doctor) ; start the psychotherapy | |
80 (message "") | |
81 (switch-to-buffer "*doctor*") | |
82 (sit-for 0) | |
83 (while (not (input-pending-p)) | |
84 (insert-string (yow)) | |
85 (sit-for 0) | |
86 (doctor-ret-or-read 1) | |
87 (doctor-ret-or-read 1))) | |
88 | |
584 | 89 (provide 'yow) |
90 | |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
91 ;;; yow.el ends here |