Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / obsolete / yow.el
blobaedee772d88576d0d26a209b653893349a220454
1 ;;; yow.el --- quote random zippyisms
3 ;; Copyright (C) 1993-1995, 2000-2014 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Author: Richard Mlynarik
7 ;; Keywords: games
8 ;; Obsolete-since: 24.4
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Important pinheadery for GNU Emacs.
28 ;; This file is obsolete. For similar functionality, see
29 ;; fortune.el and cookie1.el.
31 ;;; Code:
33 (require 'cookie1)
35 (defgroup yow nil
36 "Quote random zippyisms."
37 :prefix "yow-"
38 :group 'games)
40 (defcustom yow-file (expand-file-name "yow.lines" data-directory)
41 "File containing pertinent pinhead phrases."
42 :type 'file
43 :group 'yow)
45 (defconst yow-load-message "Am I CONSING yet?...")
46 (defconst yow-after-load-message "I have SEEN the CONSING!!")
48 ;;;###autoload
49 (defun yow (&optional insert display)
50 "Return or display a random Zippy quotation. With prefix arg, insert it."
51 (interactive "P\np")
52 (let ((yow (cookie yow-file yow-load-message yow-after-load-message)))
53 (cond (insert
54 (insert yow))
55 ((not display)
56 yow)
58 (message "%s" yow)))))
60 (defsubst read-zippyism (prompt &optional require-match)
61 "Read a Zippyism from the minibuffer with completion, prompting with PROMPT.
62 If optional second arg is non-nil, require input to match a completion."
63 (cookie-read prompt yow-file yow-load-message yow-after-load-message
64 require-match))
66 ;;;###autoload
67 (defun insert-zippyism (&optional zippyism)
68 "Prompt with completion for a known Zippy quotation, and insert it at point."
69 (interactive (list (read-zippyism "Pinhead wisdom: " t)))
70 (insert zippyism))
72 ;;;###autoload
73 (defun apropos-zippy (regexp)
74 "Return a list of all Zippy quotes matching REGEXP.
75 If called interactively, display a list of matches."
76 (interactive "sApropos Zippy (regexp): ")
77 (cookie-apropos regexp yow-file (called-interactively-p 'interactive)))
80 ;; Yowza!! Feed zippy quotes to the doctor. Watch results.
81 ;; fun, fun, fun. Entertainment for hours...
83 ;; written by Kayvan Aghaiepour
85 (declare-function doctor-ret-or-read "doctor" (arg))
87 ;;;###autoload
88 (defun psychoanalyze-pinhead ()
89 "Zippy goes to the analyst."
90 (interactive)
91 (cookie-doctor yow-file))
93 (provide 'yow)
95 ;;; yow.el ends here