diff options
| author | Paul Eggert | 2012-08-17 10:08:30 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-17 10:08:30 -0700 |
| commit | 34dabdb7701594b83a5b35b034bba55855d256a5 (patch) | |
| tree | 860e8c22685321d157f71cd4a57c9c1162e69d54 /src/search.c | |
| parent | c24eb18ab40c3b022ab3b7d9c2aa26a37923340f (diff) | |
| download | emacs-34dabdb7701594b83a5b35b034bba55855d256a5.tar.gz emacs-34dabdb7701594b83a5b35b034bba55855d256a5.zip | |
* lisp.h (set_char_table_extras): Rename from char_table_set_extras.
(set_char_table_contents): Rename from char_table_set_contents.
(set_sub_char_table_contents): Rename from sub_char_table_sub_contents.
All uses changed. See the end of
<http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/search.c b/src/search.c index 4bf4d11c33a..0b4f635066c 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -278,7 +278,7 @@ looking_at_1 (Lisp_Object string, int posix) | |||
| 278 | save_search_regs (); | 278 | save_search_regs (); |
| 279 | 279 | ||
| 280 | /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ | 280 | /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ |
| 281 | char_table_set_extras (BVAR (current_buffer, case_canon_table), 2, | 281 | set_char_table_extras (BVAR (current_buffer, case_canon_table), 2, |
| 282 | BVAR (current_buffer, case_eqv_table)); | 282 | BVAR (current_buffer, case_eqv_table)); |
| 283 | 283 | ||
| 284 | CHECK_STRING (string); | 284 | CHECK_STRING (string); |
| @@ -393,7 +393,7 @@ string_match_1 (Lisp_Object regexp, Lisp_Object string, Lisp_Object start, int p | |||
| 393 | } | 393 | } |
| 394 | 394 | ||
| 395 | /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ | 395 | /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ |
| 396 | char_table_set_extras (BVAR (current_buffer, case_canon_table), 2, | 396 | set_char_table_extras (BVAR (current_buffer, case_canon_table), 2, |
| 397 | BVAR (current_buffer, case_eqv_table)); | 397 | BVAR (current_buffer, case_eqv_table)); |
| 398 | 398 | ||
| 399 | bufp = compile_pattern (regexp, | 399 | bufp = compile_pattern (regexp, |
| @@ -990,7 +990,7 @@ search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror, | |||
| 990 | } | 990 | } |
| 991 | 991 | ||
| 992 | /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ | 992 | /* This is so set_image_of_range_1 in regex.c can find the EQV table. */ |
| 993 | char_table_set_extras (BVAR (current_buffer, case_canon_table), 2, | 993 | set_char_table_extras (BVAR (current_buffer, case_canon_table), 2, |
| 994 | BVAR (current_buffer, case_eqv_table)); | 994 | BVAR (current_buffer, case_eqv_table)); |
| 995 | 995 | ||
| 996 | np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE, | 996 | np = search_buffer (string, PT, PT_BYTE, lim, lim_byte, n, RE, |