diff lisp/subr.el @ 15983:9a41bae14122

(save-match-data): Fix typo in previous change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 30 Aug 1996 03:05:22 +0000
parents daebc0d7f610
children bbddbc86b82b
line wrap: on
line diff
--- a/lisp/subr.el	Fri Aug 30 02:57:30 1996 +0000
+++ b/lisp/subr.el	Fri Aug 30 03:05:22 1996 +0000
@@ -748,7 +748,7 @@
 ;; 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-internal '(match-data)))
+  `(let ((save-match-data-internal (match-data)))
        (unwind-protect
 	   (progn ,@body)
 	 (store-match-data save-match-data-internal))))