summaryrefslogtreecommitdiff
path: root/lisp/novice.el
diff options
context:
space:
mode:
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