Mercurial > emacs
diff src/search.c @ 56429:65eb0cb0f21f
(syms_of_search): staticpro
`saved_last_thing_searched'. Apparently fixes an abort condition.
| author | David Kastrup <dak@gnu.org> |
|---|---|
| date | Thu, 15 Jul 2004 03:01:08 +0000 |
| parents | aaa6a4ecea38 |
| children | d226830a814e 97905c4f1a42 |
line wrap: on
line diff
--- a/src/search.c Thu Jul 15 00:38:38 2004 +0000 +++ b/src/search.c Thu Jul 15 03:01:08 2004 +0000 @@ -2974,6 +2974,9 @@ last_thing_searched = Qnil; staticpro (&last_thing_searched); + saved_last_thing_searched = Qnil; + staticpro (&saved_last_thing_searched); + defsubr (&Slooking_at); defsubr (&Sposix_looking_at); defsubr (&Sstring_match);
