From: Richard M. Stallman Date: Fri, 30 Aug 1996 03:05:22 +0000 (+0000) Subject: (save-match-data): Fix typo in previous change. X-Git-Tag: emacs-20.1~3961 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9fc0eb951065e13f82e55148444c734612adf3d0;p=emacs.git (save-match-data): Fix typo in previous change. --- 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))))