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 [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/novice.el [lexbind]
Date: Sat, 04 Sep 2004 05:48:23 -0400

Index: emacs/lisp/novice.el
diff -c emacs/lisp/novice.el:1.31.2.1 emacs/lisp/novice.el:1.31.2.2
*** emacs/lisp/novice.el:1.31.2.1       Tue Oct 14 23:51:20 2003
--- emacs/lisp/novice.el        Sat Sep  4 09:19: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]