home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / lemacs-19.6 / lisp / prim / novice.el < prev    next >
Encoding:
Text File  |  1993-01-15  |  4.0 KB  |  108 lines

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