# HG changeset patch # User Richard M. Stallman # Date 841283683 0 # Node ID daebc0d7f610bc65cf6dff8cdc40c79e386f7bbe # Parent 0e6def53a74fe64f3600dc618d12e4cf4de7c4e8 (save-match-data): Fix previous change. diff -r 0e6def53a74f -r daebc0d7f610 lisp/subr.el --- a/lisp/subr.el Thu Aug 29 01:37:38 1996 +0000 +++ b/lisp/subr.el Thu Aug 29 01:54:43 1996 +0000 @@ -748,10 +748,10 @@ ;; now, but it generates slower code. (defmacro save-match-data (&rest body) "Execute the BODY forms, restoring the global value of the match data." - `(let ((save-match-data-variable '(match-data))) + `(let ((save-match-data-internal '(match-data))) (unwind-protect (progn ,@body) - (store-match-data save-match-data-variable))))) + (store-match-data save-match-data-internal)))) (defun match-string (num &optional string) "Return string of text matched by last search.