diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5dc1d912caf..185a6c4bd40 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,37 @@ | |||
| 1 | 2014-09-15 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | If USE_LOCAL_ALLOCATORS, allocate some Lisp objects on stack. | ||
| 4 | * lisp.h (local_cons, local_list1, local_list2, local_list3) | ||
| 5 | [USE_LOCAL_ALLOCATORS]: New macros. | ||
| 6 | [!USE_LOCAL_ALLOCATORS]: Fall back to regular functions. | ||
| 7 | (build_local_string): Avoid argument name expansion clash with | ||
| 8 | make_local_string. | ||
| 9 | * alloc.c (toplevel) | ||
| 10 | [USE_LOCAL_ALLOCATORS && GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS]: | ||
| 11 | Preprocessor guard to avoid impossible configuration. | ||
| 12 | * charset.c (Ffind_charset_region, Ffind_charset_string): | ||
| 13 | Use make_local_vector. | ||
| 14 | * lread.c (read1, substitute_object_recurse): Use scoped_cons. | ||
| 15 | * textprop.c (Fput_text_property, Fadd_face_text_property): | ||
| 16 | Use scoped_list2. | ||
| 17 | (copy_text_properties): Use local_cons and local_list3. | ||
| 18 | * chartab.c (uniprop_table): | ||
| 19 | * data.c (wrong_choice, wrong_range): | ||
| 20 | * doc.c (get_doc_string): | ||
| 21 | * editfns.c (format2): | ||
| 22 | * fileio.c (Fexpand_file_name, auto_save_error): | ||
| 23 | * fns.c (Fyes_or_no_p): | ||
| 24 | * font.c (font_parse_xlfd, font_parse_family_registry, font_add_log): | ||
| 25 | * fontset.c (Fset_fontset_font): | ||
| 26 | * keyboard.c (echo_add_key, echo_dash, parse_menu_item) | ||
| 27 | (read_char_minibuf_menu_prompt): | ||
| 28 | * keymap.c (silly_event_symbol_error, describe_vector): | ||
| 29 | * menu.c (single_menu_item): | ||
| 30 | * minibuf.c (Fread_buffer): | ||
| 31 | * process.c (status_message, Fformat_network_address) | ||
| 32 | (server_accept_connection): Use make_local_string and | ||
| 33 | build_local_string. Prefer compound literals where appropriate. | ||
| 34 | |||
| 1 | 2014-09-15 Daniel Colascione <dancol@dancol.org> | 35 | 2014-09-15 Daniel Colascione <dancol@dancol.org> |
| 2 | 36 | ||
| 3 | * fns.c (Fsort): Tweak sort docstring. | 37 | * fns.c (Fsort): Tweak sort docstring. |