From 9fc0eb951065e13f82e55148444c734612adf3d0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 30 Aug 1996 03:05:22 +0000 Subject: [PATCH] (save-match-data): Fix typo in previous change. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/subr.el b/lisp/subr.el index b2ce0d73125..fb4901711cc 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -748,7 +748,7 @@ 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-internal '(match-data))) + `(let ((save-match-data-internal (match-data))) (unwind-protect (progn ,@body) (store-match-data save-match-data-internal)))) -- 2.39.2