summaryrefslogtreecommitdiff
path: root/lisp/novice.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-03-28 22:35:42 +0000
committerRichard M. Stallman <rms@gnu.org>1993-03-28 22:35:42 +0000
commitc708156ece6cf8058902597e2d04706b2719ae43 (patch)
tree55c529d20527339a08f5be77668b0274367ab883 /lisp/novice.el
parent3f2e5b1e3eb93b4c0648e10d890a1a2e7db10644 (diff)
downloademacs-c708156ece6cf8058902597e2d04706b2719ae43.tar.gz
Undo previous change.
Diffstat (limited to 'lisp/novice.el')
-rw-r--r--lisp/novice.el9
1 files changed, 0 insertions, 9 deletions
diff --git a/lisp/novice.el b/lisp/novice.el
index 28ba34d206f..2ddbbac3250 100644
--- a/lisp/novice.el
+++ b/lisp/novice.el
@@ -120,13 +120,4 @@ to future sessions."
(insert "(put '" (symbol-name command) " 'disabled t)\n")
(save-buffer)))
-;;;###autoload
-(defun enable-and-notify (&rest args)
- "A novice hook for non-novices."
- (put this-command 'disabled nil)
- (message "You typed %s. %s was disabled. It's enabled now."
- (key-description (this-command-keys)) this-command)
- (sit-for 0)
- (call-interactively this-command))
-
;;; novice.el ends here