summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/debug.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-03-14 04:49:03 +0000
committerRichard M. Stallman <rms@gnu.org>1998-03-14 04:49:03 +0000
commite3f9b33bec38f2cb6b16c02b93431a91afd5f1e8 (patch)
tree21bcc0758b88affea6831dfb0788f769d5b98dc9 /lisp/emacs-lisp/debug.el
parent4aa7214a93c5f40cb2ddb0f61ba5f7e54acbbe76 (diff)
downloademacs-e3f9b33bec38f2cb6b16c02b93431a91afd5f1e8.tar.gz
(debug, debugger-env-macro): store-match-data => set-match-data.
Diffstat (limited to 'lisp/emacs-lisp/debug.el')
-rw-r--r--lisp/emacs-lisp/debug.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el
index 923595f99ce..ca23b3adc40 100644
--- a/lisp/emacs-lisp/debug.el
+++ b/lisp/emacs-lisp/debug.el
@@ -190,7 +190,7 @@ first will be printed into the backtrace buffer."
(erase-buffer)
(fundamental-mode))
(kill-buffer debugger-buffer))
- (store-match-data debugger-outer-match-data)))
+ (set-match-data debugger-outer-match-data)))
;; Put into effect the modified values of these variables
;; in case the user set them with the `e' command.
(setq load-read-function debugger-outer-load-read-function)
@@ -347,7 +347,7 @@ Applies to the frame whose line point is on in the backtrace."
(overriding-terminal-local-map
debugger-outer-overriding-terminal-local-map)
(load-read-function debugger-outer-load-read-function))
- (store-match-data debugger-outer-match-data)
+ (set-match-data debugger-outer-match-data)
(prog1 (progn (,@ body))
(setq debugger-outer-match-data (match-data))
(setq debugger-outer-load-read-function load-read-function)