]> git.eshelyaron.com Git - emacs.git/commitdiff
(save-match-data): Fix previous change.
authorRichard M. Stallman <rms@gnu.org>
Thu, 29 Aug 1996 01:54:43 +0000 (01:54 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 29 Aug 1996 01:54:43 +0000 (01:54 +0000)
lisp/subr.el

index 31f9e05377f978902699d764d751394690d99395..b2ce0d73125ea1d8520cce1d230f418edac9b948 100644 (file)
@@ -748,10 +748,10 @@ Wildcards and redirection are handled as usual in the shell."
 ;; 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.