Mercurial > emacs
annotate lisp/play/meese.el @ 17577:6cb2ad625486
(dun-special-object):
Floppy disk will melt in inventory or room, regardless
of whether or not Stallman statuette is around.
(dun-examine):
You can examine objects in the jar without taking them out.
(dun-take):
You can take objects from the jar while you are on the bus.
(dun-dig):
Message from digging on the bus is the same as when you dig and don't
find anything.
(dun-climb):
No longer errors out of the game when argument to "climb" is invalid.
(dun-put):
You can now put things in the jar, even if you are on the bus.
(dun-special-move):
"In" or "Out" command tells you if you are already on or off the bus.
(dun-sauna-heat):
Changed "begin to sweat" to "are perspiring"
so that it makes sense whether you are heating up or cooling down.
(dun-help):
Changed author e-mail address, added web page.
Added hint for batch mode.
(*global*):
Fixed spelling of Presely in global object list.
(*global*):
Added coconuts, tank, and lake as objects that are recognized.
(*global*):
Added `slip' as another way of describing the paper,
and `chip' as another way of describing the CPU.
(*global*):
Upcase abbreviations of directions in room descriptions.
(dun-login):
Fixed erroneous login message to better-describe ftp limitations.
(dun-rlogin):
Added error message if user tries to rlogin back to pokey.
(dun-load-d):
Fixed so that if restore file isn't found which in non-batch mode,
window will switch back to game.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 27 Apr 1997 17:15:58 +0000 |
parents | 9127591ba072 |
children | 66c03b43ceb8 |
rev | line source |
---|---|
2233
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
896
diff
changeset
|
1 ;;; meese.el --- protect the impressionable young minds of America |
fb0ed5a1d0f3
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
896
diff
changeset
|
2 |
896 | 3 ;; This is in the public domain on account of being distributed since |
4 ;; 1985 or 1986 without a copyright notice. | |
791
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 |
203c23c9f22c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
6 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
791
diff
changeset
|
7 ;; Keywords: games |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
14
diff
changeset
|
8 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
840
diff
changeset
|
9 ;;; Code: |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
840
diff
changeset
|
10 |
14 | 11 (defun protect-innocence-hook () |
8126
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
12 (let ((dir (file-name-directory buffer-file-name))) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
13 (if (and (equal buffer-file-name (expand-file-name "sex.6" dir)) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
14 (file-exists-p buffer-file-name) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
15 (not (y-or-n-p "Are you over 18? "))) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
16 (progn |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
17 (clear-visited-file-modtime) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
18 (setq buffer-file-name (expand-file-name "celibacy.1" dir)) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
19 (let ((inhibit-read-only t)) ; otherwise (erase-buffer) may bomb. |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
20 (erase-buffer) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
21 (insert-file-contents buffer-file-name t)) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
22 (rename-buffer (file-name-nondirectory buffer-file-name)))))) |
14 | 23 |
8126
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
24 (add-hook 'find-file-hooks 'protect-innocence-hook) |
9127591ba072
Use add-hook, (provide 'meese).
Richard M. Stallman <rms@gnu.org>
parents:
2233
diff
changeset
|
25 (provide 'meese) |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
14
diff
changeset
|
26 |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
14
diff
changeset
|
27 ;;; meese.el ends here |