diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:52:14 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-03-14 04:52:14 +0000 |
commit | f6b4e0f445f7ee58b21e310e125c98b08eac404c (patch) | |
tree | 26753d87296dd9b4955bc4ea26a56e306a2212cb /lisp/mail/rfc822.el | |
parent | f53993353784ba6ac32469c18ac9d59981736773 (diff) | |
download | emacs-f6b4e0f445f7ee58b21e310e125c98b08eac404c.tar.gz |
(rfc822-looking-at): store-match-data => set-match-data.
Diffstat (limited to 'lisp/mail/rfc822.el')
-rw-r--r-- | lisp/mail/rfc822.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rfc822.el b/lisp/mail/rfc822.el index 39f02b929ac..633a2e2417e 100644 --- a/lisp/mail/rfc822.el +++ b/lisp/mail/rfc822.el @@ -99,7 +99,7 @@ t)))) (let ((tem (match-data))) (rfc822-nuke-whitespace leave-space) - (store-match-data tem) + (set-match-data tem) t))) (defun rfc822-snarf-word () |