1 ;;; yow.el --- generate random zippyisms
4 ;; Last-modified: 14 Jun 1992
6 ;; Copyright (C) 1985, 1987 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
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
12 ;; the Free Software Foundation; either version 1, or (at your option)
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.
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.
26 ;; Important pinheaddery for GNU Emacs.
27 ;; Expects file emacs/etc/yow.lines to be in ITS-style LINS format
28 ;; (ie strings terminated by ascii 0 characters. Leading whitespace ignored)
29 ;; Everything up to the first \000 is a comment.
33 ; Randomize the seed in the random number generator.
37 (defun yow (&optional n interactive
)
38 "Return or display a Zippy quotation."
41 (setq yow-vector
(snarf-yows)))
42 (cond (n (setq n
(prefix-numeric-value n
)))
43 ((>= (setq n
(random (length yow-vector
))) 0))
45 (let ((yow (aref yow-vector n
)))
46 (cond ((not interactive
)
48 ((not (string-match "\n" yow
))
49 (delete-windows-on (get-buffer-create "*Help*"))
53 (with-output-to-temp-buffer "*Help*"
56 (defvar yow-vector nil
"Pertinent pinhead statements")
57 (defun snarf-yows (&optional file
)
59 (let ((buf (generate-new-buffer " yow"))
61 (cursor-in-echo-area t
))
62 (message "Am I CONSING yet?...")
64 (insert-file-contents (or file
65 (expand-file-name "yow.lines" data-directory
)))
67 (while (progn (skip-chars-forward " \t\n\r\f") (not (eobp)))
70 (setq result
(cons (buffer-substring beg
(1- (point)))
73 (message "I have SEEN the CONSING!!" (length result
))
74 (apply 'vector
(nreverse result
)))))
76 ; Yowza!! Feed zippy quotes to the doctor. Watch results.
77 ; fun, fun, fun. Entertainment for hours...
79 ; written by Kayvan Aghaiepour
82 (defun psychoanalyze-pinhead ()
83 "Zippy goes to the analyst."
85 (doctor) ; start the psychotherapy
87 (setq yow-vector
(snarf-yows)))
89 (switch-to-buffer "*doctor*")
91 (while (not (input-pending-p))
94 (doctor-ret-or-read 1)
95 (doctor-ret-or-read 1)))