aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-03-14 04:57:20 +0000
committerRichard M. Stallman1998-03-14 04:57:20 +0000
commit3f1c005b563a770e1899d1a7aa69ea44d8221129 (patch)
tree89453492bb3ab7e1e1eff0082d03a9f3adc3b16f /src
parent37b884685d8067c89469c2964982099701833317 (diff)
downloademacs-3f1c005b563a770e1899d1a7aa69ea44d8221129.tar.gz
emacs-3f1c005b563a770e1899d1a7aa69ea44d8221129.zip
(Fset_match_data): Renamed from Fstore_match_data.
(syms_of_search): Corresponding change.
Diffstat (limited to 'src')
-rw-r--r--src/search.c4
1 files changed, 2 insertions, 2 deletions
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.")
2557} 2557}
2558 2558
2559 2559
2560DEFUN ("store-match-data", Fstore_match_data, Sstore_match_data, 1, 1, 0, 2560DEFUN ("set-match-data", Fset_match_data, Sset_match_data, 1, 1, 0,
2561 "Set internal data on last search match from elements of LIST.\n\ 2561 "Set internal data on last search match from elements of LIST.\n\
2562LIST should have been created by calling `match-data' previously.") 2562LIST should have been created by calling `match-data' previously.")
2563 (list) 2563 (list)
@@ -2765,6 +2765,6 @@ syms_of_search ()
2765 defsubr (&Smatch_beginning); 2765 defsubr (&Smatch_beginning);
2766 defsubr (&Smatch_end); 2766 defsubr (&Smatch_end);
2767 defsubr (&Smatch_data); 2767 defsubr (&Smatch_data);
2768 defsubr (&Sstore_match_data); 2768 defsubr (&Sset_match_data);
2769 defsubr (&Sregexp_quote); 2769 defsubr (&Sregexp_quote);
2770} 2770}