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 | 9fc0eb951065e13f82e55148444c734612adf3d0 (patch) | |
| tree | eb1f85950b0f4818706132a7c8de222aad21ab48 /lisp | |
| parent | 9f58e89e86bd5535490e5365c18d2f8283578db9 (diff) | |
| download | emacs-9fc0eb951065e13f82e55148444c734612adf3d0.tar.gz | |
(save-match-data): Fix typo in previous change.
Diffstat (limited to 'lisp')
| -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)))) |
