emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/novice.el


From: Luc Teirlinck
Subject: [Emacs-diffs] Changes to emacs/lisp/novice.el
Date: Sat, 31 Jul 2004 11:47:15 -0400

Index: emacs/lisp/novice.el
diff -c emacs/lisp/novice.el:1.32 emacs/lisp/novice.el:1.33
*** emacs/lisp/novice.el:1.32   Mon Sep  1 15:45:13 2003
--- emacs/lisp/novice.el        Sat Jul 31 15:43:26 2004
***************
*** 104,110 ****
  ;;;###autoload
  (defun enable-command (command)
    "Allow COMMAND to be executed without special confirmation from now on.
! The user's .emacs file is altered so that this will apply
  to future sessions."
    (interactive "CEnable command: ")
    (put command 'disabled nil)
--- 104,111 ----
  ;;;###autoload
  (defun enable-command (command)
    "Allow COMMAND to be executed without special confirmation from now on.
! COMMAND must be a symbol.
! This command alters the user's .emacs file so that this will apply
  to future sessions."
    (interactive "CEnable command: ")
    (put command 'disabled nil)
***************
*** 141,147 ****
  ;;;###autoload
  (defun disable-command (command)
    "Require special confirmation to execute COMMAND from now on.
! The user's .emacs file is altered so that this will apply
  to future sessions."
    (interactive "CDisable command: ")
    (if (not (commandp command))
--- 142,149 ----
  ;;;###autoload
  (defun disable-command (command)
    "Require special confirmation to execute COMMAND from now on.
! COMMAND must be a symbol.
! This command alters the user's .emacs file so that this will apply
  to future sessions."
    (interactive "CDisable command: ")
    (if (not (commandp command))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]