From: David Kastrup Date: Thu, 15 Jul 2004 03:01:08 +0000 (+0000) Subject: (syms_of_search): staticpro X-Git-Tag: ttn-vms-21-2-B4~5480 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f6af2545f26f1f0acb25abf72262fc113056ada;p=emacs.git (syms_of_search): staticpro `saved_last_thing_searched'. Apparently fixes an abort condition. --- diff --git a/src/ChangeLog b/src/ChangeLog index dbb10e305a5..e8eb8caeda2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2004-07-15 David Kastrup + + * search.c (syms_of_search): staticpro + `saved_last_thing_searched'. Apparently fixes an abort condition. + 2004-07-14 Luc Teirlinck * fileio.c (Fvisited_file_modtime): Return a list of two integers, diff --git a/src/search.c b/src/search.c index 169baf05d55..0375f353dd2 100644 --- a/src/search.c +++ b/src/search.c @@ -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);