annotate lisp/play/meese.el @ 4867:3349947f33e6

(forms--set-minor-mode): Rewrite so that describe-mode can parse the value of minor-mode-alist correctly. The string " View" is now dependent on the value of forms-read-only. Documentation: `forms-forms-scroll' and `forms-forms-jump' now default to nil. `forms-new-record-filter' and `forms-modified-record-filter' cannot be redefined as functions. Commands and keymaps are changed. Add function key defs. (forms-version): Docstring includes full RCS id. (forms-forms-scroll): Defaults to nil. (forms-forms-jump): Defaults to nil. (forms-mode-edit-map, forms-mode-ro-map): Additional keymaps for edit mode and read-only mode. (forms--new-record-filter, forms--modified-record-filter): Deleted. (forms-mode): Docstring now includes the key bindings, since both edit mode and read-only mode must be supported. Changed `forms-new-record-filter' and `forms-modified-record-filter' semantics: the variable must point to a function and may not be defined as a function anymore. Use three keymaps: `forms-mode-map' (C-c commands), `forms-mode-edit-map' (normal mode) and `forms-mode-ro-map' (read-only mode). The maps are not buffer local. Corrected error message text. Moved setting up write-file-hooks and revert-buffer-function to function `forms--change-commands'. (forms--process-format-list): Changed error messages to be more descriptive. (forms--set-keymaps): Setup the three keymaps. (forms--mode-commands): Use new command key bindings. (forms--mode-commands1): New helper function for `forms--mode-commands'. (forms--change-commands): Handle setup of local-write-file-hooks and revert-buffer-function. (forms--help): Show new command bindings. (forms--show-record): Replaced `forms--modified-record-filter' by `forms-modified-record-filter'. (forms-jump-record): Changed error message. (forms-toggle-read-only): New function. (forms-view-mode, forms-edit-mode): Deleted. (forms-insert-record): Replaced `forms--new-record-filter' by `forms-new-record-filter'. (forms-insert-record, forms-delete-record): Disallow in read-only mode. (forms-prev-field): New function.
author Richard M. Stallman <rms@gnu.org>
date Thu, 21 Oct 1993 00:43:51 +0000
parents fb0ed5a1d0f3
children 9127591ba072
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
7e4999005da1 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
3 ;; This is in the public domain on account of being distributed since
7e4999005da1 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents: 846
diff changeset
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
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
11 (defun protect-innocence-hook ()
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
12 (if (and (equal (file-name-nondirectory buffer-file-name) "sex.6")
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
13 (not (y-or-n-p "Are you over 18? ")))
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
14 (progn
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
15 (clear-visited-file-modtime)
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
16 (setq buffer-file-name (concat (file-name-directory buffer-file-name)
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
17 "celibacy.1"))
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
18 (let (buffer-read-only) ; otherwise (erase-buffer) may bomb.
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
19 (erase-buffer)
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
20 (insert-file-contents buffer-file-name t))
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
21 (rename-buffer (file-name-nondirectory buffer-file-name)))))
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
22
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
23 (or (memq 'protect-innocence-hook find-file-hooks)
d2f6c32ff984 Initial revision
Jim Blandy <jimb@redhat.com>
parents:
diff changeset
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