diff options
Diffstat (limited to 'src/search.c')
| -rw-r--r-- | src/search.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/search.c b/src/search.c index 9d6bd074e1b..c8e0443500e 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -3385,19 +3385,19 @@ syms_of_search (void) | |||
| 3385 | DEFSYM (Qinvalid_regexp, "invalid-regexp"); | 3385 | DEFSYM (Qinvalid_regexp, "invalid-regexp"); |
| 3386 | 3386 | ||
| 3387 | Fput (Qsearch_failed, Qerror_conditions, | 3387 | Fput (Qsearch_failed, Qerror_conditions, |
| 3388 | pure_list (Qsearch_failed, Qerror)); | 3388 | list (Qsearch_failed, Qerror)); |
| 3389 | Fput (Qsearch_failed, Qerror_message, | 3389 | Fput (Qsearch_failed, Qerror_message, |
| 3390 | build_pure_c_string ("Search failed")); | 3390 | build_string ("Search failed")); |
| 3391 | 3391 | ||
| 3392 | Fput (Quser_search_failed, Qerror_conditions, | 3392 | Fput (Quser_search_failed, Qerror_conditions, |
| 3393 | pure_list (Quser_search_failed, Quser_error, Qsearch_failed, Qerror)); | 3393 | list (Quser_search_failed, Quser_error, Qsearch_failed, Qerror)); |
| 3394 | Fput (Quser_search_failed, Qerror_message, | 3394 | Fput (Quser_search_failed, Qerror_message, |
| 3395 | build_pure_c_string ("Search failed")); | 3395 | build_string ("Search failed")); |
| 3396 | 3396 | ||
| 3397 | Fput (Qinvalid_regexp, Qerror_conditions, | 3397 | Fput (Qinvalid_regexp, Qerror_conditions, |
| 3398 | pure_list (Qinvalid_regexp, Qerror)); | 3398 | list (Qinvalid_regexp, Qerror)); |
| 3399 | Fput (Qinvalid_regexp, Qerror_message, | 3399 | Fput (Qinvalid_regexp, Qerror_message, |
| 3400 | build_pure_c_string ("Invalid regexp")); | 3400 | build_string ("Invalid regexp")); |
| 3401 | 3401 | ||
| 3402 | re_match_object = Qnil; | 3402 | re_match_object = Qnil; |
| 3403 | staticpro (&re_match_object); | 3403 | staticpro (&re_match_object); |