Mercurial > emacs
annotate lisp/novice.el @ 65469:ba050fdb5000
*** empty log message ***
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 12 Sep 2005 15:33:35 +0000 |
parents | 41bb365f41c4 |
children | 3bd95f4f2941 2d92f5c9d6ae |
rev | line source |
---|---|
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
37899
diff
changeset
|
1 ;;; novice.el --- handling of disabled commands ("novice mode") for Emacs |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
282
diff
changeset
|
2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64513
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1994, 2002, 2003, 2004, |
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64513
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
845 | 5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
6 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: internal, help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
8 |
36 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
36 | 25 |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
26 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
27 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
28 ;; This mode provides a hook which is, by default, attached to various |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
29 ;; putatively dangerous commands in a (probably futile) attempt to |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
30 ;; prevent lusers from shooting themselves in the feet. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2232
diff
changeset
|
31 |
2232
4f9d60f7de9d
Add standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
32 ;;; Code: |
36 | 33 |
34 ;; This function is called (by autoloading) | |
35 ;; to handle any disabled command. | |
36 ;; The command is found in this-command | |
37 ;; and the keys are returned by (this-command-keys). | |
38 | |
256 | 39 ;;;###autoload |
56623
c8c558c4f4a7
(disabled-command-function): New variable renamed from
Luc Teirlinck <teirllm@auburn.edu>
parents:
56569
diff
changeset
|
40 (defvar disabled-command-function 'disabled-command-function |
16649
8a01398a26e6
(disabled-command-hook): Use `defvar' and add documentation string.
Erik Naggum <erik@naggum.no>
parents:
14169
diff
changeset
|
41 "Function to call to handle disabled commands. |
8a01398a26e6
(disabled-command-hook): Use `defvar' and add documentation string.
Erik Naggum <erik@naggum.no>
parents:
14169
diff
changeset
|
42 If nil, the feature is disabled, i.e., all commands work normally.") |
268 | 43 |
60100
3fbab2787d99
(disabled-command-hook): Autoload the defalias
Richard M. Stallman <rms@gnu.org>
parents:
59996
diff
changeset
|
44 ;;;###autoload |
64513
d96725e9e9a8
(disabled-command-hook): Declare it with `define-obsolete-variable-alias'.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
45 (define-obsolete-variable-alias 'disabled-command-hook 'disabled-command-function "22.1") |
56623
c8c558c4f4a7
(disabled-command-function): New variable renamed from
Luc Teirlinck <teirllm@auburn.edu>
parents:
56569
diff
changeset
|
46 |
282 | 47 ;;;###autoload |
56623
c8c558c4f4a7
(disabled-command-function): New variable renamed from
Luc Teirlinck <teirllm@auburn.edu>
parents:
56569
diff
changeset
|
48 (defun disabled-command-function (&rest ignore) |
36 | 49 (let (char) |
50 (save-window-excursion | |
60460
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
51 (with-output-to-temp-buffer "*Disabled Command*" |
10695
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
52 (let ((keys (this-command-keys))) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
53 (if (or (eq (aref keys 0) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
54 (if (stringp keys) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
55 (aref "\M-x" 0) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
56 ?\M-x)) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
57 (and (>= (length keys) 2) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
58 (eq (aref keys 0) meta-prefix-char) |
1a97dea087d1
(disabled-command-hook): Recognize ESC x as well as M-x.
Karl Heuer <kwzh@gnu.org>
parents:
10216
diff
changeset
|
59 (eq (aref keys 1) ?x))) |
43077
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
60 (princ (format "You have invoked the disabled command %s.\n" |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
61 (symbol-name this-command))) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
62 (princ (format "You have typed %s, invoking disabled command %s.\n" |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
63 (key-description keys) (symbol-name this-command))))) |
36 | 64 ;; Print any special message saying why the command is disabled. |
65 (if (stringp (get this-command 'disabled)) | |
43077
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
66 (princ (get this-command 'disabled)) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
67 (princ "It is disabled because new users often find it confusing.\n") |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
68 (princ "Here's the first part of its description:\n\n") |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
69 ;; Keep only the first paragraph of the documentation. |
60460
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
70 (with-current-buffer "*Disabled Command*" |
43077
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
71 (goto-char (point-max)) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
72 (let ((start (point))) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
73 (save-excursion |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
74 (princ (or (condition-case () |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
75 (documentation this-command) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
76 (error nil)) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
77 "<< not documented >>"))) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
78 (if (search-forward "\n\n" nil t) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
79 (delete-region (match-beginning 0) (point-max))) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
80 (goto-char (point-max)) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
81 (indent-rigidly start (point) 3)))) |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
82 (princ "\n\nDo you want to use this command anyway?\n\n") |
36 | 83 (princ "You can now type |
44052
28bd7ea81b05
(disabled-command-hook): Clarify output text to match prompt.
Pavel Janík <Pavel@Janik.cz>
parents:
43077
diff
changeset
|
84 y to try it and enable it (no questions if you use it again). |
28bd7ea81b05
(disabled-command-hook): Clarify output text to match prompt.
Pavel Janík <Pavel@Janik.cz>
parents:
43077
diff
changeset
|
85 n to cancel--don't try the command, and it remains disabled. |
43077
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
86 SPC to try the command just this once, but leave it disabled. |
1983a485a15f
(disabled-command-hook): Clarify output text.
Richard M. Stallman <rms@gnu.org>
parents:
43059
diff
changeset
|
87 ! to try it, and enable all disabled commands for this session only.") |
9849
430b8cf09515
(disabled-command-hook): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
88 (save-excursion |
430b8cf09515
(disabled-command-hook): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
89 (set-buffer standard-output) |
430b8cf09515
(disabled-command-hook): Set help-mode in *Help* buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7300
diff
changeset
|
90 (help-mode))) |
44052
28bd7ea81b05
(disabled-command-hook): Clarify output text to match prompt.
Pavel Janík <Pavel@Janik.cz>
parents:
43077
diff
changeset
|
91 (message "Type y, n, ! or SPC (the space bar): ") |
36 | 92 (let ((cursor-in-echo-area t)) |
60460
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
93 (while (progn (setq char (read-event)) |
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
94 (or (not (numberp char)) |
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
95 (not (memq (downcase char) |
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
96 '(?! ?y ?n ?\ ?\C-g))))) |
36 | 97 (ding) |
44052
28bd7ea81b05
(disabled-command-hook): Clarify output text to match prompt.
Pavel Janík <Pavel@Janik.cz>
parents:
43077
diff
changeset
|
98 (message "Please type y, n, ! or SPC (the space bar): ")))) |
60460
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
99 (setq char (downcase char)) |
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
100 (if (= char ?\C-g) |
7da5648c2f7d
(disabled-command-function): Output in *Disabled Command*.
Richard M. Stallman <rms@gnu.org>
parents:
60100
diff
changeset
|
101 (setq quit-flag t)) |
16649
8a01398a26e6
(disabled-command-hook): Use `defvar' and add documentation string.
Erik Naggum <erik@naggum.no>
parents:
14169
diff
changeset
|
102 (if (= char ?!) |
56623
c8c558c4f4a7
(disabled-command-function): New variable renamed from
Luc Teirlinck <teirllm@auburn.edu>
parents:
56569
diff
changeset
|
103 (setq disabled-command-function nil)) |
36 | 104 (if (= char ?y) |
7173
b6a358a4bdfb
(disabled-command-hook): Try to enable command in user
Richard M. Stallman <rms@gnu.org>
parents:
5927
diff
changeset
|
105 (if (and user-init-file |
b6a358a4bdfb
(disabled-command-hook): Try to enable command in user
Richard M. Stallman <rms@gnu.org>
parents:
5927
diff
changeset
|
106 (not (string= "" user-init-file)) |
b6a358a4bdfb
(disabled-command-hook): Try to enable command in user
Richard M. Stallman <rms@gnu.org>
parents:
5927
diff
changeset
|
107 (y-or-n-p "Enable command for future editing sessions also? ")) |
36 | 108 (enable-command this-command) |
109 (put this-command 'disabled nil))) | |
110 (if (/= char ?n) | |
111 (call-interactively this-command)))) | |
112 | |
256 | 113 ;;;###autoload |
36 | 114 (defun enable-command (command) |
115 "Allow COMMAND to be executed without special confirmation from now on. | |
56569
a6cb62c42cec
(enable-command, disable-command): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
116 COMMAND must be a symbol. |
a6cb62c42cec
(enable-command, disable-command): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
117 This command alters the user's .emacs file so that this will apply |
36 | 118 to future sessions." |
119 (interactive "CEnable command: ") | |
120 (put command 'disabled nil) | |
43059
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
121 (let ((init-file user-init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
122 (default-init-file |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
123 (if (eq system-type 'ms-dos) "~/_emacs" "~/.emacs"))) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
124 (when (null init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
125 (if (or (file-exists-p default-init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
126 (and (eq system-type 'windows-nt) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
127 (file-exists-p "~/_emacs"))) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
128 ;; Started with -q, i.e. the file containing |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
129 ;; enabled/disabled commands hasn't been read. Saving |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
130 ;; settings there would overwrite other settings. |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
131 (error "Saving settings from \"emacs -q\" would overwrite existing customizations")) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
132 (setq init-file default-init-file) |
37899
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
133 (if (and (not (file-exists-p init-file)) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
134 (eq system-type 'windows-nt) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
135 (file-exists-p "~/_emacs")) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
136 (setq init-file "~/_emacs"))) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
137 (save-excursion |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
138 (set-buffer (find-file-noselect |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
139 (substitute-in-file-name init-file))) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
140 (goto-char (point-min)) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
141 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
142 (delete-region |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
143 (progn (beginning-of-line) (point)) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
144 (progn (forward-line 1) (point)))) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
145 ;; Explicitly enable, in case this command is disabled by default |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
146 ;; or in case the code we deleted was actually a comment. |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
147 (goto-char (point-max)) |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
148 (insert "\n(put '" (symbol-name command) " 'disabled nil)\n") |
3c9f67eea2f9
(enable-command): If user-init-file is nil or does not
Eli Zaretskii <eliz@gnu.org>
parents:
18383
diff
changeset
|
149 (save-buffer)))) |
36 | 150 |
256 | 151 ;;;###autoload |
36 | 152 (defun disable-command (command) |
153 "Require special confirmation to execute COMMAND from now on. | |
56569
a6cb62c42cec
(enable-command, disable-command): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
154 COMMAND must be a symbol. |
a6cb62c42cec
(enable-command, disable-command): Doc fixes.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
155 This command alters the user's .emacs file so that this will apply |
36 | 156 to future sessions." |
157 (interactive "CDisable command: ") | |
5742
84cdd74ddbb0
(disable-command): Reject invalid commands.
Richard M. Stallman <rms@gnu.org>
parents:
5451
diff
changeset
|
158 (if (not (commandp command)) |
84cdd74ddbb0
(disable-command): Reject invalid commands.
Richard M. Stallman <rms@gnu.org>
parents:
5451
diff
changeset
|
159 (error "Invalid command name `%s'" command)) |
36 | 160 (put command 'disabled t) |
43059
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
161 (let ((init-file user-init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
162 (default-init-file |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
163 (if (eq system-type 'ms-dos) "~/_emacs" "~/.emacs"))) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
164 (when (null init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
165 (if (or (file-exists-p default-init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
166 (and (eq system-type 'windows-nt) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
167 (file-exists-p "~/_emacs"))) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
168 ;; Started with -q, i.e. the file containing |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
169 ;; enabled/disabled commands hasn't been read. Saving |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
170 ;; settings there would overwrite other settings. |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
171 (error "Saving settings from \"emacs -q\" would overwrite existing customizations")) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
172 (setq init-file default-init-file) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
173 (if (and (not (file-exists-p init-file)) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
174 (eq system-type 'windows-nt) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
175 (file-exists-p "~/_emacs")) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
176 (setq init-file "~/_emacs"))) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
177 (save-excursion |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
178 (set-buffer (find-file-noselect |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
179 (substitute-in-file-name init-file))) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
180 (goto-char (point-min)) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
181 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t) |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
182 (delete-region |
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
183 (progn (beginning-of-line) (point)) |
61885
305cf10830d5
(disable-command): Don't add spurious newlines to the init file.
Lute Kamstra <lute@gnu.org>
parents:
60460
diff
changeset
|
184 (progn (forward-line 1) (point))) |
305cf10830d5
(disable-command): Don't add spurious newlines to the init file.
Lute Kamstra <lute@gnu.org>
parents:
60460
diff
changeset
|
185 (goto-char (point-max)) |
305cf10830d5
(disable-command): Don't add spurious newlines to the init file.
Lute Kamstra <lute@gnu.org>
parents:
60460
diff
changeset
|
186 (insert ?\n)) |
305cf10830d5
(disable-command): Don't add spurious newlines to the init file.
Lute Kamstra <lute@gnu.org>
parents:
60460
diff
changeset
|
187 (insert "(put '" (symbol-name command) " 'disabled t)\n") |
43059
0a91a443d091
(enable-command): If Emacs was invoked as "emacs -q",
Eli Zaretskii <eliz@gnu.org>
parents:
38412
diff
changeset
|
188 (save-buffer)))) |
36 | 189 |
18383 | 190 (provide 'novice) |
191 | |
57096
1ab0f10dbd94
(disabled-command-hook): Use shorthand for obsolescence.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56623
diff
changeset
|
192 ;; arch-tag: f83c0f96-497e-4db6-a430-8703716c6dd9 |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
282
diff
changeset
|
193 ;;; novice.el ends here |