aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2005-07-23 19:15:47 +0000
committerRichard M. Stallman2005-07-23 19:15:47 +0000
commitbf0bf758f61fafc601a365ffd36b78fd634ceb2e (patch)
tree6dcf068563a82d58a20c70f1cd18a9141680b4e0 /src
parent3414f2d82b82cd71dba20c11289204716127c16f (diff)
downloademacs-bf0bf758f61fafc601a365ffd36b78fd634ceb2e.tar.gz
emacs-bf0bf758f61fafc601a365ffd36b78fd634ceb2e.zip
(syms_of_insdel): staticpro combine_after_change_buffer.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog22
-rw-r--r--src/insdel.c1
2 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1a08ec8c81e..c5053161c83 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,25 @@
12005-07-23 Richard M. Stallman <rms@gnu.org>
2
3 * insdel.c (syms_of_insdel): staticpro combine_after_change_buffer.
4
5 * bytecode.c (MAYBE_GC): Test gc_cons_threshold and
6 gc_relative_threshold, one by one.
7
8 * keyboard.c (read_char): Test gc_cons_threshold.
9 (syms_of_keyboard): staticpro Qecho_area_clear_hook.
10
11 * eval.c (Feval, Ffuncall): Test gc_cons_threshold and
12 gc_relative_threshold, one by one.
13
14 * alloc.c (gc_cons_threshold): Not static.
15 (gc_cons_combined_threshold): Var deleted.
16 (gc_relative_threshold): New variable.
17 (Fgarbage_collect, init_alloc_once): Compute gc_relative_threshold
18 instead of gc_cons_combined_threshold.
19
20 * lisp.h (gc_cons_threshold, gc_relative_threshold): Declared.
21 (gc_cons_combined_threshold): Declaration deleted.
22
12005-07-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 232005-07-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 24
3 * mac.c: Don't include stdlib.h or string.h. 25 * mac.c: Don't include stdlib.h or string.h.
diff --git a/src/insdel.c b/src/insdel.c
index 4760342c56b..49ff949ca4a 100644
--- a/src/insdel.c
+++ b/src/insdel.c
@@ -2393,6 +2393,7 @@ void
2393syms_of_insdel () 2393syms_of_insdel ()
2394{ 2394{
2395 staticpro (&combine_after_change_list); 2395 staticpro (&combine_after_change_list);
2396 staticpro (&combine_after_change_buffer);
2396 combine_after_change_list = Qnil; 2397 combine_after_change_list = Qnil;
2397 combine_after_change_buffer = Qnil; 2398 combine_after_change_buffer = Qnil;
2398 2399