Mercurial > emacs
annotate lisp/novice.el @ 1631:9c52fcf232bf
Fri Nov 20 05:24:16 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* config.sub: Added machines and operating systems for Emacs
ports, since Emacs now uses config.sub for its configuration.
New manufacturers recognized not to be operating systems: High
Level Hardware (highlevel, defaults to using BSD), Gould
(gould, defaults to System V), Commodore (cbm, defaults to
amigados), National Semiconductor (ns, defaults to Genix), and
Masscomp (masscomp, defaults to RTU).
Recognize the NS1600 (ns16k) and the Clipper (clipper) as
processors.
Recognize these processors with default manufacturers: the
Cydra (cydra) from Cydrome (cydrome), the XPS100 (xps100) from
Honeywell (honeywell), and the Orion (orion) and Orion 1/05
(orion105) from High Level Hardware (highlevel).
If the ISC operating system is given with a version number,
don't kill it and set it to 2.2; just have it default to 2.2
if omitted.
Make Irix SGI's default operating system, not SYSV.
Make BSD Encore's default, so it applies for all Encore
machines, not just the umax and mmax abbreviations.
All of Encore's machines use BSD, not just the ns32k-based
ones. Make it the manufacturer's default.
Make it possible to specify an operating system for a Gould
machine. Make sysv the manufacturer's default, so it applies
when we specify the manufacturer as well as when we omit it.
Add Uniplus (uniplus), Iris (iris), Xenix (xenix), and RTU
(rtu) as recognized operating system names.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Fri, 20 Nov 1992 17:14:50 +0000 |
parents | 213978acbc1e |
children | 4f9d60f7de9d |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
282
diff
changeset
|
1 ;;; novice.el --- handling of disabled commands ("novice mode") for Emacs. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
282
diff
changeset
|
2 |
845 | 3 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: internal, help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
36 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; 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
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
36 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
24 ;; Code: |
36 | 25 |
26 ;; This function is called (by autoloading) | |
27 ;; to handle any disabled command. | |
28 ;; The command is found in this-command | |
29 ;; and the keys are returned by (this-command-keys). | |
30 | |
256 | 31 ;;;###autoload |
268 | 32 (setq disabled-command-hook 'disabled-command-hook) |
33 | |
282 | 34 ;;;###autoload |
36 | 35 (defun disabled-command-hook (&rest ignore) |
36 (let (char) | |
37 (save-window-excursion | |
38 (with-output-to-temp-buffer "*Help*" | |
39 (if (= (aref (this-command-keys) 0) ?\M-x) | |
40 (princ "You have invoked the disabled command ") | |
41 (princ "You have typed ") | |
42 (princ (key-description (this-command-keys))) | |
43 (princ ", invoking disabled command ")) | |
44 (princ this-command) | |
45 (princ ":\n") | |
46 ;; Print any special message saying why the command is disabled. | |
47 (if (stringp (get this-command 'disabled)) | |
48 (princ (get this-command 'disabled))) | |
49 (princ (or (condition-case () | |
50 (documentation this-command) | |
51 (error nil)) | |
52 "<< not documented >>")) | |
53 ;; Keep only the first paragraph of the documentation. | |
54 (save-excursion | |
55 (set-buffer "*Help*") | |
56 (goto-char (point-min)) | |
57 (if (search-forward "\n\n" nil t) | |
58 (delete-region (1- (point)) (point-max)) | |
59 (goto-char (point-max)))) | |
60 (princ "\n\n") | |
61 (princ "You can now type | |
62 Space to try the command just this once, | |
63 but leave it disabled, | |
64 Y to try it and enable it (no questions if you use it again), | |
65 N to do nothing (command remains disabled).")) | |
66 (message "Type y, n or Space: ") | |
67 (let ((cursor-in-echo-area t)) | |
68 (while (not (memq (setq char (downcase (read-char))) | |
69 '(? ?y ?n))) | |
70 (ding) | |
71 (message "Please type y, n or Space: ")))) | |
72 (if (= char ?y) | |
73 (if (y-or-n-p "Enable command for future editing sessions also? ") | |
74 (enable-command this-command) | |
75 (put this-command 'disabled nil))) | |
76 (if (/= char ?n) | |
77 (call-interactively this-command)))) | |
78 | |
256 | 79 ;;;###autoload |
36 | 80 (defun enable-command (command) |
81 "Allow COMMAND to be executed without special confirmation from now on. | |
82 The user's .emacs file is altered so that this will apply | |
83 to future sessions." | |
84 (interactive "CEnable command: ") | |
85 (put command 'disabled nil) | |
86 (save-excursion | |
87 (set-buffer (find-file-noselect (substitute-in-file-name "~/.emacs"))) | |
88 (goto-char (point-min)) | |
89 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t) | |
90 (delete-region | |
91 (progn (beginning-of-line) (point)) | |
92 (progn (forward-line 1) (point))) | |
93 ;; Must have been disabled by default. | |
94 (goto-char (point-max)) | |
95 (insert "\n(put '" (symbol-name command) " 'disabled nil)\n")) | |
96 (setq foo (buffer-modified-p)) | |
97 (save-buffer))) | |
98 | |
256 | 99 ;;;###autoload |
36 | 100 (defun disable-command (command) |
101 "Require special confirmation to execute COMMAND from now on. | |
102 The user's .emacs file is altered so that this will apply | |
103 to future sessions." | |
104 (interactive "CDisable command: ") | |
105 (put command 'disabled t) | |
106 (save-excursion | |
107 (set-buffer (find-file-noselect (substitute-in-file-name "~/.emacs"))) | |
108 (goto-char (point-min)) | |
109 (if (search-forward (concat "(put '" (symbol-name command) " ") nil t) | |
110 (delete-region | |
111 (progn (beginning-of-line) (point)) | |
112 (progn (forward-line 1) (point)))) | |
113 (goto-char (point-max)) | |
114 (insert "(put '" (symbol-name command) " 'disabled t)\n") | |
115 (save-buffer))) | |
116 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
282
diff
changeset
|
117 ;;; novice.el ends here |