]> code.delx.au - gnu-emacs/blob - lisp/play/meese.el
*** empty log message ***
[gnu-emacs] / lisp / play / meese.el
1 ;; meese.el --- protect the impressionable young minds of America
2
3 ;; Maintainer: FSF
4 ;; Keywords: games
5
6 (defun protect-innocence-hook ()
7 (if (and (equal (file-name-nondirectory buffer-file-name) "sex.6")
8 (not (y-or-n-p "Are you over 18? ")))
9 (progn
10 (clear-visited-file-modtime)
11 (setq buffer-file-name (concat (file-name-directory buffer-file-name)
12 "celibacy.1"))
13 (let (buffer-read-only) ; otherwise (erase-buffer) may bomb.
14 (erase-buffer)
15 (insert-file-contents buffer-file-name t))
16 (rename-buffer (file-name-nondirectory buffer-file-name)))))
17
18 (or (memq 'protect-innocence-hook find-file-hooks)
19 (setq find-file-hooks (cons 'protect-innocence-hook find-file-hooks)))
20
21 ;;; meese.el ends here