From: Richard M. Stallman Date: Sat, 14 Mar 1998 04:49:03 +0000 (+0000) Subject: (debug, debugger-env-macro): store-match-data => set-match-data. X-Git-Tag: emacs-20.3~1913 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=17b3e87b83ebea62270485f7481fc8c0c231f83f;p=emacs.git (debug, debugger-env-macro): store-match-data => set-match-data. --- 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)