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 [emacs-unicode-2]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/novice.el [emacs-unicode-2]
Date: Mon, 02 Aug 2004 20:25:22 -0400

Index: emacs/lisp/novice.el
diff -c emacs/lisp/novice.el:1.31.8.1 emacs/lisp/novice.el:1.31.8.2
*** emacs/lisp/novice.el:1.31.8.1       Fri Apr 16 12:50:08 2004
--- emacs/lisp/novice.el        Tue Aug  3 00:02:59 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]