diff options
| author | Richard M. Stallman | 1998-03-14 04:57:20 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-03-14 04:57:20 +0000 |
| commit | 3f1c005b563a770e1899d1a7aa69ea44d8221129 (patch) | |
| tree | 89453492bb3ab7e1e1eff0082d03a9f3adc3b16f /src | |
| parent | 37b884685d8067c89469c2964982099701833317 (diff) | |
| download | emacs-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.c | 4 |
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 | ||
| 2560 | DEFUN ("store-match-data", Fstore_match_data, Sstore_match_data, 1, 1, 0, | 2560 | DEFUN ("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\ |
| 2562 | LIST should have been created by calling `match-data' previously.") | 2562 | LIST 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 | } |