1 ;; Handling of disabled commands ("novice mode") for Emacs.
2 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
4 ;; This file is part of GNU Emacs.
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)
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.
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.
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).
27 (setq disabled-command-hook
'disabled-command-hook
)
30 (defun disabled-command-hook (&rest ignore
)
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 "))
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
)
47 "<< not documented >>"))
48 ;; Keep only the first paragraph of the documentation.
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))))
56 (princ "You can now type
57 Space to try the command just this once,
58 but leave it disabled,
59 Y to try it and enable it (no questions if you use it again),
60 N 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)))
66 (message "Please type y, n or Space: "))))
68 (if (y-or-n-p "Enable command for future editing sessions also? ")
69 (enable-command this-command
)
70 (put this-command
'disabled nil
)))
72 (call-interactively this-command
))))
75 (defun enable-command (command)
76 "Allow COMMAND to be executed without special confirmation from now on.
77 The user's .emacs file is altered so that this will apply
79 (interactive "CEnable command: ")
80 (put command
'disabled nil
)
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
)
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))
95 (defun disable-command (command)
96 "Require special confirmation to execute COMMAND from now on.
97 The user's .emacs file is altered so that this will apply
99 (interactive "CDisable command: ")
100 (put command
'disabled t
)
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
)
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")