From: Richard M. Stallman Date: Sat, 14 Mar 1998 04:57:20 +0000 (+0000) Subject: (Fset_match_data): Renamed from Fstore_match_data. X-Git-Tag: emacs-20.3~1903 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f1c005b563a770e1899d1a7aa69ea44d8221129;p=emacs.git (Fset_match_data): Renamed from Fstore_match_data. (syms_of_search): Corresponding change. --- diff --git a/src/search.c b/src/search.c index b6a1ba5b6f8..f23c81bb829 100644 --- a/src/search.c +++ b/src/search.c @@ -2557,7 +2557,7 @@ to hold all the values, and if INTEGERS is non-nil, no consing is done.") } -DEFUN ("store-match-data", Fstore_match_data, Sstore_match_data, 1, 1, 0, +DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 1, 0, "Set internal data on last search match from elements of LIST.\n\ LIST should have been created by calling `match-data' previously.") (list) @@ -2765,6 +2765,6 @@ syms_of_search () defsubr (&Smatch_beginning); defsubr (&Smatch_end); defsubr (&Smatch_data); - defsubr (&Sstore_match_data); + defsubr (&Sset_match_data); defsubr (&Sregexp_quote); }