diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-08-30 03:05:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-08-30 03:05:22 +0000 |
commit | 31934170f91229947512f8045ed1cc2728dd9d0d (patch) | |
tree | e4ea0cf6b274d1d4c707686d35a4a89eab2a02c2 /lisp/subr.el | |
parent | 7b478aa72f4e0f94d737b95f732262ce4e9c39f3 (diff) | |
download | emacs-31934170f91229947512f8045ed1cc2728dd9d0d.tar.gz |
(save-match-data): Fix typo in previous change.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |