]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_search): staticpro
authorDavid Kastrup <dak@gnu.org>
Thu, 15 Jul 2004 03:01:08 +0000 (03:01 +0000)
committerDavid Kastrup <dak@gnu.org>
Thu, 15 Jul 2004 03:01:08 +0000 (03:01 +0000)
`saved_last_thing_searched'.  Apparently fixes an abort condition.

src/ChangeLog
src/search.c

index dbb10e305a53848628e481079e4f43432308f7c5..e8eb8caeda263630200d9e5179e4b93bac20a2cc 100644 (file)
@@ -1,3 +1,8 @@
+2004-07-15  David Kastrup  <dak@gnu.org>
+
+       * search.c (syms_of_search): staticpro
+       `saved_last_thing_searched'.  Apparently fixes an abort condition.
+
 2004-07-14  Luc Teirlinck  <teirllm@auburn.edu>
 
        * fileio.c (Fvisited_file_modtime): Return a list of two integers,
index 169baf05d55827f634f5fc88aa7b725650e48c2e..0375f353dd2064d6e3099abc3a38b41fb6bd6f1b 100644 (file)
@@ -2974,6 +2974,9 @@ syms_of_search ()
   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);