diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2014-09-16 12:20:08 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2014-09-16 12:20:08 +0400 |
commit | b98b1a831bcfc89f038cbb8048c6969d8c73ab28 (patch) | |
tree | aaefabe0ced95ba3b34e59ed78d452d4036d99e5 /src/data.c | |
parent | 3a41eb66c104adbbc9040b817eee76a5aedd5d16 (diff) | |
download | emacs-b98b1a831bcfc89f038cbb8048c6969d8c73ab28.tar.gz |
If USE_LOCAL_ALLOCATORS, allocate even more Lisp objects on stack.
* charset.c (load_charset_map_from_file): Use scoped_list2
and build_local_string.
* buffer.c (Fother_buffer, other_buffer_safely, init_buffer):
* emacs.c (init_cmdargs, decode_env_path):
* fileio.c (Fexpand_file_name):
* fns.c (maybe_resize_hash_table) [ENABLE_CHECKING]:
* frame.c (x_get_arg):
* keyboard.c (safe_run_hooks_error):
* lread.c (load_warn_old_style_backquotes):
* xdisp.c (Fcurrent_bidi_paragraph_direction):
* xfns.c (x_default_scroll_bar_color_parameter, select_visual):
* xselect.c (x_clipboard_manager_error_1)
(x_clipboard_manager_save_all):
* xterm.c (x_term_init): Use build_local_string.
Diffstat (limited to 'src/data.c')
-rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 2d6d4c7c22b..414da4cf6f7 100644 --- a/src/data.c +++ b/src/data.c @@ -983,7 +983,7 @@ wrong_choice (Lisp_Object choice, Lisp_Object wrong) USE_SAFE_ALLOCA; SAFE_ALLOCA_LISP (args, len * 2 + 1); - args[i++] = build_string ("One of "); + args[i++] = build_local_string ("One of "); for (obj = choice; !NILP (obj); obj = XCDR (obj)) { |