Mercurial > emacs
annotate lisp/play/meese.el @ 5020:94de08fd8a7c
(Fnext_single_property_change): Fix missing \n\.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Mon, 15 Nov 1993 06:41:45 +0000 |
| parents | fb0ed5a1d0f3 |
| children | 9127591ba072 |
| 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 () |
| 12 (if (and (equal (file-name-nondirectory buffer-file-name) "sex.6") | |
| 13 (not (y-or-n-p "Are you over 18? "))) | |
| 14 (progn | |
| 15 (clear-visited-file-modtime) | |
| 16 (setq buffer-file-name (concat (file-name-directory buffer-file-name) | |
| 17 "celibacy.1")) | |
| 18 (let (buffer-read-only) ; otherwise (erase-buffer) may bomb. | |
| 19 (erase-buffer) | |
| 20 (insert-file-contents buffer-file-name t)) | |
| 21 (rename-buffer (file-name-nondirectory buffer-file-name))))) | |
| 22 | |
| 23 (or (memq 'protect-innocence-hook find-file-hooks) | |
| 24 (setq find-file-hooks (cons 'protect-innocence-hook find-file-hooks))) | |
|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
14
diff
changeset
|
25 |
|
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
14
diff
changeset
|
26 ;;; meese.el ends here |
