Renamed to cookie1.el.
[bpt/emacs.git] / lisp / play / spook.el
CommitLineData
c88ab9ce
ER
1;;; spook.el --- spook phrase utility for overloading the NSA line eater
2
58142744
ER
3;; Copyright (C) 1988 Free Software Foundation, Inc.
4
d7b4d18f 5;; Maintainer: FSF
d7b4d18f 6;; Keywords: games
d9ecc911 7;; Created: May 1987
630cc463 8
a2535589
JA
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
e5167999 13;; the Free Software Foundation; either version 2, or (at your option)
a2535589
JA
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
630cc463 25;;; Commentary:
a2535589 26
ed73b256 27; Steve Strassmann <straz@media-lab.media.mit.edu> didn't write
a2535589
JA
28; this, and even if he did, he really didn't mean for you to use it
29; in an anarchistic way.
d9ecc911 30;
a2535589 31; To use this:
a2535589
JA
32; Just before sending mail, do M-x spook.
33; A number of phrases will be inserted into your buffer, to help
34; give your message that extra bit of attractiveness for automated
d9ecc911 35; keyword scanners. Help defeat the NSA trunk trawler!
a2535589 36
630cc463
ER
37;;; Code:
38
ed73b256
ER
39(require 'cookie)
40
a2535589 41; Variables
1e6dacf6 42(defvar spook-phrases-file (concat data-directory "spook.lines")
a2535589
JA
43 "Keep your favorite phrases here.")
44
45(defvar spook-phrase-default-count 15
46 "Default number of phrases to insert")
47
c38b7764 48;;;###autoload
a2535589
JA
49(defun spook ()
50 "Adds that special touch of class to your outgoing mail."
51 (interactive)
ed73b256
ER
52 (cookie-insert
53 spook-phrases-file
54 spook-phrase-default-count
55 "Checking authorization"
56 "Checking authorization...Approved"))
57
58;; Note: the implementation that used to take up most of this file has
59;; been cleaned up and generalized and now resides in cookie.el.
c88ab9ce
ER
60
61;;; spook.el ends here