Initial revision
[bpt/emacs.git] / lisp / novice.el
CommitLineData
a2535589
JA
1;; Handling of disabled commands ("novice mode") for Emacs.
2;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3
4;; This file is part of GNU Emacs.
5
6;; GNU Emacs is free software; you can redistribute it and/or modify
7;; it under the terms of the GNU General Public License as published by
8;; the Free Software Foundation; either version 1, or (at your option)
9;; any later version.
10
11;; GNU Emacs is distributed in the hope that it will be useful,
12;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;; GNU General Public License for more details.
15
16;; You should have received a copy of the GNU General Public License
17;; along with GNU Emacs; see the file COPYING. If not, write to
18;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20
21;; This function is called (by autoloading)
22;; to handle any disabled command.
23;; The command is found in this-command
24;; and the keys are returned by (this-command-keys).
25
7229064d
RM
26;;;###autoload (setq disabled-command-hook 'disabled-command-hook)
27;;;###autoload
a2535589
JA
28(defun disabled-command-hook (&rest ignore)
29 (let (char)
30 (save-window-excursion
31 (with-output-to-temp-buffer "*Help*"
32 (if (= (aref (this-command-keys) 0) ?\M-x)
33 (princ "You have invoked the disabled command ")
34 (princ "You have typed ")
35 (princ (key-description (this-command-keys)))
36 (princ ", invoking disabled command "))
37 (princ this-command)
38 (princ ":\n")
39 ;; Print any special message saying why the command is disabled.
40 (if (stringp (get this-command 'disabled))
41 (princ (get this-command 'disabled)))
42 (princ (or (condition-case ()
43 (documentation this-command)
44 (error nil))
45 "<< not documented >>"))
46 ;; Keep only the first paragraph of the documentation.
47 (save-excursion
48 (set-buffer "*Help*")
49 (goto-char (point-min))
50 (if (search-forward "\n\n" nil t)
51 (delete-region (1- (point)) (point-max))
52 (goto-char (point-max))))
53 (princ "\n\n")
54 (princ "You can now type
55Space to try the command just this once,
56 but leave it disabled,
57Y to try it and enable it (no questions if you use it again),
58N to do nothing (command remains disabled)."))
59 (message "Type y, n or Space: ")
60 (let ((cursor-in-echo-area t))
61 (while (not (memq (setq char (downcase (read-char)))
62 '(? ?y ?n)))
63 (ding)
64 (message "Please type y, n or Space: "))))
65 (if (= char ?y)
66 (if (y-or-n-p "Enable command for future editing sessions also? ")
67 (enable-command this-command)
68 (put this-command 'disabled nil)))
69 (if (/= char ?n)
70 (call-interactively this-command))))
71
7229064d 72;;;###autoload
a2535589
JA
73(defun enable-command (command)
74 "Allow COMMAND to be executed without special confirmation from now on.
75The user's .emacs file is altered so that this will apply
76to future sessions."
77 (interactive "CEnable command: ")
78 (put command 'disabled nil)
79 (save-excursion
80 (set-buffer (find-file-noselect (substitute-in-file-name "~/.emacs")))
81 (goto-char (point-min))
82 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t)
83 (delete-region
84 (progn (beginning-of-line) (point))
85 (progn (forward-line 1) (point)))
86 ;; Must have been disabled by default.
87 (goto-char (point-max))
88 (insert "\n(put '" (symbol-name command) " 'disabled nil)\n"))
89 (setq foo (buffer-modified-p))
90 (save-buffer)))
91
7229064d 92;;;###autoload
a2535589
JA
93(defun disable-command (command)
94 "Require special confirmation to execute COMMAND from now on.
95The user's .emacs file is altered so that this will apply
96to future sessions."
97 (interactive "CDisable command: ")
98 (put command 'disabled t)
99 (save-excursion
100 (set-buffer (find-file-noselect (substitute-in-file-name "~/.emacs")))
101 (goto-char (point-min))
102 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t)
103 (delete-region
104 (progn (beginning-of-line) (point))
105 (progn (forward-line 1) (point))))
106 (goto-char (point-max))
107 (insert "(put '" (symbol-name command) " 'disabled t)\n")
108 (save-buffer)))
109