Mercurial > emacs
changeset 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 | 6654a42f95e9 |
children | 111178229e50 |
files | lisp/subr.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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))))