diff options
author | Dave Love <fx@gnu.org> | 1999-10-16 21:30:20 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-10-16 21:30:20 +0000 |
commit | faa5fa58af50b4a3818c83f731657f2712e4ddb5 (patch) | |
tree | 0f5f95b9a9f41cf4548933164ec2510b79fa0c30 /lisp/emacs-lisp | |
parent | 3f6f75085a43a5ba3d5aaec976fc1a0d644ff8ce (diff) | |
download | emacs-faa5fa58af50b4a3818c83f731657f2712e4ddb5.tar.gz emacs-faa5fa58af50b4a3818c83f731657f2712e4ddb5.tar.bz2 emacs-faa5fa58af50b4a3818c83f731657f2712e4ddb5.zip |
(edebug-install-read-eval-functions)
(edebug-uninstall-read-eval-functions): Use load-read-function,
avoiding elisp-eval.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 4ec31b91853..97b85a2564c 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -504,9 +504,6 @@ Return the result of the last expression in BODY." ;; read is redefined to maybe instrument forms. ;; eval-defun is redefined to check edebug-all-forms and edebug-all-defs. -;; Use the Lisp version of eval-region. -(require 'eval-reg "eval-reg") - ;; Save the original read function (or (fboundp 'edebug-original-read) (defalias 'edebug-original-read (symbol-function 'read))) @@ -615,15 +612,13 @@ or if an error occurs, leave point after it with mark at the original point." (defun edebug-install-read-eval-functions () (interactive) ;; Don't install if already installed. - (if (eq (symbol-function 'read) 'edebug-read) nil - (elisp-eval-region-install) - (defalias 'read 'edebug-read) + (unless load-read-function + (setq load-read-function 'edebug-read) (defalias 'eval-defun 'edebug-eval-defun))) (defun edebug-uninstall-read-eval-functions () (interactive) - (elisp-eval-region-uninstall) - (defalias 'read (symbol-function 'edebug-original-read)) + (setq load-read-function nil) (defalias 'eval-defun (symbol-function 'edebug-original-eval-defun))) |