*** empty log message ***
[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 26;;;###autoload
73fa8346
BP
27(setq disabled-command-hook 'disabled-command-hook)
28
1c599895 29;;;###autoload
a2535589
JA
30(defun disabled-command-hook (&rest ignore)
31 (let (char)
32 (save-window-excursion
33 (with-output-to-temp-buffer "*Help*"
34 (if (= (aref (this-command-keys) 0) ?\M-x)
35 (princ "You have invoked the disabled command ")
36 (princ "You have typed ")
37 (princ (key-description (this-command-keys)))
38 (princ ", invoking disabled command "))
39 (princ this-command)
40 (princ ":\n")
41 ;; Print any special message saying why the command is disabled.
42 (if (stringp (get this-command 'disabled))
43 (princ (get this-command 'disabled)))
44 (princ (or (condition-case ()
45 (documentation this-command)
46 (error nil))
47 "<< not documented >>"))
48 ;; Keep only the first paragraph of the documentation.
49 (save-excursion
50 (set-buffer "*Help*")
51 (goto-char (point-min))
52 (if (search-forward "\n\n" nil t)
53 (delete-region (1- (point)) (point-max))
54 (goto-char (point-max))))
55 (princ "\n\n")
56 (princ "You can now type
57Space to try the command just this once,
58 but leave it disabled,
59Y to try it and enable it (no questions if you use it again),
60N to do nothing (command remains disabled)."))
61 (message "Type y, n or Space: ")
62 (let ((cursor-in-echo-area t))
63 (while (not (memq (setq char (downcase (read-char)))
64 '(? ?y ?n)))
65 (ding)
66 (message "Please type y, n or Space: "))))
67 (if (= char ?y)
68 (if (y-or-n-p "Enable command for future editing sessions also? ")
69 (enable-command this-command)
70 (put this-command 'disabled nil)))
71 (if (/= char ?n)
72 (call-interactively this-command))))
73
7229064d 74;;;###autoload
a2535589
JA
75(defun enable-command (command)
76 "Allow COMMAND to be executed without special confirmation from now on.
77The user's .emacs file is altered so that this will apply
78to future sessions."
79 (interactive "CEnable command: ")
80 (put command 'disabled nil)
81 (save-excursion
82 (set-buffer (find-file-noselect (substitute-in-file-name "~/.emacs")))
83 (goto-char (point-min))
84 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t)
85 (delete-region
86 (progn (beginning-of-line) (point))
87 (progn (forward-line 1) (point)))
88 ;; Must have been disabled by default.
89 (goto-char (point-max))
90 (insert "\n(put '" (symbol-name command) " 'disabled nil)\n"))
91 (setq foo (buffer-modified-p))
92 (save-buffer)))
93
7229064d 94;;;###autoload
a2535589
JA
95(defun disable-command (command)
96 "Require special confirmation to execute COMMAND from now on.
97The user's .emacs file is altered so that this will apply
98to future sessions."
99 (interactive "CDisable command: ")
100 (put command 'disabled t)
101 (save-excursion
102 (set-buffer (find-file-noselect (substitute-in-file-name "~/.emacs")))
103 (goto-char (point-min))
104 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t)
105 (delete-region
106 (progn (beginning-of-line) (point))
107 (progn (forward-line 1) (point))))
108 (goto-char (point-max))
109 (insert "(put '" (symbol-name command) " 'disabled t)\n")
110 (save-buffer)))
111