1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-03 11:33:37 +00:00

(Fset_match_data): Renamed from Fstore_match_data.

(syms_of_search): Corresponding change.
This commit is contained in:
Richard M. Stallman 1998-03-14 04:57:20 +00:00
parent 37b884685d
commit 3f1c005b56

View File

@ -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);
}