diff options
| author | Paul Eggert | 2012-08-21 16:39:56 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-21 16:39:56 -0700 |
| commit | fce31d69dc4d6ff8810d499deebe568437fbf38b (patch) | |
| tree | 4deb5628e430c3f756d235cdbb87244680636173 /src/ChangeLog | |
| parent | d0d2d26fba3df1121108fcf80e4a26549d7736a3 (diff) | |
| download | emacs-fce31d69dc4d6ff8810d499deebe568437fbf38b.tar.gz emacs-fce31d69dc4d6ff8810d499deebe568437fbf38b.zip | |
* alloc.c: Use bool for booleans.
(gc_in_progress, abort_on_gc)
(setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
(dont_register_blocks) [GC_MALLOC_CHECK]:
(suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
(check_string_bytes, make_specified_string, memory_full)
(live_string_p, live_cons_p, live_symbol_p, live_float_p)
(live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
(mark_stack, valid_pointer_p, make_pure_string)
(Fgarbage_collect, survives_gc_p, gc_sweep):
Use bool for booleans, instead of int.
(test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
Remove unused local.
* alloc.c (PURE_POINTER_P):
* lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
* editfns.c (Fformat):
* fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
(Fdo_auto_save):
* fns.c (sweep_weak_table):
* lisp.h (suppress_checking, push_message, survives_gc_p)
(make_pure_string, gc_in_progress, abort_on_gc):
* lread.c (readchar, read1):
* print.c (Fprin1_to_string):
* xdisp.c (push_message):
Use bool for booleans affected directly or indirectly by
alloc.c's changes.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3e7b64becb1..27e430d7d0d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,32 @@ | |||
| 1 | 2012-08-21 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-08-21 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * alloc.c: Use bool for booleans. | ||
| 4 | (gc_in_progress, abort_on_gc) | ||
| 5 | (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]: | ||
| 6 | (dont_register_blocks) [GC_MALLOC_CHECK]: | ||
| 7 | (suppress_checking) [ENABLE_CHECKING]: Now bool, not int. | ||
| 8 | (check_string_bytes, make_specified_string, memory_full) | ||
| 9 | (live_string_p, live_cons_p, live_symbol_p, live_float_p) | ||
| 10 | (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object) | ||
| 11 | (mark_stack, valid_pointer_p, make_pure_string) | ||
| 12 | (Fgarbage_collect, survives_gc_p, gc_sweep): | ||
| 13 | Use bool for booleans, instead of int. | ||
| 14 | (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]: | ||
| 15 | Remove unused local. | ||
| 16 | * alloc.c (PURE_POINTER_P): | ||
| 17 | * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean. | ||
| 18 | * editfns.c (Fformat): | ||
| 19 | * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name) | ||
| 20 | (Fdo_auto_save): | ||
| 21 | * fns.c (sweep_weak_table): | ||
| 22 | * lisp.h (suppress_checking, push_message, survives_gc_p) | ||
| 23 | (make_pure_string, gc_in_progress, abort_on_gc): | ||
| 24 | * lread.c (readchar, read1): | ||
| 25 | * print.c (Fprin1_to_string): | ||
| 26 | * xdisp.c (push_message): | ||
| 27 | Use bool for booleans affected directly or indirectly by | ||
| 28 | alloc.c's changes. | ||
| 29 | |||
| 3 | Make recently-introduced setters macros. | 30 | Make recently-introduced setters macros. |
| 4 | * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii) | 31 | * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii) |
| 5 | (set_fontset_base, set_fontset_frame, set_fontset_nofont_face) | 32 | (set_fontset_base, set_fontset_frame, set_fontset_nofont_face) |