summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2020-01-16 21:15:02 -0800
committerGlenn Morris <rgm@gnu.org>2020-01-16 21:15:02 -0800
commitee0e3a792b386bbecec7b20249e04d6b70b96bb2 (patch)
treef189b9bb513fb69ea8da44c0768a11866c1d5733 /lisp
parenta36495da1ec1419998c17fd64fb7439eaf940f36 (diff)
downloademacs-ee0e3a792b386bbecec7b20249e04d6b70b96bb2.tar.gz
emacs-ee0e3a792b386bbecec7b20249e04d6b70b96bb2.tar.bz2
emacs-ee0e3a792b386bbecec7b20249e04d6b70b96bb2.zip
edebug: remove ancient code for ancient XEmacs support libs
* lisp/emacs-lisp/edebug.el (edebug--require-cl-read): Remove. (edebug-setup-hook, cl-read-load-hooks): Don't modify. (edebug-unload-function): Don't modify cl-read-load-hooks.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/edebug.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index b8d2fb5beb5..0aa6caa37e1 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -4518,17 +4518,6 @@ With prefix argument, make it a temporary breakpoint."
(edebug-modify-breakpoint t condition arg))
(easy-menu-define edebug-menu edebug-mode-map "Edebug menus" edebug-mode-menus)
-
-;;; Autoloading of Edebug accessories
-
-;; edebug-cl-read and cl-read are available from liberte@cs.uiuc.edu
-(defun edebug--require-cl-read ()
- (require 'edebug-cl-read))
-
-(if (featurep 'cl-read)
- (add-hook 'edebug-setup-hook #'edebug--require-cl-read)
- ;; The following causes edebug-cl-read to be loaded when you load cl-read.el.
- (add-hook 'cl-read-load-hooks #'edebug--require-cl-read))
;;; Finalize Loading
@@ -4564,7 +4553,6 @@ With prefix argument, make it a temporary breakpoint."
(run-with-idle-timer 0 nil #'(lambda () (unload-feature 'edebug)))))
(remove-hook 'called-interactively-p-functions
#'edebug--called-interactively-skip)
- (remove-hook 'cl-read-load-hooks #'edebug--require-cl-read)
(edebug-uninstall-read-eval-functions)
;; Continue standard unloading.
nil)