summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-30 03:05:22 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-30 03:05:22 +0000
commit9fc0eb951065e13f82e55148444c734612adf3d0 (patch)
treeeb1f85950b0f4818706132a7c8de222aad21ab48
parent9f58e89e86bd5535490e5365c18d2f8283578db9 (diff)
downloademacs-9fc0eb951065e13f82e55148444c734612adf3d0.tar.gz
(save-match-data): Fix typo in previous change.
-rw-r--r--lisp/subr.el2
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))))