aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Kastrup2004-07-15 03:01:08 +0000
committerDavid Kastrup2004-07-15 03:01:08 +0000
commit0f6af2545f26f1f0acb25abf72262fc113056ada (patch)
tree808c4afef0272c1a67df36096f9f234eb1baca4e /src
parentcbbfedb29d34e44c6c20c14761cb85ffe79e91c8 (diff)
downloademacs-0f6af2545f26f1f0acb25abf72262fc113056ada.tar.gz
emacs-0f6af2545f26f1f0acb25abf72262fc113056ada.zip
(syms_of_search): staticpro
`saved_last_thing_searched'. Apparently fixes an abort condition.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/search.c3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index dbb10e305a5..e8eb8caeda2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12004-07-15 David Kastrup <dak@gnu.org>
2
3 * search.c (syms_of_search): staticpro
4 `saved_last_thing_searched'. Apparently fixes an abort condition.
5
12004-07-14 Luc Teirlinck <teirllm@auburn.edu> 62004-07-14 Luc Teirlinck <teirllm@auburn.edu>
2 7
3 * fileio.c (Fvisited_file_modtime): Return a list of two integers, 8 * 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 ()
2974 last_thing_searched = Qnil; 2974 last_thing_searched = Qnil;
2975 staticpro (&last_thing_searched); 2975 staticpro (&last_thing_searched);
2976 2976
2977 saved_last_thing_searched = Qnil;
2978 staticpro (&saved_last_thing_searched);
2979
2977 defsubr (&Slooking_at); 2980 defsubr (&Slooking_at);
2978 defsubr (&Sposix_looking_at); 2981 defsubr (&Sposix_looking_at);
2979 defsubr (&Sstring_match); 2982 defsubr (&Sstring_match);