annotate lisp/play/yow.el @ 8942:a43f3b56ed47

(x_set_scroll_bar_width): New function. (x_frame_parms): Add that function to this table. (Qscroll_bar_width): New symbol. (syms_of_xfns): Initialize and staticpro it. (Fx_create_frame): Set default scroll bar width.
author Karl Heuer <kwzh@gnu.org>
date Tue, 20 Sep 1994 05:07:53 +0000
parents 2dc00bfe8280
children 34901f215641
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
3 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
841
2cdce064065f entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 812
diff changeset
4
772
2b5af16c9af3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 676
diff changeset
5 ;; Maintainer: FSF
7127
2dc00bfe8280 Added comment indicating author.
Noah Friedman <friedman@splode.com>
parents: 5622
diff changeset
6 ;; Author: Richard Mlynarik
812
485e82a8acb5 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
7 ;; Keywords: games
656
d74e65773062 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
8
46
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; 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
13 ;; the Free Software Foundation; either version 2, or (at your option)
46
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; any later version.
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
772
2b5af16c9af3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 676
diff changeset
25 ;;; Commentary:
2b5af16c9af3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 676
diff changeset
26
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 3384
diff changeset
27 ;; Important pinheadery for GNU Emacs.
2320
ee096523431c Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 841
diff changeset
28 ;;
3384
55e7bbf78b1a Use cookie1.el.
Richard M. Stallman <rms@gnu.org>
parents: 2635
diff changeset
29 ;; 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
30 ;; 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
31 ;; random access now.
772
2b5af16c9af3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 676
diff changeset
32
2b5af16c9af3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 676
diff changeset
33 ;;; Code:
2b5af16c9af3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 676
diff changeset
34
3384
55e7bbf78b1a Use cookie1.el.
Richard M. Stallman <rms@gnu.org>
parents: 2635
diff changeset
35 (require 'cookie1)
2320
ee096523431c Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 841
diff changeset
36
ee096523431c Modified to use cookie.el
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 841
diff changeset
37 (defvar yow-file (concat data-directory "yow.lines")
5622
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
38 "File containing pertinent pinhead phrases.")
46
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39
256
7e4c7ef44243 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 46
diff changeset
40 ;;;###autoload
5622
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
41 (defun yow (&optional insert)
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
42 "Return or display a random Zippy quotation. With prefix arg, insert it."
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
43 (interactive "P")
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
44 (let ((yow (cookie yow-file
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
45 "Am I CONSING yet?..." "I have SEEN the CONSING!!")))
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
46 (cond (insert
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
47 (insert yow))
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
48 ((not (interactive-p))
46
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 yow)
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 ((not (string-match "\n" yow))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 (delete-windows-on (get-buffer-create "*Help*"))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 (message "%s" yow))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 (t
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 (message "Yow!")
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 (with-output-to-temp-buffer "*Help*"
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 (princ yow))))))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57
4737
430cee1995ab (read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
58 (defsubst read-zippyism (prompt &optional require-match)
430cee1995ab (read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
59 "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
60 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
61 (read-cookie prompt yow-file
430cee1995ab (read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
62 "Am I CONSING yet?..." "I have SEEN the CONSING!!"
430cee1995ab (read-zippyism): New function.
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
63 require-match))
5622
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
64
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
65 ;;;###autoload
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
66 (defun insert-zippyism (&optional zippyism)
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
67 "Prompt with completion for a known Zippy quotation, and insert it at point."
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
68 (interactive (list (read-zippyism "Pinhead wisdom: " t)))
dc61f16f4f79 (yow-file): Doc fix.
Roland McGrath <roland@gnu.org>
parents: 4737
diff changeset
69 (insert zippyism))
46
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71 ; Yowza!! Feed zippy quotes to the doctor. Watch results.
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72 ; fun, fun, fun. Entertainment for hours...
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73 ;
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 ; written by Kayvan Aghaiepour
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75
256
7e4c7ef44243 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 46
diff changeset
76 ;;;###autoload
46
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
77 (defun psychoanalyze-pinhead ()
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 "Zippy goes to the analyst."
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79 (interactive)
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 (doctor) ; start the psychotherapy
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 (message "")
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82 (switch-to-buffer "*doctor*")
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 (sit-for 0)
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84 (while (not (input-pending-p))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 (insert-string (yow))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 (sit-for 0)
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 (doctor-ret-or-read 1)
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88 (doctor-ret-or-read 1)))
ca2ddc6f6950 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89
584
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 444
diff changeset
90 (provide 'yow)
4cd7543be581 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 444
diff changeset
91
656
d74e65773062 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 584
diff changeset
92 ;;; yow.el ends here