diff options
| author | Dmitry Antipov | 2012-07-15 15:17:09 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-07-15 15:17:09 +0400 |
| commit | fff62aa9aea4f6c2aadcef4cdc203cdf60ba224c (patch) | |
| tree | 7298cc895d53a62ed0c3d0cf7bfd8910980d0128 /src/ChangeLog | |
| parent | 9730daca4425e2014ff43a3b1b205b598e63c72a (diff) | |
| download | emacs-fff62aa9aea4f6c2aadcef4cdc203cdf60ba224c.tar.gz emacs-fff62aa9aea4f6c2aadcef4cdc203cdf60ba224c.zip | |
Cleanup basic allocation variables and functions.
* alloc.c (ignore_warnings, init_intervals, init_float)
(init_cons, init_symbol, init_marker): Remove.
(interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
(float_block_index): Initialize to FLOAT_BLOCK_SIZE.
(cons_block_index): Initialize to CONS_BLOCK_SIZE.
(symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
(marker_block_index): Initialize to MARKER_BLOCK_SIZE.
(staticidx, init_alloc_once, init_strings, free_ablock):
Remove redundant initialization.
* fns.c (init_weak_hash_tables): Remove.
* lisp.h (init_weak_hash_tables): Remove prototype.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2a6f2ebb42b..f094e5d6f75 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,20 @@ | |||
| 1 | 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru> | 1 | 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 2 | ||
| 3 | Cleanup basic allocation variables and functions. | ||
| 4 | * alloc.c (ignore_warnings, init_intervals, init_float) | ||
| 5 | (init_cons, init_symbol, init_marker): Remove. | ||
| 6 | (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE. | ||
| 7 | (float_block_index): Initialize to FLOAT_BLOCK_SIZE. | ||
| 8 | (cons_block_index): Initialize to CONS_BLOCK_SIZE. | ||
| 9 | (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE. | ||
| 10 | (marker_block_index): Initialize to MARKER_BLOCK_SIZE. | ||
| 11 | (staticidx, init_alloc_once, init_strings, free_ablock): | ||
| 12 | Remove redundant initialization. | ||
| 13 | * fns.c (init_weak_hash_tables): Remove. | ||
| 14 | * lisp.h (init_weak_hash_tables): Remove prototype. | ||
| 15 | |||
| 16 | 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 17 | |||
| 3 | Use zero_vector where appropriate. | 18 | Use zero_vector where appropriate. |
| 4 | * alloc.c (zero_vector): Define as Lisp_Object. Adjust users | 19 | * alloc.c (zero_vector): Define as Lisp_Object. Adjust users |
| 5 | accordingly. | 20 | accordingly. |