diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:49:56 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:49:56 +0000 |
commit | ccb61a97b2642a32f6143d5ec69f2c226ddbdc71 (patch) | |
tree | f213dfd9c071d016e8c4b1eb1a30d563244a9dec /lisp/emacs-lisp | |
parent | 17b3e87b83ebea62270485f7481fc8c0c231f83f (diff) | |
download | emacs-ccb61a97b2642a32f6143d5ec69f2c226ddbdc71.tar.gz emacs-ccb61a97b2642a32f6143d5ec69f2c226ddbdc71.tar.bz2 emacs-ccb61a97b2642a32f6143d5ec69f2c226ddbdc71.zip |
(edebug-recursive-edit)
(edebug-outside-excursion): store-match-data => set-match-data.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 6a0cca00b7f..ba16218def9 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -2877,7 +2877,7 @@ MSG is printed after `::::} '." ;; Remember selected-window after recursive-edit. ;; (setq edebug-inside-window (selected-window)) - (store-match-data edebug-outside-match-data) + (set-match-data edebug-outside-match-data) ;; Recursive edit may have changed buffers, ;; so set it back before exiting let. @@ -3536,7 +3536,7 @@ Return the result of the last expression." (set-buffer edebug-buffer) ; why? ;; (use-local-map edebug-outside-map) - (store-match-data edebug-outside-match-data) + (set-match-data edebug-outside-match-data) ;; Restore outside context. (let (;; (edebug-inside-map (current-local-map)) ;; restore map?? (last-command-char edebug-outside-last-command-char) |